diff --git a/hyperledger_fabric/latest/network_generator.py b/hyperledger_fabric/latest/network_generator/network_generator.py similarity index 99% rename from hyperledger_fabric/latest/network_generator.py rename to hyperledger_fabric/latest/network_generator/network_generator.py index 20cfaf33..f2416b2a 100644 --- a/hyperledger_fabric/latest/network_generator.py +++ b/hyperledger_fabric/latest/network_generator/network_generator.py @@ -33,6 +33,7 @@ PEER_TLS_PATH = '/etc/hyperledger/fabric/tls' yaml = YAML() +yaml.explicit_start = True def list_to_dict(l, sep=':'): diff --git a/hyperledger_fabric/v1.0.2/Makefile b/hyperledger_fabric/v1.0.2/Makefile index 4a7bb23c..c4d3912f 100644 --- a/hyperledger_fabric/v1.0.2/Makefile +++ b/hyperledger_fabric/v1.0.2/Makefile @@ -47,22 +47,22 @@ ready: # create/join channel, install/instantiate cc make test_channel_create make test_channel_join - #make update_anchors + make update_anchors make test_cc_install - #make test_cc_instantiate - #make test_cc_invoke_query + make test_cc_instantiate + make test_cc_invoke_query - #make test_lscc # test lscc operations - #make test_qscc # test qscc operations + make test_lscc # test lscc operations + make test_qscc # test qscc operations - #make test_fetch_blocks # fetch block files - #make test_config_update - #make test_channel_update + make test_fetch_blocks # fetch block files + make test_config_update + #make test_channel_update # not work with this version - #make logs_save - #make test_fetch_blocks # fetch block files again - #make test_configtxlator + make logs_save + make test_fetch_blocks # fetch block files again + make test_configtxlator @echo "Now the fabric network is ready to play" @echo "run 'make cli' to enter into the fabric-cli container." diff --git a/hyperledger_fabric/v1.0.2/base-solo.yaml b/hyperledger_fabric/v1.0.2/base-solo.yaml index b3a10d48..29b71521 100644 --- a/hyperledger_fabric/v1.0.2/base-solo.yaml +++ b/hyperledger_fabric/v1.0.2/base-solo.yaml @@ -142,7 +142,7 @@ services: - CORE_PEER_ADDRESS=peer1.org2.example.com:7051 - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer1.org2.example.com:7051 - CORE_PEER_CHAINCODELISTENADDRESS=peer1.org2.example.com:7052 - - CORE_PEER_GOSSIP_BOOTSTRAP=peer1.org2.example.com:7051 + - CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org2.example.com:7051 - CORE_PEER_LOCALMSPID=Org2MSP - CORE_PEER_TLS_ENABLED=true volumes: diff --git a/hyperledger_fabric/v1.0.2/examples/chaincode/go/chaincode_example02/chaincode_example02.go b/hyperledger_fabric/v1.0.2/examples/chaincode/go/chaincode_example02/chaincode_example02.go index ec4fb0b1..eb6f430b 100644 --- a/hyperledger_fabric/v1.0.2/examples/chaincode/go/chaincode_example02/chaincode_example02.go +++ b/hyperledger_fabric/v1.0.2/examples/chaincode/go/chaincode_example02/chaincode_example02.go @@ -22,7 +22,6 @@ import ( "github.com/hyperledger/fabric/core/chaincode/shim" pb "github.com/hyperledger/fabric/protos/peer" - "github.com/pquerna/ffjson/ffjson" ) // SimpleChaincode example simple Chaincode implementation @@ -64,11 +63,6 @@ func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface) pb.Response { return shim.Error(err.Error()) } - item := map[string]string {"hi":"morning"} - - buf, err := ffjson.Marshal(&item) - fmt.Printf("ffjson result=%v\n", buf) - return shim.Success(nil) } diff --git a/hyperledger_fabric/v1.0.2/scripts/func.sh b/hyperledger_fabric/v1.0.2/scripts/func.sh index e8dde995..906b8f4a 100644 --- a/hyperledger_fabric/v1.0.2/scripts/func.sh +++ b/hyperledger_fabric/v1.0.2/scripts/func.sh @@ -414,7 +414,7 @@ chaincodeQuery () { setEnvs $org $peer # we either get a successful response, or reach TIMEOUT while [ "$(($(date +%s)-starttime))" -lt "$TIMEOUT" -a $rc -ne 0 ]; do - echo_b "Attempting to Query peer$peer ...$(($(date +%s)-starttime)) secs" + echo_b "Attempting to Query peer${peer}.org${org} ...$(($(date +%s)-starttime)) secs" peer chaincode query \ -C "${channel}" \ -n "${name}" \ diff --git a/hyperledger_fabric/v1.0.2/scripts/test_cc_install.sh b/hyperledger_fabric/v1.0.2/scripts/test_cc_install.sh index bd3a1d6b..3db969d4 100644 --- a/hyperledger_fabric/v1.0.2/scripts/test_cc_install.sh +++ b/hyperledger_fabric/v1.0.2/scripts/test_cc_install.sh @@ -8,10 +8,12 @@ elif [ -f scripts/func.sh ]; then fi ## Install chaincode on all peers -echo_b "Installing chaincode on all 4 peers..." -chaincodeInstall 1 0 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_PATH} -chaincodeInstall 1 1 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_PATH} -chaincodeInstall 2 0 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_PATH} -chaincodeInstall 2 1 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_PATH} +CC_NAME=${CC_02_NAME} +CC_PATH=${CC_02_PATH} +echo_b "Installing chaincode ${CC_NAME} on all 4 peers..." +chaincodeInstall 1 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} +chaincodeInstall 1 1 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} +chaincodeInstall 2 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} +chaincodeInstall 2 1 ${CC_NAME} ${CC_INIT_VERSION} ${CC_PATH} echo_g "=== Install chaincode done ===" \ No newline at end of file diff --git a/hyperledger_fabric/v1.0.2/scripts/test_cc_instantiate.sh b/hyperledger_fabric/v1.0.2/scripts/test_cc_instantiate.sh index 9497b69a..8f1edf19 100644 --- a/hyperledger_fabric/v1.0.2/scripts/test_cc_instantiate.sh +++ b/hyperledger_fabric/v1.0.2/scripts/test_cc_instantiate.sh @@ -7,10 +7,11 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi -# Instantiate chaincode on all peers -# Instantiate can only be executed once on any node +# Instantiate chaincode in the channel, executed once on any node is enough +CC_NAME=${CC_02_NAME} +CC_INIT_ARGS=${CC_02_INIT_ARGS} echo_b "Instantiating chaincode on channel ${APP_CHANNEL} (once for each channel is enough, we make it concurrent here)..." -chaincodeInstantiate "${APP_CHANNEL}" 1 0 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_INIT_ARGS} -chaincodeInstantiate "${APP_CHANNEL}" 2 0 ${CC_02_NAME} ${CC_INIT_VERSION} ${CC_02_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/v1.0.2/scripts/test_cc_invoke_query.sh b/hyperledger_fabric/v1.0.2/scripts/test_cc_invoke_query.sh index 6da08f35..79d4f883 100644 --- a/hyperledger_fabric/v1.0.2/scripts/test_cc_invoke_query.sh +++ b/hyperledger_fabric/v1.0.2/scripts/test_cc_invoke_query.sh @@ -7,26 +7,29 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi +CC_NAME=${CC_02_NAME} +CC_INVOKE_ARGS=${CC_02_INVOKE_ARGS} +CC_QUERY_ARGS=${CC_02_QUERY_ARGS} #Query on chaincode on Peer0/Org1 -echo_b "Querying chaincode on peer org2/peer0..." -chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 100 +echo_b "Querying chaincode ${CC_NAME} on peer org2/peer0..." +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 ${APP_CHANNEL} 1 0 ${CC_02_NAME} ${CC_02_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 ${APP_CHANNEL} 1 1 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 90 -chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_02_NAME} ${CC_02_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 ${APP_CHANNEL} 2 1 ${CC_02_NAME} ${CC_02_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 ${APP_CHANNEL} 1 0 ${CC_02_NAME} ${CC_02_QUERY_ARGS} 80 -chaincodeQuery ${APP_CHANNEL} 2 0 ${CC_02_NAME} ${CC_02_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/v1.0.2/scripts/test_cc_upgrade.sh b/hyperledger_fabric/v1.0.2/scripts/test_cc_upgrade.sh index 4b04203d..b6099b68 100644 --- a/hyperledger_fabric/v1.0.2/scripts/test_cc_upgrade.sh +++ b/hyperledger_fabric/v1.0.2/scripts/test_cc_upgrade.sh @@ -7,18 +7,21 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi +CC_NAME=${CC_02_NAME} +CC_PATH=${CC_02_PATH} +CC_UPGRADE_ARGS=${CC_02_UPGRADE_ARGS} #Upgrade to new version -echo_b "Upgrade chaincode to new version..." -chaincodeInstall 1 0 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_PATH}" -chaincodeInstall 1 1 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_PATH}" -chaincodeInstall 2 0 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_PATH}" -chaincodeInstall 2 1 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_PATH}" +echo_b "Upgrade chaincode ${CC_NAME} to new version..." +chaincodeInstall 1 0 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}" +chaincodeInstall 1 1 "${CC_NAME}" "${CC_UPGRADE_VERSION}" "${CC_PATH}" +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 ${APP_CHANNEL} 1 0 "${CC_02_NAME}" "${CC_UPGRADE_VERSION}" "${CC_02_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 ${APP_CHANNEL} 1 0 "${CC_02_NAME}" "${CC_02_QUERY_ARGS}" 100 -chaincodeQuery ${APP_CHANNEL} 2 1 "${CC_02_NAME}" "${CC_02_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/v1.0.2/scripts/test_lscc.sh b/hyperledger_fabric/v1.0.2/scripts/test_lscc.sh index e47fff42..ae8a6ee2 100644 --- a/hyperledger_fabric/v1.0.2/scripts/test_lscc.sh +++ b/hyperledger_fabric/v1.0.2/scripts/test_lscc.sh @@ -19,14 +19,15 @@ peer=0 #--tls "true" \ #--cafile ${ORDERER_TLS_CA} \ +CC_NAME=${CC_02_NAME} echo_b "LSCC Get id" -chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getid","'${APP_CHANNEL}'", "'${CC_NAME}'"]}' echo_b "LSCC Get cc ChaincodeDeploymentSpec" -chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getdepspec","'${APP_CHANNEL}'", "'${CC_NAME}'"]}' echo_b "LSCC Get cc bytes" -chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getccdata","'${APP_CHANNEL}'", "'${CC_NAME}'"]}' echo_b "LSCC Get all chaincodes installed on the peer" chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getinstalledchaincodes"]}' @@ -38,17 +39,17 @@ chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getchaincodes"]}' #peer chaincode query \ # -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +# -c '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ # -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +# -c '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ # -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_02_NAME'"]}' +# -c '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ # -C "${APP_CHANNEL}" \ diff --git a/hyperledger_fabric/v1.0.2/scripts/variables.sh b/hyperledger_fabric/v1.0.2/scripts/variables.sh index ad779343..66a40c1c 100644 --- a/hyperledger_fabric/v1.0.2/scripts/variables.sh +++ b/hyperledger_fabric/v1.0.2/scripts/variables.sh @@ -39,18 +39,25 @@ ORG1_PEER1_URL="peer1.org1.example.com:7051" ORG2_PEER0_URL="peer0.org2.example.com:7051" ORG2_PEER1_URL="peer1.org2.example.com:7051" -# Chaincode related -CC_02_NAME="exp02" -CC_02_PATH="examples/chaincode/go/chaincode_example02" -CC_02_PATH="examples/chaincode/go/fabcar2" CC_INIT_VERSION=1.0 CC_UPGRADE_VERSION=1.1 +# Chaincode exp02 related +CC_02_NAME="exp02" +CC_02_PATH="examples/chaincode/go/chaincode_example02" CC_02_INIT_ARGS='{"Args":["init","a","100","b","200"]}' CC_02_UPGRADE_ARGS='{"Args":["upgrade","a","100","b","200"]}' CC_02_INVOKE_ARGS='{"Args":["invoke","a","b","10"]}' CC_02_QUERY_ARGS='{"Args":["query","a"]}' +# Chaincode map related +CC_MAP_NAME="map" +CC_MAP_PATH="examples/chaincode/go/map" +CC_MAP_INIT_ARGS='{"Args":["init",""]}' +CC_MAP_UPGRADE_ARGS='{"Args":["upgrade",""]}' +CC_MAP_INVOKE_ARGS='{"Args":["invoke","put","key","value"]}' +CC_MAP_QUERY_ARGS='{"Args":["get","key"]}' + # TLS config CORE_PEER_TLS_ENABLED="true" diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_0.block index 0a51c7c8..6b254f93 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_0.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_0.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_1.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_1.block index 6ca94bfb..c085855d 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_1.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_1.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_2.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_2.block index 13cfd8b5..52f511c6 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_2.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_2.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_3.block index 12b3d247..ef3f5d4a 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_3.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_3.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_4.block index 2c4959fb..040a3975 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_4.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_4.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_5.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_5.block index 105a9b87..b0d66500 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_5.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_5.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_6.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_6.block index 2e4f3789..a7c5163b 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_6.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_6.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block index 13cfd8b5..52f511c6 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block.json b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block.json index 5eafe283..4881f7f0 100644 --- a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block.json +++ b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/businesschannel_config.block.json @@ -22,7 +22,8 @@ "principal": { "msp_identifier": "Org1MSP", "role": "ADMIN" - } + }, + "principal_classification": "ROLE" } ], "rule": { @@ -34,9 +35,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" }, "Readers": { "mod_policy": "Admins", @@ -46,8 +49,10 @@ "identities": [ { "principal": { - "msp_identifier": "Org1MSP" - } + "msp_identifier": "Org1MSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" } ], "rule": { @@ -59,9 +64,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" }, "Writers": { "mod_policy": "Admins", @@ -71,8 +78,10 @@ "identities": [ { "principal": { - "msp_identifier": "Org1MSP" - } + "msp_identifier": "Org1MSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" } ], "rule": { @@ -84,9 +93,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" } }, "values": { @@ -99,7 +110,8 @@ "port": 7051 } ] - } + }, + "version": "0" }, "MSP": { "mod_policy": "Admins", @@ -119,8 +131,10 @@ "tls_root_certs": [ "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTakNDQWZDZ0F3SUJBZ0lSQU8yOUR1OWlzeXhtTUVqZk9JTFpPRk13Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMFdoY05Namd3TVRBeE1UTXcKT1RVMFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCTnBOVEpROXJ0dE5hMk1lQlV1dnNEMDNNR0FpNUZWc1FUNW83R3ZLa0hPSEFQT3FYZC9VYVRpMAp5NXJhei9ZTjhYdXMzWEJ4ZFU2aklwbUhXM21ZVGdXalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJSzhSNkhxZHU0R28KR1Z0UEljRjdDdmovYVBWQnpSd3lIUm8vNGI4RWJMTmNNQW9HQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUQxT2NheQp0UjBMZ2pLakw1VXEvbkdDRzVETmVKWllJWXhZdWQrbnFaazZLd0lnQ2QybVZ6Wm9xZ0dYZ21jS0luV0pJdjl2CkhyNmdjVzI0ZTQ4M2lNbVBFQzA9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] - } - } + }, + "type": 0 + }, + "version": "0" } }, "version": "1" @@ -138,7 +152,8 @@ "principal": { "msp_identifier": "Org2MSP", "role": "ADMIN" - } + }, + "principal_classification": "ROLE" } ], "rule": { @@ -150,9 +165,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" }, "Readers": { "mod_policy": "Admins", @@ -162,8 +179,10 @@ "identities": [ { "principal": { - "msp_identifier": "Org2MSP" - } + "msp_identifier": "Org2MSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" } ], "rule": { @@ -175,9 +194,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" }, "Writers": { "mod_policy": "Admins", @@ -187,8 +208,10 @@ "identities": [ { "principal": { - "msp_identifier": "Org2MSP" - } + "msp_identifier": "Org2MSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" } ], "rule": { @@ -200,9 +223,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" } }, "values": { @@ -215,7 +240,8 @@ "port": 7051 } ] - } + }, + "version": "0" }, "MSP": { "mod_policy": "Admins", @@ -235,8 +261,10 @@ "tls_root_certs": [ "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUx5aWozWTZtNFl0alNtTm9xaUNFend3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMFdoY05Namd3TVRBeE1UTXcKT1RVMFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSFZmQVFLSXFGUzNNbTlzNjRDaWVhRmUyU2t2Z010SU9HQkpRWGl1RGtCWktoNTNCZDgyQ1I2dgpQOFlBcktxOXI2eXdRNjh2TS9ud21ZNlFJTEhlbDlXalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJRnpXRHFFTzhVdG4KSEQ2dmp2UnBLWWY0UkJiTVh5ZGlMMThtTkZpOTBUb2dNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR3NtK2xBawpVV0I2OUR2UUxhMGIrMzBvTnlFQnl1MkJVVTVoZk1GeFRSNVNBaUIzaFhxTExiQUErQkhTVFJyWmVicHd0KzFVCk9yM0JTdEtuenFYdEpkSUhCQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" ] - } - } + }, + "type": 0 + }, + "version": "0" } }, "version": "1" @@ -252,25 +280,30 @@ "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" @@ -290,7 +323,8 @@ "principal": { "msp_identifier": "OrdererMSP", "role": "ADMIN" - } + }, + "principal_classification": "ROLE" } ], "rule": { @@ -302,9 +336,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" }, "Readers": { "mod_policy": "Admins", @@ -314,8 +350,10 @@ "identities": [ { "principal": { - "msp_identifier": "OrdererMSP" - } + "msp_identifier": "OrdererMSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" } ], "rule": { @@ -327,9 +365,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" }, "Writers": { "mod_policy": "Admins", @@ -339,8 +379,10 @@ "identities": [ { "principal": { - "msp_identifier": "OrdererMSP" - } + "msp_identifier": "OrdererMSP", + "role": "MEMBER" + }, + "principal_classification": "ROLE" } ], "rule": { @@ -352,9 +394,11 @@ } ] } - } + }, + "version": 0 } - } + }, + "version": "0" } }, "values": { @@ -376,10 +420,13 @@ "tls_root_certs": [ "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNORENDQWR1Z0F3SUJBZ0lRR0gySXRkL2p6WDloYTdiVkFucEZBVEFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEU0TURFd016RXpNRGsxTlZvWERUSTRNREV3TVRFek1EazFOVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkNZZ2QyUHN6Z25OUEd0cUgvT1IKMjhQRU9zRjIvc283SCtqWHQ4TTl3UzUxYzBxVWZCRDdic1M1aHExYVVyQ0JxOTZBN2czUXA3TEJiWVBZZ3VVRAo3WTZqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlLTkpMV1Qzd0J5OGk3TFFqVWJrTkRPaExaZFJsRllVcFYydEhTWEYKSTgxaU1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lCM3dpZnU3dDZDR0RCMTA3bVNEZ1JYUG5UTWgyYmNudktRMAppY2xHaVlBS0FpQlRDY1hwL3NzQ25FVnY5NGhoMmJoODFpMWRsN2p4L2RkT3F1L1M4b2VQZGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" ] - } - } + }, + "type": 0 + }, + "version": "0" } - } + }, + "version": "0" } }, "mod_policy": "Admins", @@ -392,34 +439,41 @@ "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": { @@ -429,26 +483,32 @@ "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" + "mod_policy": "Admins", + "version": "0" }, "ConsensusType": { "mod_policy": "Admins", "value": { "type": "solo" - } + }, + "version": "0" } - } + }, + "version": "0" } }, + "mod_policy": "", "policies": { "Admins": { "mod_policy": "Admins", @@ -458,25 +518,30 @@ "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": { @@ -484,18 +549,22 @@ "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", @@ -503,11 +572,14 @@ "addresses": [ "orderer.example.com:7050" ] - } + }, + "version": "0" } - } + }, + "version": "0" }, - "sequence": "3" + "sequence": "3", + "type": 0 }, "last_update": { "payload": { @@ -519,21 +591,38 @@ "Application": { "groups": { "Org2MSP": { + "mod_policy": "", "policies": { - "Admins": {}, - "Readers": {}, - "Writers": {} + "Admins": { + "mod_policy": "", + "version": "0" + }, + "Readers": { + "mod_policy": "", + "version": "0" + }, + "Writers": { + "mod_policy": "", + "version": "0" + } }, "values": { - "MSP": {} - } + "MSP": { + "mod_policy": "", + "version": "0" + } + }, + "version": "0" } }, "mod_policy": "Admins", "version": "1" } - } + }, + "mod_policy": "", + "version": "0" }, + "type": 0, "write_set": { "groups": { "Application": { @@ -541,9 +630,18 @@ "Org2MSP": { "mod_policy": "Admins", "policies": { - "Admins": {}, - "Readers": {}, - "Writers": {} + "Admins": { + "mod_policy": "", + "version": "0" + }, + "Readers": { + "mod_policy": "", + "version": "0" + }, + "Writers": { + "mod_policy": "", + "version": "0" + } }, "values": { "AnchorPeers": { @@ -555,9 +653,13 @@ "port": 7051 } ] - } + }, + "version": "0" }, - "MSP": {} + "MSP": { + "mod_policy": "", + "version": "0" + } }, "version": "1" } @@ -565,15 +667,20 @@ "mod_policy": "Admins", "version": "1" } - } + }, + "mod_policy": "", + "version": "0" } }, "signatures": [ { - "signature": "MEUCIQDYkrR3n0EXWcin31AncXhYzyo9K753tGviyfQVUYZyLwIgLXujRAfQaLJ/kj7agcmpENroFbFNwJ2yn6zU8lDuoKE=", + "signature": "MEUCIQCBmOeHd8S/jdhmNGxCszPbEfcv4p/1EEBWyoHsCrsbfgIgQHn7HSg8z/6xFQdDD+/OoQ0JDUXOJbmxEvIo/qZ4n4A=", "signature_header": { - "creator": "CgdPcmcyTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR2pDQ0FjQ2dBd0lCQWdJUkFOMnVKZDJueE1VVE9XOXdLTm9YZHhnd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6SXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMVdoY05Namd3TVRBeE1UTXdPVFUxCldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NaTVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJKR1N4RlpFN3NvcDZVbWVkcnZmWDNCQ0RVRUpJdTg0Cm1RTk1jYWQzMXpUNmR3Sm0zaHJBL1h6dk1uMzUvS25sWXpkS2hMMmNPWHdVbERHWXFqR2p4UTZqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIWXdDTmNFK0ZmcgpaWHFaSTRKTFA4WVhqelRmcU9WUWs5MmI0NC9kVTVUdU1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRQ2JKaWRRCjg0Qzh4aGpVbVJwb2lsSEtsNUZDSXdVQnc2OURaUU8vN1p6ZVB3SWdCcENRY2dLRDRGbk5WWStHczRTNVN2UlMKQVhZeFVMWnBYWURRWHQxS2FMST0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "9s9IvFomIwTBB9Werogfg/UbWzZDGPA4" + "creator": { + "id_bytes": "LS0tLS1CRUdJTiAtLS0tLQpNSUlDR2pDQ0FjQ2dBd0lCQWdJUkFOMnVKZDJueE1VVE9XOXdLTm9YZHhnd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6SXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMVdoY05Namd3TVRBeE1UTXdPVFUxCldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NaTVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJKR1N4RlpFN3NvcDZVbWVkcnZmWDNCQ0RVRUpJdTg0Cm1RTk1jYWQzMXpUNmR3Sm0zaHJBL1h6dk1uMzUvS25sWXpkS2hMMmNPWHdVbERHWXFqR2p4UTZqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIWXdDTmNFK0ZmcgpaWHFaSTRKTFA4WVhqelRmcU9WUWs5MmI0NC9kVTVUdU1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRQ2JKaWRRCjg0Qzh4aGpVbVJwb2lsSEtsNUZDSXdVQnc2OURaUU8vN1p6ZVB3SWdCcENRY2dLRDRGbk5WWStHczRTNVN2UlMKQVhZeFVMWnBYWURRWHQxS2FMST0KLS0tLS1FTkQgLS0tLS0K", + "mspid": "Org2MSP" + }, + "nonce": "OKB2Q4Xj9oeXmeukVzgAu2EtbGY+Qn3J" } } ] @@ -581,43 +688,55 @@ "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2018-01-03T13:10:10.000Z", - "type": 2 + "epoch": "0", + "timestamp": "2018-01-14T11:45:36.000Z", + "tx_id": "", + "type": 2, + "version": 0 }, "signature_header": { - "creator": "CgdPcmcyTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR2pDQ0FjQ2dBd0lCQWdJUkFOMnVKZDJueE1VVE9XOXdLTm9YZHhnd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6SXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMVdoY05Namd3TVRBeE1UTXdPVFUxCldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NaTVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJKR1N4RlpFN3NvcDZVbWVkcnZmWDNCQ0RVRUpJdTg0Cm1RTk1jYWQzMXpUNmR3Sm0zaHJBL1h6dk1uMzUvS25sWXpkS2hMMmNPWHdVbERHWXFqR2p4UTZqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIWXdDTmNFK0ZmcgpaWHFaSTRKTFA4WVhqelRmcU9WUWs5MmI0NC9kVTVUdU1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRQ2JKaWRRCjg0Qzh4aGpVbVJwb2lsSEtsNUZDSXdVQnc2OURaUU8vN1p6ZVB3SWdCcENRY2dLRDRGbk5WWStHczRTNVN2UlMKQVhZeFVMWnBYWURRWHQxS2FMST0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "9H37YTYUdLaoeFzmISaeDtUn/KI30SQO" + "creator": { + "id_bytes": "LS0tLS1CRUdJTiAtLS0tLQpNSUlDR2pDQ0FjQ2dBd0lCQWdJUkFOMnVKZDJueE1VVE9XOXdLTm9YZHhnd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6SXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMVdoY05Namd3TVRBeE1UTXdPVFUxCldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NaTVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJKR1N4RlpFN3NvcDZVbWVkcnZmWDNCQ0RVRUpJdTg0Cm1RTk1jYWQzMXpUNmR3Sm0zaHJBL1h6dk1uMzUvS25sWXpkS2hMMmNPWHdVbERHWXFqR2p4UTZqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIWXdDTmNFK0ZmcgpaWHFaSTRKTFA4WVhqelRmcU9WUWs5MmI0NC9kVTVUdU1Bb0dDQ3FHU000OUJBTUNBMGdBTUVVQ0lRQ2JKaWRRCjg0Qzh4aGpVbVJwb2lsSEtsNUZDSXdVQnc2OURaUU8vN1p6ZVB3SWdCcENRY2dLRDRGbk5WWStHczRTNVN2UlMKQVhZeFVMWnBYWURRWHQxS2FMST0KLS0tLS1FTkQgLS0tLS0K", + "mspid": "Org2MSP" + }, + "nonce": "eF1lRTMYHUrCmISih4UI5cI8JqStbJGF" } } }, - "signature": "MEQCIGGZ2g/ZxJ+roAsZJt73HGBu879JS/Hw2Ux6g6VIwaIEAiBiOPl9OzDBPTJSB5kcWW5fc+WdlT1Hsh+hB6aG0DfbRQ==" + "signature": "MEUCIQDWB/GF7sfHvpEsdV5LFT5nUkJ/SimHQnTYHRRz/9n7/AIgbRde4Vg77eiZntFYGd3Rx4qJjaLWEgrr4AmKNhSgBzo=" } }, "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2018-01-03T13:10:10.000Z", - "type": 1 + "epoch": "0", + "timestamp": "2018-01-14T11:45:36.000Z", + "tx_id": "", + "type": 1, + "version": 0 }, "signature_header": { - "creator": "CgpPcmRlcmVyTVNQEusFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUU1GdzVRaFZmd2tkdnJCMytZZllmcHpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEU0TURFd016RXpNRGsxTlZvWERUSTRNREV3TVRFek1EazFOVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJpY2tSZ0dUcW91QmFPK0lWTDkrVzBjMDBTdTd4MTZyWDhJak5Ham82Z1prVUFZanB6Ck1LbUIxQ1JXM2VvVTJ0VWQ2cklCTVhqNE1RRlVSRTlXek9ldG8wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0FaSHlhaE5iK3BLb2VpMGg0SWlnMjh4WFBieENtTgpSdlpOTGErMUs4dU5xakFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBdlRySTNCeTRNUnArM0oxQldPa3VhOEhICi80VndZRjY0am4yT0xJbE4vLzBDSUQ2OVNuOHJzR25qeHI0U2pGNGs3M3NIbzBkM2RXWTlYcG43TU1HcEQrdmwKLS0tLS1FTkQgLS0tLS0K", - "nonce": "v8TO9Asa0Rh4GVtxiAUhg2HmNg200mPq" + "creator": { + "id_bytes": "LS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUU1GdzVRaFZmd2tkdnJCMytZZllmcHpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEU0TURFd016RXpNRGsxTlZvWERUSTRNREV3TVRFek1EazFOVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJpY2tSZ0dUcW91QmFPK0lWTDkrVzBjMDBTdTd4MTZyWDhJak5Ham82Z1prVUFZanB6Ck1LbUIxQ1JXM2VvVTJ0VWQ2cklCTVhqNE1RRlVSRTlXek9ldG8wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0FaSHlhaE5iK3BLb2VpMGg0SWlnMjh4WFBieENtTgpSdlpOTGErMUs4dU5xakFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBdlRySTNCeTRNUnArM0oxQldPa3VhOEhICi80VndZRjY0am4yT0xJbE4vLzBDSUQ2OVNuOHJzR25qeHI0U2pGNGs3M3NIbzBkM2RXWTlYcG43TU1HcEQrdmwKLS0tLS1FTkQgLS0tLS0K", + "mspid": "OrdererMSP" + }, + "nonce": "tUlDKUlpk4HBahFWeSTuwOumb24UQxqa" } } }, - "signature": "MEQCIFppR//PEEaiHBhIftWQ1hOrKO9YEgi8Ua220xde4v5CAiBgosGvclnBJCgqVOhpEsxBZNOi2SfSrdk3ovSpQVhycw==" + "signature": "MEUCIQCRJEqEKXS0zswR9VV9iW3PDNBTyx++e1EIv8DGGNjVUAIgFPGqH96kvWpY7nTS+emhjRyFnNyqHfIz71U4T9dVGiU=" } ] }, "header": { - "data_hash": "QIBrx5h7za362T4JqvX+s3g3lXfk+kJknfMY5jwAAc0=", + "data_hash": "MBpB+KXoUXIfx7Uvi+pu3Nw4yNE4gCsJgzyThQpamw8=", "number": "2", - "previous_hash": "11TSWm38gAMrtmnibGW1MQt4l4QyXyUSh5XArpJJl7s=" + "previous_hash": "ayiaxilXZ5mAzVqkxjG7rSFaXhv6gOdo8WBb3ZACjL0=" }, "metadata": { "metadata": [ - "EuIGCpcGCvoFCgpPcmRlcmVyTVNQEusFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUU1GdzVRaFZmd2tkdnJCMytZZllmcHpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEU0TURFd016RXpNRGsxTlZvWERUSTRNREV3TVRFek1EazFOVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJpY2tSZ0dUcW91QmFPK0lWTDkrVzBjMDBTdTd4MTZyWDhJak5Ham82Z1prVUFZanB6Ck1LbUIxQ1JXM2VvVTJ0VWQ2cklCTVhqNE1RRlVSRTlXek9ldG8wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0FaSHlhaE5iK3BLb2VpMGg0SWlnMjh4WFBieENtTgpSdlpOTGErMUs4dU5xakFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBdlRySTNCeTRNUnArM0oxQldPa3VhOEhICi80VndZRjY0am4yT0xJbE4vLzBDSUQ2OVNuOHJzR25qeHI0U2pGNGs3M3NIbzBkM2RXWTlYcG43TU1HcEQrdmwKLS0tLS1FTkQgLS0tLS0KEhgaFvCHItW6ZRUTkYdLx0CdkpmuY0ho9mUSRjBEAiBeg7mHfg8TVGWz8Tgd+dnjHtvxvz3StPeMxCzZm9N9jwIgOEsTWpGG56sXLpYX8EMIF4A/hrCDzWE+Dte4xIACq9E=", - "CgIIAhLiBgqXBgr6BQoKT3JkZXJlck1TUBLrBS0tLS0tQkVHSU4gLS0tLS0KTUlJQ0REQ0NBYktnQXdJQkFnSVFNRnc1UWhWZndrZHZyQjMrWWZZZnB6QUtCZ2dxaGtqT1BRUURBakJwTVFzdwpDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTlUyRnVJRVp5CllXNWphWE5qYnpFVU1CSUdBMVVFQ2hNTFpYaGhiWEJzWlM1amIyMHhGekFWQmdOVkJBTVREbU5oTG1WNFlXMXcKYkdVdVkyOXRNQjRYRFRFNE1ERXdNekV6TURrMU5Wb1hEVEk0TURFd01URXpNRGsxTlZvd1dERUxNQWtHQTFVRQpCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCR2NtRnVZMmx6ClkyOHhIREFhQmdOVkJBTVRFMjl5WkdWeVpYSXVaWGhoYlhCc1pTNWpiMjB3V1RBVEJnY3Foa2pPUFFJQkJnZ3EKaGtqT1BRTUJCd05DQUFSaWNrUmdHVHFvdUJhTytJVkw5K1cwYzAwU3U3eDE2clg4SWpOR2pvNmdaa1VBWWpwegpNS21CMUNSVzNlb1UydFVkNnJJQk1YajRNUUZVUkU5V3pPZXRvMDB3U3pBT0JnTlZIUThCQWY4RUJBTUNCNEF3CkRBWURWUjBUQVFIL0JBSXdBREFyQmdOVkhTTUVKREFpZ0NBWkh5YWhOYitwS29laTBoNElpZzI4eFhQYnhDbU4KUnZaTkxhKzFLOHVOcWpBS0JnZ3Foa2pPUFFRREFnTklBREJGQWlFQXZUckkzQnk0TVJwKzNKMUJXT2t1YThISAovNFZ3WUY2NGpuMk9MSWxOLy8wQ0lENjlTbjhyc0duanhyNFNqRjRrNzNzSG8wZDNkV1k5WHBuN01NR3BEK3ZsCi0tLS0tRU5EIC0tLS0tChIYPO0mAaniLkmZsD7uA6ZqnCRE4aV21wHFEkYwRAIgUQtQKGBO3KEG9HDLffRpueXm+F2UlWWEXuThREqFShsCIE7QDCJ2O88wYTJwbXCbva6OGih5ofYEQSfb+3n44MDi", + "EuIGCpcGCvoFCgpPcmRlcmVyTVNQEusFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiS2dBd0lCQWdJUU1GdzVRaFZmd2tkdnJCMytZZllmcHpBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEU0TURFd016RXpNRGsxTlZvWERUSTRNREV3TVRFek1EazFOVm93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVJpY2tSZ0dUcW91QmFPK0lWTDkrVzBjMDBTdTd4MTZyWDhJak5Ham82Z1prVUFZanB6Ck1LbUIxQ1JXM2VvVTJ0VWQ2cklCTVhqNE1RRlVSRTlXek9ldG8wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0FaSHlhaE5iK3BLb2VpMGg0SWlnMjh4WFBieENtTgpSdlpOTGErMUs4dU5xakFLQmdncWhrak9QUVFEQWdOSUFEQkZBaUVBdlRySTNCeTRNUnArM0oxQldPa3VhOEhICi80VndZRjY0am4yT0xJbE4vLzBDSUQ2OVNuOHJzR25qeHI0U2pGNGs3M3NIbzBkM2RXWTlYcG43TU1HcEQrdmwKLS0tLS1FTkQgLS0tLS0KEhiTZ0r80Qf/8o1OgRcpiS1B5LXX1o5TNBISRjBEAiA2Gje9DjJRV0z/Djhw2zkcU1KvPBAYs0DnmXjiMlSu4QIgAvTf8cMH914xeA9BhoAR12B2u4mSLPk0Z6A88fvrRgA=", + "CgIIAhLiBgqXBgr6BQoKT3JkZXJlck1TUBLrBS0tLS0tQkVHSU4gLS0tLS0KTUlJQ0REQ0NBYktnQXdJQkFnSVFNRnc1UWhWZndrZHZyQjMrWWZZZnB6QUtCZ2dxaGtqT1BRUURBakJwTVFzdwpDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTlUyRnVJRVp5CllXNWphWE5qYnpFVU1CSUdBMVVFQ2hNTFpYaGhiWEJzWlM1amIyMHhGekFWQmdOVkJBTVREbU5oTG1WNFlXMXcKYkdVdVkyOXRNQjRYRFRFNE1ERXdNekV6TURrMU5Wb1hEVEk0TURFd01URXpNRGsxTlZvd1dERUxNQWtHQTFVRQpCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCR2NtRnVZMmx6ClkyOHhIREFhQmdOVkJBTVRFMjl5WkdWeVpYSXVaWGhoYlhCc1pTNWpiMjB3V1RBVEJnY3Foa2pPUFFJQkJnZ3EKaGtqT1BRTUJCd05DQUFSaWNrUmdHVHFvdUJhTytJVkw5K1cwYzAwU3U3eDE2clg4SWpOR2pvNmdaa1VBWWpwegpNS21CMUNSVzNlb1UydFVkNnJJQk1YajRNUUZVUkU5V3pPZXRvMDB3U3pBT0JnTlZIUThCQWY4RUJBTUNCNEF3CkRBWURWUjBUQVFIL0JBSXdBREFyQmdOVkhTTUVKREFpZ0NBWkh5YWhOYitwS29laTBoNElpZzI4eFhQYnhDbU4KUnZaTkxhKzFLOHVOcWpBS0JnZ3Foa2pPUFFRREFnTklBREJGQWlFQXZUckkzQnk0TVJwKzNKMUJXT2t1YThISAovNFZ3WUY2NGpuMk9MSWxOLy8wQ0lENjlTbjhyc0duanhyNFNqRjRrNzNzSG8wZDNkV1k5WHBuN01NR3BEK3ZsCi0tLS0tRU5EIC0tLS0tChIYbfUO1Qdv0LHMmqXh4pKaryBBT/SEOw/rEkYwRAIgJWemsA/ljGvswN+uNVSl8SEeJl/3Q9qRE+zg+PuI1J0CIHmiVz1oYjSnX8W7s2oGqpEpY6T5YtxkrIx7jMHwZaXX", "", "" ] diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta.json b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta.json new file mode 100644 index 00000000..0eb85aa2 --- /dev/null +++ b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta.json @@ -0,0 +1,4 @@ +{ + "channel_id": "", + "type": 0 +} diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta.pb b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta.pb new file mode 100644 index 00000000..e69de29b diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta_env.json b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta_env.json new file mode 100644 index 00000000..a37e20b7 --- /dev/null +++ b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta_env.json @@ -0,0 +1,16 @@ +{ + "payload": { + "header": { + "channel_header": { + "channel_id": "businesschannel", + "type": 2 + } + }, + "data": { + "config_update": { + "channel_id": "", + "type": 0 + } + } + } +} diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta_env.pb b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta_env.pb new file mode 100644 index 00000000..95d41d09 --- /dev/null +++ b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/config_delta_env.pb @@ -0,0 +1,4 @@ + + + +"businesschannel \ No newline at end of file diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/orderer.genesis.updated.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/orderer.genesis.updated.block index b4b6a9d0..cd32f204 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/orderer.genesis.updated.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/orderer.genesis.updated.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/original_config.json b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/original_config.json new file mode 100644 index 00000000..ced04fbb --- /dev/null +++ b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/original_config.json @@ -0,0 +1,577 @@ +{ + "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": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQVArWjg4azduanNIcDlsM2tpV21kOXN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd3TVRBek1UTXdPVFUwV2hjTk1qZ3dNVEF4TVRNd09UVTAKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkQ0MElpVnJSdGNOa0M0RUdQN0RYVXg3WkV6RUcyREIKeG5ZZXNwS0NWMWowUVlvUnIyUlNlb1Z1RFYxUkhTUXcvVXJPdExmbk1zYU1TeVU4VXBHeEJwV2pUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNLYlZZZ3FxZTZpCmZ0YjdnQnN4SlIxT0dMbEN6OHRGeTZTVkdEaFVDZEFSTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEMVRrTFkKZ2ZSa0xnS0hoVkxtS0duVlJmMGlvaG9ZdUFUNWJ4VWpyZlZHd3dJZ05nTjVMMEhmSXNzMFNHZkRaOFpFSjJVKwp4SFRCdnhmSzZtQXptVWl0Rm1ZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "Org1MSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQUloSXI1Z1VpK3llN0ROa25HUVhCWHN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd3TVRBek1UTXdPVFUwV2hjTk1qZ3dNVEF4TVRNd09UVTAKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBMT3pDSXl0U25NTkd0ZENKanRkY0JXbVBndllhSnJ5UzhscDNKem83RS9rVTVqaXRpU1FyTEhIbHZndzhjZgpkYi9jSHpmeG1YVkZSdmk1UFFPYzR5Q2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNLYlZZZ3FxZTZpZnRiN2dCc3gKSlIxT0dMbEN6OHRGeTZTVkdEaFVDZEFSTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUFpK2ZRSWxqd0p1U2FYaQovSUdaVm13ZEEwZ01WVVAyLy9pSHZRWUVzYUw4QWlCT1dubVZYWE1keGNmSHU3Vm15cGQzNDJsUUdBKzNnTXpRCkg3bjh6MXBqNXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTakNDQWZDZ0F3SUJBZ0lSQU8yOUR1OWlzeXhtTUVqZk9JTFpPRk13Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMFdoY05Namd3TVRBeE1UTXcKT1RVMFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCTnBOVEpROXJ0dE5hMk1lQlV1dnNEMDNNR0FpNUZWc1FUNW83R3ZLa0hPSEFQT3FYZC9VYVRpMAp5NXJhei9ZTjhYdXMzWEJ4ZFU2aklwbUhXM21ZVGdXalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJSzhSNkhxZHU0R28KR1Z0UEljRjdDdmovYVBWQnpSd3lIUm8vNGI4RWJMTmNNQW9HQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUQxT2NheQp0UjBMZ2pLakw1VXEvbkdDRzVETmVKWllJWXhZdWQrbnFaazZLd0lnQ2QybVZ6Wm9xZ0dYZ21jS0luV0pJdjl2CkhyNmdjVzI0ZTQ4M2lNbVBFQzA9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ] + }, + "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": { + "AnchorPeers": { + "mod_policy": "Admins", + "value": { + "anchor_peers": [ + { + "host": "peer0.org2.example.com", + "port": 7051 + } + ] + }, + "version": "0" + }, + "MSP": { + "mod_policy": "Admins", + "value": { + "config": { + "admins": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU4ydUpkMm54TVVUT1c5d0tOb1hkeGd3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd3TVRBek1UTXdPVFUxV2hjTk1qZ3dNVEF4TVRNd09UVTEKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkpHU3hGWkU3c29wNlVtZWRydmZYM0JDRFVFSkl1ODQKbVFOTWNhZDMxelQ2ZHdKbTNockEvWHp2TW4zNS9LbmxZemRLaEwyY09Yd1VsREdZcWpHanhRNmpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUhZd0NOY0UrRmZyClpYcVpJNEpMUDhZWGp6VGZxT1ZRazkyYjQ0L2RVNVR1TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDYkppZFEKODRDOHhoalVtUnBvaWxIS2w1RkNJd1VCdzY5RFpRTy83WnplUHdJZ0JwQ1FjZ0tENEZuTlZZK0dzNFM1U3ZSUwpBWFl4VUxacFhZRFFYdDFLYUxJPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "Org2MSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRTUFhOEZaSTVPbjNnQmlOSnRwc2lsVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhPREF4TURNeE16QTVOVFJhRncweU9EQXhNREV4TXpBNU5UUmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbURURHYxekZ4Q0NBOW9PejVRRE5VRW9TWVFvQzdwSTdmVVpVYmJNMzVpS3N5TStWZlZ5a3ZnUmlmRDVOeFVBOApzTiswMkpyRGFIdTB0SXF3M3p1eGFhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnZGpBSTF3VDRWK3RsZXBramdrcy8KeGhlUE5OK281VkNUM1p2amo5MVRsTzR3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQVB3YWZGSGQ5cHcrcmludgpXSXlpdTVXem1HaURTSnU2VVVKVUUzK3FFdVdNQWlCVFRnSmpsZEhHVXdTQklWV3Fvc1NncjZENm45Rkptb25rClNDanlSZEQzYVE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUx5aWozWTZtNFl0alNtTm9xaUNFend3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMFdoY05Namd3TVRBeE1UTXcKT1RVMFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSFZmQVFLSXFGUzNNbTlzNjRDaWVhRmUyU2t2Z010SU9HQkpRWGl1RGtCWktoNTNCZDgyQ1I2dgpQOFlBcktxOXI2eXdRNjh2TS9ud21ZNlFJTEhlbDlXalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJRnpXRHFFTzhVdG4KSEQ2dmp2UnBLWWY0UkJiTVh5ZGlMMThtTkZpOTBUb2dNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR3NtK2xBawpVV0I2OUR2UUxhMGIrMzBvTnlFQnl1MkJVVTVoZk1GeFRSNVNBaUIzaFhxTExiQUErQkhTVFJyWmVicHd0KzFVCk9yM0JTdEtuenFYdEpkSUhCQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ] + }, + "type": 0 + }, + "version": "0" + } + }, + "version": "1" + } + }, + "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": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRQ09kN3NBNGVNbnhmM3QySkxZUWZEREFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTRNREV3TXpFek1EazFObG9YRFRJNE1ERXdNVEV6TURrMU5sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRXRIVWp2b2FvMlNwNXFMakxCRCtYY1hmSzk4emYrVnBYZjZUNVhUcHc5RDF6VElNcmZUQVgKeVdlM082d1NtK1BXbGdQcVF3emtZZWs2aTA4eUJNNU5CS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ0dSOG1vVFcvcVNxSG90SWVDSW9Odk1WejI4UXBqVWIyClRTMnZ0U3ZMamFvd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d6YnJib2xUZDJYQ0ZiVGcrRGZFRzZTMjhuc2gKRWpHbkd3QVRyaEl3U2lvQ0lBelhVWGRsdHFqK2NDeWlBRmxCS2NKVWhjMCt3SFZ0UU50UXJQc1hNU2MwCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "OrdererMSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRhZ0F3SUJBZ0lSQUoreXpiSC9VQzdkMSs1eWNSem9kWVV3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREF4TURNeE16QTVOVFZhRncweU9EQXhNREV4TXpBNU5UVmFNR2t4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVJRd0VnWURWUVFLRXd0bGVHRnRjR3hsTG1OdmJURVhNQlVHQTFVRUF4TU9ZMkV1WlhoaGJYQnNaUzVqCmIyMHdXVEFUQmdjcWhrak9QUUlCQmdncWhrak9QUU1CQndOQ0FBVFhJVHRNRnl1NVlyQkNiazdvdFFhMFBKc1cKZ2RydGlDSVhJY2lQWEU4SHdKOU1MQWYrOURQWFY2K283Zm1VbldZak5IejdyeFp6UXovN3JUUENoK0hibzE4dwpYVEFPQmdOVkhROEJBZjhFQkFNQ0FhWXdEd1lEVlIwbEJBZ3dCZ1lFVlIwbEFEQVBCZ05WSFJNQkFmOEVCVEFECkFRSC9NQ2tHQTFVZERnUWlCQ0FaSHlhaE5iK3BLb2VpMGg0SWlnMjh4WFBieENtTlJ2Wk5MYSsxSzh1TnFqQUsKQmdncWhrak9QUVFEQWdOSEFEQkVBaUIvWHdhbkxhRC9Oa20zbkZJakJqRkdMeXFPdE1jSWRGYTAxUVAwNG9ScwpLUUlnVXMxQmJjaTZJVmRSZytoMmtyVmxjTDUwcGkrWlhIallXOUtUSlhGSnBFQT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNORENDQWR1Z0F3SUJBZ0lRR0gySXRkL2p6WDloYTdiVkFucEZBVEFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEU0TURFd016RXpNRGsxTlZvWERUSTRNREV3TVRFek1EazFOVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkNZZ2QyUHN6Z25OUEd0cUgvT1IKMjhQRU9zRjIvc283SCtqWHQ4TTl3UzUxYzBxVWZCRDdic1M1aHExYVVyQ0JxOTZBN2czUXA3TEJiWVBZZ3VVRAo3WTZqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlLTkpMV1Qzd0J5OGk3TFFqVWJrTkRPaExaZFJsRllVcFYydEhTWEYKSTgxaU1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lCM3dpZnU3dDZDR0RCMTA3bVNEZ1JYUG5UTWgyYmNudktRMAppY2xHaVlBS0FpQlRDY1hwL3NzQ25FVnY5NGhoMmJoODFpMWRsN2p4L2RkT3F1L1M4b2VQZGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ] + }, + "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": "solo" + }, + "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": "3", + "type": 0 +} diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/original_config.pb b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/original_config.pb new file mode 100644 index 00000000..d76cce5d Binary files /dev/null and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/original_config.pb differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/testchainid_1.block index 6d5ae446..1ca79e90 100644 Binary files a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/testchainid_1.block and b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/testchainid_1.block differ diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/updated_config.json b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/updated_config.json new file mode 100644 index 00000000..92c767a7 --- /dev/null +++ b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/updated_config.json @@ -0,0 +1,578 @@ +{ + "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": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQVArWjg4azduanNIcDlsM2tpV21kOXN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd3TVRBek1UTXdPVFUwV2hjTk1qZ3dNVEF4TVRNd09UVTAKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkQ0MElpVnJSdGNOa0M0RUdQN0RYVXg3WkV6RUcyREIKeG5ZZXNwS0NWMWowUVlvUnIyUlNlb1Z1RFYxUkhTUXcvVXJPdExmbk1zYU1TeVU4VXBHeEJwV2pUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUNLYlZZZ3FxZTZpCmZ0YjdnQnN4SlIxT0dMbEN6OHRGeTZTVkdEaFVDZEFSTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEMVRrTFkKZ2ZSa0xnS0hoVkxtS0duVlJmMGlvaG9ZdUFUNWJ4VWpyZlZHd3dJZ05nTjVMMEhmSXNzMFNHZkRaOFpFSjJVKwp4SFRCdnhmSzZtQXptVWl0Rm1ZPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "Org1MSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVxZ0F3SUJBZ0lSQUloSXI1Z1VpK3llN0ROa25HUVhCWHN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd3TVRBek1UTXdPVFUwV2hjTk1qZ3dNVEF4TVRNd09UVTAKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQlBMT3pDSXl0U25NTkd0ZENKanRkY0JXbVBndllhSnJ5UzhscDNKem83RS9rVTVqaXRpU1FyTEhIbHZndzhjZgpkYi9jSHpmeG1YVkZSdmk1UFFPYzR5Q2pYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUNLYlZZZ3FxZTZpZnRiN2dCc3gKSlIxT0dMbEN6OHRGeTZTVkdEaFVDZEFSTUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUFpK2ZRSWxqd0p1U2FYaQovSUdaVm13ZEEwZ01WVVAyLy9pSHZRWUVzYUw4QWlCT1dubVZYWE1keGNmSHU3Vm15cGQzNDJsUUdBKzNnTXpRCkg3bjh6MXBqNXc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTakNDQWZDZ0F3SUJBZ0lSQU8yOUR1OWlzeXhtTUVqZk9JTFpPRk13Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMFdoY05Namd3TVRBeE1UTXcKT1RVMFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCTnBOVEpROXJ0dE5hMk1lQlV1dnNEMDNNR0FpNUZWc1FUNW83R3ZLa0hPSEFQT3FYZC9VYVRpMAp5NXJhei9ZTjhYdXMzWEJ4ZFU2aklwbUhXM21ZVGdXalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJSzhSNkhxZHU0R28KR1Z0UEljRjdDdmovYVBWQnpSd3lIUm8vNGI4RWJMTmNNQW9HQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUQxT2NheQp0UjBMZ2pLakw1VXEvbkdDRzVETmVKWllJWXhZdWQrbnFaazZLd0lnQ2QybVZ6Wm9xZ0dYZ21jS0luV0pJdjl2CkhyNmdjVzI0ZTQ4M2lNbVBFQzA9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ] + }, + "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": { + "AnchorPeers": { + "mod_policy": "Admins", + "value": { + "anchor_peers": [ + { + "host": "peer0.org2.example.com", + "port": 7051 + } + ] + }, + "version": "0" + }, + "MSP": { + "mod_policy": "Admins", + "value": { + "config": { + "admins": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQU4ydUpkMm54TVVUT1c5d0tOb1hkeGd3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd3TVRBek1UTXdPVFUxV2hjTk1qZ3dNVEF4TVRNd09UVTEKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkpHU3hGWkU3c29wNlVtZWRydmZYM0JDRFVFSkl1ODQKbVFOTWNhZDMxelQ2ZHdKbTNockEvWHp2TW4zNS9LbmxZemRLaEwyY09Yd1VsREdZcWpHanhRNmpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUhZd0NOY0UrRmZyClpYcVpJNEpMUDhZWGp6VGZxT1ZRazkyYjQ0L2RVNVR1TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDYkppZFEKODRDOHhoalVtUnBvaWxIS2w1RkNJd1VCdzY5RFpRTy83WnplUHdJZ0JwQ1FjZ0tENEZuTlZZK0dzNFM1U3ZSUwpBWFl4VUxacFhZRFFYdDFLYUxJPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "Org2MSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNRekNDQWVtZ0F3SUJBZ0lRTUFhOEZaSTVPbjNnQmlOSnRwc2lsVEFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhPREF4TURNeE16QTVOVFJhRncweU9EQXhNREV4TXpBNU5UUmEKTUhNeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVJrd0Z3WURWUVFLRXhCdmNtY3lMbVY0WVcxd2JHVXVZMjl0TVJ3d0dnWURWUVFECkV4TmpZUzV2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSUtvWkl6ajBEQVFjRFFnQUUKbURURHYxekZ4Q0NBOW9PejVRRE5VRW9TWVFvQzdwSTdmVVpVYmJNMzVpS3N5TStWZlZ5a3ZnUmlmRDVOeFVBOApzTiswMkpyRGFIdTB0SXF3M3p1eGFhTmZNRjB3RGdZRFZSMFBBUUgvQkFRREFnR21NQThHQTFVZEpRUUlNQVlHCkJGVWRKUUF3RHdZRFZSMFRBUUgvQkFVd0F3RUIvekFwQmdOVkhRNEVJZ1FnZGpBSTF3VDRWK3RsZXBramdrcy8KeGhlUE5OK281VkNUM1p2amo5MVRsTzR3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQVB3YWZGSGQ5cHcrcmludgpXSXlpdTVXem1HaURTSnU2VVVKVUUzK3FFdVdNQWlCVFRnSmpsZEhHVXdTQklWV3Fvc1NncjZENm45Rkptb25rClNDanlSZEQzYVE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQUx5aWozWTZtNFl0alNtTm9xaUNFend3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRnd01UQXpNVE13T1RVMFdoY05Namd3TVRBeE1UTXcKT1RVMFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSFZmQVFLSXFGUzNNbTlzNjRDaWVhRmUyU2t2Z010SU9HQkpRWGl1RGtCWktoNTNCZDgyQ1I2dgpQOFlBcktxOXI2eXdRNjh2TS9ud21ZNlFJTEhlbDlXalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJRnpXRHFFTzhVdG4KSEQ2dmp2UnBLWWY0UkJiTVh5ZGlMMThtTkZpOTBUb2dNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJR3NtK2xBawpVV0I2OUR2UUxhMGIrMzBvTnlFQnl1MkJVVTVoZk1GeFRSNVNBaUIzaFhxTExiQUErQkhTVFJyWmVicHd0KzFVCk9yM0JTdEtuenFYdEpkSUhCQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ] + }, + "type": 0 + }, + "version": "0" + } + }, + "version": "1" + }, + "Org3MSP": null + }, + "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": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRQ09kN3NBNGVNbnhmM3QySkxZUWZEREFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTRNREV3TXpFek1EazFObG9YRFRJNE1ERXdNVEV6TURrMU5sb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRXRIVWp2b2FvMlNwNXFMakxCRCtYY1hmSzk4emYrVnBYZjZUNVhUcHc5RDF6VElNcmZUQVgKeVdlM082d1NtK1BXbGdQcVF3emtZZWs2aTA4eUJNNU5CS05OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZ0dSOG1vVFcvcVNxSG90SWVDSW9Odk1WejI4UXBqVWIyClRTMnZ0U3ZMamFvd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ1d6YnJib2xUZDJYQ0ZiVGcrRGZFRzZTMjhuc2gKRWpHbkd3QVRyaEl3U2lvQ0lBelhVWGRsdHFqK2NDeWlBRmxCS2NKVWhjMCt3SFZ0UU50UXJQc1hNU2MwCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" + ], + "crypto_config": { + "identity_identifier_hash_function": "SHA256", + "signature_hash_family": "SHA2" + }, + "name": "OrdererMSP", + "root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMekNDQWRhZ0F3SUJBZ0lSQUoreXpiSC9VQzdkMSs1eWNSem9kWVV3Q2dZSUtvWkl6ajBFQXdJd2FURUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJjd0ZRWURWUVFERXc1allTNWxlR0Z0CmNHeGxMbU52YlRBZUZ3MHhPREF4TURNeE16QTVOVFZhRncweU9EQXhNREV4TXpBNU5UVmFNR2t4Q3pBSkJnTlYKQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVFlXNGdSbkpoYm1OcApjMk52TVJRd0VnWURWUVFLRXd0bGVHRnRjR3hsTG1OdmJURVhNQlVHQTFVRUF4TU9ZMkV1WlhoaGJYQnNaUzVqCmIyMHdXVEFUQmdjcWhrak9QUUlCQmdncWhrak9QUU1CQndOQ0FBVFhJVHRNRnl1NVlyQkNiazdvdFFhMFBKc1cKZ2RydGlDSVhJY2lQWEU4SHdKOU1MQWYrOURQWFY2K283Zm1VbldZak5IejdyeFp6UXovN3JUUENoK0hibzE4dwpYVEFPQmdOVkhROEJBZjhFQkFNQ0FhWXdEd1lEVlIwbEJBZ3dCZ1lFVlIwbEFEQVBCZ05WSFJNQkFmOEVCVEFECkFRSC9NQ2tHQTFVZERnUWlCQ0FaSHlhaE5iK3BLb2VpMGg0SWlnMjh4WFBieENtTlJ2Wk5MYSsxSzh1TnFqQUsKQmdncWhrak9QUVFEQWdOSEFEQkVBaUIvWHdhbkxhRC9Oa20zbkZJakJqRkdMeXFPdE1jSWRGYTAxUVAwNG9ScwpLUUlnVXMxQmJjaTZJVmRSZytoMmtyVmxjTDUwcGkrWlhIallXOUtUSlhGSnBFQT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" + ], + "tls_root_certs": [ + "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNORENDQWR1Z0F3SUJBZ0lRR0gySXRkL2p6WDloYTdiVkFucEZBVEFLQmdncWhrak9QUVFEQWpCc01Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4R2pBWUJnTlZCQU1URVhSc2MyTmhMbVY0CllXMXdiR1V1WTI5dE1CNFhEVEU0TURFd016RXpNRGsxTlZvWERUSTRNREV3TVRFek1EazFOVm93YkRFTE1Ba0cKQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdQpZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUm93R0FZRFZRUURFeEYwYkhOallTNWxlR0Z0CmNHeGxMbU52YlRCWk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkNZZ2QyUHN6Z25OUEd0cUgvT1IKMjhQRU9zRjIvc283SCtqWHQ4TTl3UzUxYzBxVWZCRDdic1M1aHExYVVyQ0JxOTZBN2czUXA3TEJiWVBZZ3VVRAo3WTZqWHpCZE1BNEdBMVVkRHdFQi93UUVBd0lCcGpBUEJnTlZIU1VFQ0RBR0JnUlZIU1VBTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0tRWURWUjBPQkNJRUlLTkpMV1Qzd0J5OGk3TFFqVWJrTkRPaExaZFJsRllVcFYydEhTWEYKSTgxaU1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lCM3dpZnU3dDZDR0RCMTA3bVNEZ1JYUG5UTWgyYmNudktRMAppY2xHaVlBS0FpQlRDY1hwL3NzQ25FVnY5NGhoMmJoODFpMWRsN2p4L2RkT3F1L1M4b2VQZGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" + ] + }, + "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": "solo" + }, + "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": "3", + "type": 0 +} diff --git a/hyperledger_fabric/v1.0.2/solo/channel-artifacts/updated_config.pb b/hyperledger_fabric/v1.0.2/solo/channel-artifacts/updated_config.pb new file mode 100644 index 00000000..e69de29b diff --git a/hyperledger_fabric/v1.0.2/solo/logs/dev_all.log b/hyperledger_fabric/v1.0.2/solo/logs/dev_all.log index 23a07947..8d95b500 100644 --- a/hyperledger_fabric/v1.0.2/solo/logs/dev_all.log +++ b/hyperledger_fabric/v1.0.2/solo/logs/dev_all.log @@ -1,3378 +1,3329 @@ -Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example.com, fabric-cli, peer0.org2.example.com, orderer.example.com -peer1.org2.example.com | [001 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | Version: 1.0.2 -peer1.org2.example.com | Go version: go1.9 -peer1.org2.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | Chaincode: -peer1.org2.example.com | Base Image Version: 0.3.2 -peer1.org2.example.com | Base Docker Namespace: hyperledger -peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer1.org2.example.com | Docker Namespace: hyperledger -peer1.org2.example.com | -peer1.org2.example.com | [002 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer1.org2.example.com | [003 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org2.example.com | [004 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org2.example.com | [005 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org2.example.com | [006 01-04 01:50:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer1.org2.example.com | [007 01-04 01:50:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org2.example.com | [008 01-04 01:50:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [009 01-04 01:50:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org2.example.com | [00a 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer1.org2.example.com | [00b 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org2.example.com | [00c 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org2.example.com | [00d 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org2.example.com | [00e 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer1.org2.example.com | [00f 01-04 01:50:56.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer1.org2.example.com | [010 01-04 01:50:56.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer1.org2.example.com | [011 01-04 01:50:56.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer1.org2.example.com | [012 01-04 01:50:56.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer1.org2.example.com | [013 01-04 01:50:56.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer1.org2.example.com | [014 01-04 01:50:56.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer1.org2.example.com | [015 01-04 01:50:56.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer1.org2.example.com | [016 01-04 01:50:56.81 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer1.org2.example.com | [017 01-04 01:50:56.85 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [018 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer1.org2.example.com | [019 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer1.org2.example.com | [01a 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer1.org2.example.com | [01b 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer1.org2.example.com | [01c 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [01d 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer1.org2.example.com | [01e 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org2.example.com:7052 -peer1.org2.example.com | [01f 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org2.example.com | [020 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer1.org2.example.com | [021 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer0.org1.example.com | [001 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org1.example.com | Version: 1.0.2 -peer1.org1.example.com | [001 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | [022 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer1.org2.example.com | [023 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | Version: 1.0.2 -peer0.org1.example.com | Go version: go1.9 -peer0.org1.example.com | OS/Arch: linux/amd64 -peer1.org1.example.com | Go version: go1.9 -peer1.org1.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | [024 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | Chaincode: -peer1.org1.example.com | Chaincode: -peer0.org1.example.com | Base Image Version: 0.3.2 -peer0.org1.example.com | Base Docker Namespace: hyperledger -peer1.org1.example.com | Base Image Version: 0.3.2 -peer1.org2.example.com | [025 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric -peer1.org1.example.com | Base Docker Namespace: hyperledger -peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org1.example.com | Docker Namespace: hyperledger -peer0.org1.example.com | -peer1.org1.example.com | Docker Namespace: hyperledger -peer1.org2.example.com | [026 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer0.org1.example.com | [002 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer1.org1.example.com | -peer0.org1.example.com | [003 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org2.example.com | [027 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org1.example.com | [002 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer0.org1.example.com | [004 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org2.example.com | [028 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | [029 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [003 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org1.example.com | [005 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org1.example.com | [004 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org2.example.com | [02a 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [006 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer1.org1.example.com | [005 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org2.example.com | [02b 01-04 01:50:56.89 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [007 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org1.example.com | [006 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer1.org2.example.com | [02c 01-04 01:50:56.90 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer1.org2.example.com:7051] -peer0.org1.example.com | [008 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org1.example.com | [007 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org2.example.com | [02d 01-04 01:50:56.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [009 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org1.example.com | [008 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [02e 01-04 01:50:56.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [02f 01-04 01:50:56.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [00a 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer1.org1.example.com | [009 01-04 01:50:56.04 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org1.example.com | [00b 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org1.example.com | [00a 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [00c 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org1.example.com | [00b 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org1.example.com | [00d 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [00c 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org1.example.com | [00e 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer1.org1.example.com | [00d 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org1.example.com | [00f 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [00e 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org1.example.com | [010 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [00f 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer0.org1.example.com | [011 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer1.org1.example.com | [010 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -peer0.org1.example.com | [012 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [011 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer0.org1.example.com | [013 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer1.org1.example.com | [012 01-04 01:50:56.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer1.org1.example.com | [013 01-04 01:50:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer0.org1.example.com | [014 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -peer1.org1.example.com | [014 01-04 01:50:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -peer1.org1.example.com | [015 01-04 01:50:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer0.org1.example.com | [015 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -peer1.org1.example.com | [016 01-04 01:50:56.06 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer0.org1.example.com | [016 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [017 01-04 01:50:56.07 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org1.example.com | [017 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [018 01-04 01:50:56.08 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -peer0.org1.example.com | [018 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer1.org1.example.com | [019 01-04 01:50:56.08 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -peer1.org1.example.com | [01a 01-04 01:50:56.08 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer1.org1.example.com | [01b 01-04 01:50:56.08 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer1.org1.example.com | [01c 01-04 01:50:56.08 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [019 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer0.org1.example.com | [01a 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer1.org1.example.com | [01d 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer0.org1.example.com | [01b 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== -peer0.org1.example.com | [01c 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org1.example.com | [01e 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org1.example.com:7052 -peer0.org1.example.com | [01d 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer1.org1.example.com | [01f 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org2.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [01e 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 -peer1.org1.example.com | [020 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer0.org1.example.com | [01f 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer1.org1.example.com | [021 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org2.example.com | [030 01-04 01:50:56.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [020 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -peer1.org1.example.com | [022 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org1.example.com | [021 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer0.org1.example.com | [022 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer1.org1.example.com | [023 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | [024 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | [023 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org2.example.com | [031 01-04 01:50:56.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [024 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | [025 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer0.org1.example.com | [026 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer1.org1.example.com | [025 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -peer1.org2.example.com | [032 01-04 01:50:56.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [033 01-04 01:50:56.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [027 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org1.example.com | [026 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -peer0.org1.example.com | [028 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [029 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [027 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer1.org1.example.com | [028 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [02a 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [034 01-04 01:50:56.93 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [029 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [02b 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [02c 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [02d 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [02a 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [02e 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [02f 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [02b 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [02c 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [02d 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [02e 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [02f 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== -peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [036 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | [037 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -peer0.org1.example.com | [030 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -peer1.org2.example.com | [035 01-04 01:50:56.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org2.example.com:7051 [] [144 119 48 161 152 16 111 55 135 212 104 153 242 128 107 239 162 108 100 105 229 13 64 139 107 78 122 75 126 238 20 116] peer1.org2.example.com:7051} incTime is 1515030656937197800 -peer1.org2.example.com | [038 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org2.example.com:7051 [] [144 119 48 161 152 16 111 55 135 212 104 153 242 128 107 239 162 108 100 105 229 13 64 139 107 78 122 75 126 238 20 116] peer1.org2.example.com:7051} -peer0.org1.example.com | [031 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [032 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [039 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [03a 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | [030 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [033 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [034 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [031 01-04 01:50:56.09 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org2.example.com | [03b 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [032 01-04 01:50:56.10 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [033 01-04 01:50:56.10 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer1.org1.example.com | [034 01-04 01:50:56.10 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [035 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} incTime is 1515030656364091100 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [036 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [037 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -peer0.org1.example.com | [038 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [039 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k -peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc -peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -peer1.org1.example.com | [035 01-04 01:50:56.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org1.example.com:7051 [] [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] peer1.org1.example.com:7051} incTime is 1515030656108527500 -peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l -peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== -peer1.org1.example.com | [036 01-04 01:50:56.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org1.example.com:7051 [] [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] peer1.org1.example.com:7051} -peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== -peer1.org1.example.com | [037 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [038 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org1.example.com | [03a 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [03b 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [039 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [03c 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [03d 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [03c 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [03d 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org1.example.com | [03e 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [03f 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2043397C6BE2657BAA...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM -peer1.org2.example.com | [03e 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [040 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 69B0B99854ABC12C15CEC60EABCF9E5C3A71C9284F1136F83AF170B4B7A7CAB3 -peer0.org1.example.com | [041 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=7b4bc9d1-dfcd-4a4e-90a9-28101c0d0967,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org1.example.com | [042 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -peer1.org2.example.com | [03f 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G -peer0.org1.example.com | [043 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq -peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI -peer0.org1.example.com | [044 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org2.example.com | [040 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20907730A198106F37...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== -peer0.org1.example.com | [045 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -peer1.org2.example.com | [041 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: F21BE5B0722E39BF9E0A2FC0299B97E074CFD5C609916BF206F14668BA5F9AAC -peer1.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [046 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer1.org1.example.com | [03a 01-04 01:50:56.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 -peer0.org1.example.com | [047 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [042 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started -peer1.org1.example.com | [03b 01-04 01:50:56.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 -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 -peer1.org2.example.com | [043 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [03c 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [03d 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [044 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [03f 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [03e 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2029D4719B6F3CFD98...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [040 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 67B5A06203E1924331C334A5346029B42E35CDE66A3C99C448068A0EC421F682 -peer0.org1.example.com | [048 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -peer1.org2.example.com | [045 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org1.example.com | [041 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=6a8cea96-3ccc-48c2-ba25-200fd472b16e,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer1.org1.example.com | [042 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -peer0.org1.example.com | [049 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -peer0.org1.example.com | [04a 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -peer0.org1.example.com | [04b 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -peer1.org1.example.com | [043 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [046 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | [04c 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -peer0.org1.example.com | [04d 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [04e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -peer1.org1.example.com | [044 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [046 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} -peer1.org1.example.com | [047 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer0.org1.example.com | [04f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [048 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started -peer1.org1.example.com | [049 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [050 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [047 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 0A51E79136F83DB1DCFFF1060858D4B6D0BB0AF00531DA8B839EA5F1B0BC660A -peer1.org1.example.com | [04a 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [051 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org2.example.com | [048 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [052 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [053 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [054 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer0.org1.example.com | [055 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 9D24F77EBDA80C0856F77DB2E90FD1AA1F74E810E4BF308089ADD9E106711B99 -peer0.org1.example.com | [056 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [04b 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [058 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [049 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [059 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -peer0.org1.example.com | [05a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -peer0.org1.example.com | [05b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -peer0.org1.example.com | [057 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [04a 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 -peer0.org1.example.com | [05c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [05d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -peer0.org1.example.com | [05e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [04c 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org1.example.com | [04d 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: EC7DB8A691E44569E79A8F4354E1B930F8A30507648938C7F431EB04D76C4E5F -peer0.org1.example.com | [05f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [04b 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 -peer1.org1.example.com | [04e 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [04c 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [060 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [061 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [04f 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [04d 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=c50288ea-8b1a-4102-b785-c02a7b3744d8,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer1.org1.example.com | [050 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 -peer0.org1.example.com | [062 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -peer0.org1.example.com | [063 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -peer0.org1.example.com | [064 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [065 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [066 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [067 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [068 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -peer0.org1.example.com | [069 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [051 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [04e 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -peer0.org1.example.com | [06a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [06b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]Move state message READY -peer1.org1.example.com | [045 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [06c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b4bc9d1]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [04f 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [050 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [053 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer0.org1.example.com | [06d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7b4bc9d1]Entered state ready -peer1.org1.example.com | [054 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [06e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7b4bc9d1-dfcd-4a4e-90a9-28101c0d0967 -peer1.org2.example.com | [051 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 -peer0.org1.example.com | [06f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]sending state message READY -peer0.org1.example.com | [070 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Received message READY from shim -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [071 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b4bc9d1]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [052 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org1.example.com | [072 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [073 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [074 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | [053 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [075 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org1.example.com | [076 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b4bc9d1]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [055 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [077 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [056 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [057 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -peer1.org1.example.com | [058 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -peer0.org1.example.com | [078 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b4bc9d1]sendExecuteMsg trigger event INIT -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [059 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -peer0.org1.example.com | [079 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]Move state message INIT -peer1.org2.example.com | [054 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -peer0.org1.example.com | [07a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b4bc9d1]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [05a 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [05b 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [07b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [055 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -peer1.org1.example.com | [05c 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -peer1.org1.example.com | [05d 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [07c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]sending state message INIT -peer1.org1.example.com | [05e 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -peer1.org2.example.com | [056 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -peer0.org1.example.com | [07d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Received message INIT from shim -peer1.org1.example.com | [05f 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [057 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -peer0.org1.example.com | [07e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b4bc9d1]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [060 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [061 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [062 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [063 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -peer1.org1.example.com | [064 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [058 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -peer1.org1.example.com | [065 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [07f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [066 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [080 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7b4bc9d1]Received INIT, initializing chaincode -peer1.org1.example.com | [067 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [059 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [081 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [052 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F -peer1.org2.example.com | [05a 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [068 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [082 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [05b 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -peer1.org1.example.com | [069 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -peer0.org1.example.com | [083 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Init get response status: 200 -peer1.org1.example.com | [06a 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [05c 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [06b 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [06c 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6a8cea96]Move state message READY -peer0.org1.example.com | [084 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [06d 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6a8cea96]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | 2018-01-04 01:50:54.213 UTC [orderer/main] main -> INFO 001 Starting orderer: -peer1.org1.example.com | [06e 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [6a8cea96]Entered state ready -peer0.org1.example.com | [085 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Move state message COMPLETED +Attaching to peer0.org1.example.com, peer0.org2.example.com, fabric-cli, peer1.org2.example.com, peer1.org1.example.com, orderer.example.com +peer0.org1.example.com | [001 01-14 11:45:30.09 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org1.example.com | Version: 1.0.2 +peer0.org1.example.com | Go version: go1.9 +peer0.org1.example.com | OS/Arch: linux/amd64 +peer0.org1.example.com | Chaincode: +peer0.org1.example.com | Base Image Version: 0.3.2 +peer0.org1.example.com | Base Docker Namespace: hyperledger +peer0.org1.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | Docker Namespace: hyperledger +peer0.org1.example.com | +peer0.org1.example.com | [002 01-14 11:45:30.09 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +peer0.org1.example.com | [003 01-14 11:45:30.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org1.example.com | [004 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer0.org1.example.com | [005 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer0.org1.example.com | [006 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer0.org1.example.com | [007 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org1.example.com | [008 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org1.example.com | [009 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org1.example.com | [00a 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer0.org1.example.com | [00b 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org1.example.com | [00c 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org1.example.com | [00d 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer0.org1.example.com | [00e 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org1.example.com | [00f 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer0.org1.example.com | [010 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer0.org1.example.com | [011 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer0.org1.example.com | [012 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer0.org1.example.com | [013 01-14 11:45:30.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org1.example.com | [014 01-14 11:45:30.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org1.example.com | [015 01-14 11:45:30.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer0.org1.example.com | [016 01-14 11:45:30.12 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer0.org1.example.com | [017 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [018 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer0.org1.example.com | [019 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer0.org1.example.com | [01a 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +peer0.org1.example.com | [01b 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +peer0.org1.example.com | [01c 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org1.example.com | [01d 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer0.org1.example.com | [01e 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 +peer0.org1.example.com | [01f 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer0.org1.example.com | [020 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org1.example.com | [021 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer0.org1.example.com | [022 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org1.example.com | [023 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org1.example.com | [024 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org1.example.com | [025 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer0.org1.example.com | [026 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org1.example.com | [027 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org1.example.com | [028 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org1.example.com | [029 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [02a 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [02b 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [02c 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +peer0.org1.example.com | [02d 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [02e 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [001 01-14 11:45:29.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org2.example.com | Version: 1.0.2 +peer0.org2.example.com | Go version: go1.9 +peer0.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | Chaincode: +peer0.org2.example.com | Base Image Version: 0.3.2 +peer0.org1.example.com | [02f 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | Base Docker Namespace: hyperledger +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | Docker Namespace: hyperledger +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | +peer0.org2.example.com | [002 01-14 11:45:29.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +peer0.org2.example.com | [003 01-14 11:45:29.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [004 01-14 11:45:29.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer0.org2.example.com | [005 01-14 11:45:29.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer0.org2.example.com | [006 01-14 11:45:29.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer0.org2.example.com | [007 01-14 11:45:29.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org2.example.com | [008 01-14 11:45:29.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org2.example.com | [009 01-14 11:45:29.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org2.example.com | [00a 01-14 11:45:29.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer0.org2.example.com | [00b 01-14 11:45:29.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org2.example.com | [00c 01-14 11:45:29.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org2.example.com | [00d 01-14 11:45:29.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer0.org2.example.com | [00e 01-14 11:45:29.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org2.example.com | [00f 01-14 11:45:29.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer0.org2.example.com | [010 01-14 11:45:29.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer0.org2.example.com | [011 01-14 11:45:29.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer0.org2.example.com | [012 01-14 11:45:29.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer0.org2.example.com | [013 01-14 11:45:29.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org2.example.com | [014 01-14 11:45:29.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org2.example.com | [015 01-14 11:45:29.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer0.org2.example.com | [016 01-14 11:45:29.34 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer0.org2.example.com | [017 01-14 11:45:29.35 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org2.example.com | [018 01-14 11:45:29.35 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer0.org2.example.com | [019 01-14 11:45:29.35 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer0.org2.example.com | [01a 01-14 11:45:29.35 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +peer0.org2.example.com | [01b 01-14 11:45:29.35 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +peer0.org2.example.com | [01c 01-14 11:45:29.35 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org2.example.com | [01d 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer0.org2.example.com | [01e 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org2.example.com:7052 +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k +peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc +peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l +peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== +peer0.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [030 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [031 01-14 11:45:30.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [032 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [033 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [034 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k +peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc +peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l +peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== +peer0.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [035 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} incTime is 1515930330174727564 +peer0.org1.example.com | [036 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} +peer0.org1.example.com | [037 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [038 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org1.example.com | [039 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABKqfdWF/oY+2ymqjk+AlBN+RBThxPp/k +peer0.org1.example.com | lU+BhmGArpnlGNd7iT6pil/iSDtfA5xZ9we5NIfTehFqmZcI6g1N172jTTBLMA4G +peer0.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc +peer0.org1.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l +peer0.org1.example.com | 05n0MbLw/Ug3egJ3JA== +peer0.org1.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [03a 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [03b 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [03c 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [03d 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [03e 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2043397C6BE2657BAA...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | [03f 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 69B0B99854ABC12C15CEC60EABCF9E5C3A71C9284F1136F83AF170B4B7A7CAB3 +peer0.org1.example.com | [040 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=e97372cd-4ec9-4566-8d5e-52b2afc14c5f,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer0.org1.example.com | [041 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +peer0.org1.example.com | [042 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [043 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [044 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [045 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [046 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 +peer0.org2.example.com | [01f 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer0.org2.example.com | [020 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org2.example.com | [021 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer0.org2.example.com | [022 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org2.example.com | [023 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org2.example.com | [024 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org2.example.com | [025 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer0.org2.example.com | [026 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org2.example.com | [027 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org2.example.com | [028 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org2.example.com | [029 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [02a 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [02b 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [02c 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] +peer0.org2.example.com | [02d 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [02e 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [02f 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D +peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [030 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [031 01-14 11:45:29.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [032 01-14 11:45:29.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [033 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [034 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D +peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [047 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +peer0.org1.example.com | [048 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +peer0.org1.example.com | [049 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +peer0.org1.example.com | [04a 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +peer0.org1.example.com | [04b 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [04c 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +peer0.org1.example.com | [04d 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org1.example.com | [04e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [04f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [050 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org1.example.com | [051 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: E0B2CB369971E5FB676BC3CE19ED8E0121611AE9BB191DA46EDC41FB16A5F1F9 +peer0.org1.example.com | [052 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [053 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [054 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +peer0.org1.example.com | [055 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +peer0.org1.example.com | [056 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [057 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org1.example.com | [058 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +peer0.org1.example.com | [059 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [05a 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [05b 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +peer0.org1.example.com | [05c 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [05d 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +peer0.org1.example.com | [05e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [05f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [060 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [061 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [062 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +peer0.org1.example.com | [063 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [064 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [065 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [066 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [067 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [068 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +peer0.org1.example.com | [069 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [06a 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [06b 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]Move state message READY +peer0.org1.example.com | [06c 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e97372cd]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [06d 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e97372cd]Entered state ready +peer0.org1.example.com | [06e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e97372cd-4ec9-4566-8d5e-52b2afc14c5f +peer0.org1.example.com | [06f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]sending state message READY +peer0.org1.example.com | [070 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [071 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [073 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [072 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Received message READY from shim +peer0.org1.example.com | [075 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e97372cd]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [074 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org1.example.com | [076 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e97372cd]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [077 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [078 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e97372cd]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [079 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]Move state message INIT +peer0.org1.example.com | [07a 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e97372cd]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [07b 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [07c 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]sending state message INIT +peer0.org1.example.com | [07d 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Received message INIT from shim +peer0.org1.example.com | [07e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e97372cd]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [07f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [080 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e97372cd]Received INIT, initializing chaincode +peer0.org1.example.com | [081 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [082 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [083 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Init get response status: 200 +peer0.org1.example.com | [084 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [085 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Move state message COMPLETED +peer0.org1.example.com | [086 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e97372cd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [087 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]send state message COMPLETED +peer0.org1.example.com | [088 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]Received message COMPLETED from shim +peer0.org1.example.com | [089 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e97372cd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [08a 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e97372cd-4ec9-4566-8d5e-52b2afc14c5f]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [08b 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e97372cd-4ec9-4566-8d5e-52b2afc14c5f +peer0.org1.example.com | [08c 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [08d 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [08e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=4c4d1096-e875-4d04-938b-93edf478417b,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer0.org1.example.com | [08f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +peer0.org1.example.com | [090 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [091 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [092 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer0.org1.example.com | [093 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [094 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [095 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +peer0.org1.example.com | [096 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +peer0.org1.example.com | [097 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +peer0.org1.example.com | [098 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +peer0.org1.example.com | [099 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +peer0.org1.example.com | [09a 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [09c 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [09b 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +peer0.org1.example.com | [09d 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [09e 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +peer0.org1.example.com | [09f 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [0a0 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0a1 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [0a2 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [0a3 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +peer0.org1.example.com | [0a4 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [0a5 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [035 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org2.example.com:7051 [] [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] peer0.org2.example.com:7051} incTime is 1515930329380823264 +peer0.org2.example.com | [036 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org2.example.com:7051 [] [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] peer0.org2.example.com:7051} +peer0.org2.example.com | [037 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [038 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [039 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D +peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [03a 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [03b 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [03c 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [03d 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [03e 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20122F5FC09C3DAD3F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org2.example.com | [03f 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 57085B15048F457A96ECEF4045625EBF83CC3E2BBC2AB42A60296E223E61FD79 +peer0.org2.example.com | [040 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=c4378c78-ea8c-4808-af0d-5ca58663a38c,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer0.org2.example.com | [041 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +peer0.org2.example.com | [042 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [043 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [044 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [045 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [046 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [047 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +peer0.org2.example.com | [048 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +peer0.org2.example.com | [049 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +peer0.org2.example.com | [04a 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +peer0.org2.example.com | [04b 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started +peer0.org2.example.com | [04d 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [04c 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org2.example.com | [04e 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +peer0.org2.example.com | [04f 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [050 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [051 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org2.example.com | [052 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [053 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [054 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer0.org2.example.com | [055 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 2EF8A396922F2C87AB86ED59A7019AA3FC7D9DCD41FFD08FD5F436F6D95DEEF2 +peer0.org2.example.com | [056 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [057 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [058 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 +peer0.org2.example.com | [059 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 +peer0.org2.example.com | [05a 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +peer0.org2.example.com | [05b 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [05c 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +peer0.org2.example.com | [05d 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [05e 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [05f 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [060 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [061 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +peer0.org2.example.com | [062 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [063 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [064 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [0a6 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [0a8 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [0a9 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [0a7 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +peer0.org1.example.com | [0aa 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [0ab 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0ac 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]Move state message READY +peer0.org1.example.com | [0ad 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4c4d1096]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [0ae 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4c4d1096]Entered state ready +peer0.org1.example.com | [0af 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4c4d1096-e875-4d04-938b-93edf478417b +peer0.org1.example.com | [0b1 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [0b2 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [0b3 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [0b4 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [0b5 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4c4d1096]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [0b6 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [0b7 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4c4d1096]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [0b0 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]sending state message READY +peer0.org1.example.com | [0b8 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]Move state message INIT +peer0.org1.example.com | [0ba 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4c4d1096]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [065 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [066 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [067 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +peer0.org2.example.com | [068 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [069 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [06a 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4378c78]Move state message READY +peer1.org2.example.com | [001 01-14 11:45:29.08 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer1.org2.example.com | Version: 1.0.2 +peer1.org2.example.com | Go version: go1.9 +peer1.org2.example.com | OS/Arch: linux/amd64 +peer1.org2.example.com | Chaincode: +peer1.org2.example.com | Base Image Version: 0.3.2 +peer1.org2.example.com | Base Docker Namespace: hyperledger +peer1.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer1.org2.example.com | Docker Namespace: hyperledger +peer1.org1.example.com | [001 01-14 11:45:28.68 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org2.example.com | [06b 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4378c78]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [0b9 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Received message READY from shim +peer1.org2.example.com | +peer1.org1.example.com | Version: 1.0.2 +peer0.org2.example.com | [06c 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c4378c78]Entered state ready +peer0.org2.example.com | [06d 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c4378c78-ea8c-4808-af0d-5ca58663a38c +peer0.org2.example.com | [06e 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4378c78]sending state message READY +peer0.org2.example.com | [06f 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4378c78]Received message READY from shim +peer0.org2.example.com | [070 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4378c78]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [071 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [072 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [073 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [074 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org2.example.com | [075 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c4378c78]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [076 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [077 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c4378c78]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [078 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4378c78]Move state message INIT +peer0.org2.example.com | [079 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4378c78]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [07a 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [07b 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4378c78]sending state message INIT +peer1.org1.example.com | Go version: go1.9 +peer0.org2.example.com | [07c 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4378c78]Received message INIT from shim +peer1.org2.example.com | [002 01-14 11:45:29.08 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +peer1.org2.example.com | [003 01-14 11:45:29.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer1.org2.example.com | [004 01-14 11:45:29.08 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer1.org2.example.com | [005 01-14 11:45:29.08 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer1.org2.example.com | [006 01-14 11:45:29.08 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer1.org2.example.com | [007 01-14 11:45:29.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org2.example.com | [008 01-14 11:45:29.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org2.example.com | [009 01-14 11:45:29.09 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer1.org2.example.com | [00a 01-14 11:45:29.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer1.org2.example.com | [00b 01-14 11:45:29.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org2.example.com | [00c 01-14 11:45:29.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer1.org2.example.com | [00d 01-14 11:45:29.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer1.org2.example.com | [00e 01-14 11:45:29.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer1.org2.example.com | [00f 01-14 11:45:29.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer1.org2.example.com | [010 01-14 11:45:29.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer1.org2.example.com | [011 01-14 11:45:29.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer1.org2.example.com | [012 01-14 11:45:29.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer1.org2.example.com | [013 01-14 11:45:29.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org1.example.com | [0bc 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c4d1096]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | [07d 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4378c78]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | Chaincode: +peer1.org1.example.com | Base Image Version: 0.3.2 +peer1.org1.example.com | Base Docker Namespace: hyperledger +peer1.org1.example.com | Base Docker Label: org.hyperledger.fabric +peer1.org1.example.com | Docker Namespace: hyperledger +peer1.org1.example.com | +peer1.org1.example.com | [002 01-14 11:45:28.68 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +peer1.org1.example.com | [003 01-14 11:45:28.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer1.org1.example.com | [004 01-14 11:45:28.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer1.org1.example.com | [005 01-14 11:45:28.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer1.org1.example.com | [006 01-14 11:45:28.69 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer1.org1.example.com | [007 01-14 11:45:28.69 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org1.example.com | [008 01-14 11:45:28.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org2.example.com | [07e 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [0bb 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [0bd 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]sending state message INIT +peer0.org2.example.com | [07f 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c4378c78]Received INIT, initializing chaincode +peer0.org1.example.com | [0be 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Received message INIT from shim +peer1.org1.example.com | [009 01-14 11:45:28.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer1.org2.example.com | [014 01-14 11:45:29.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer0.org2.example.com | [080 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [0bf 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c4d1096]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [00a 01-14 11:45:28.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +peer1.org1.example.com | [00b 01-14 11:45:28.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org2.example.com | [015 01-14 11:45:29.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer0.org2.example.com | [081 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0c0 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [082 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4378c78]Init get response status: 200 +peer0.org1.example.com | [0c1 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4c4d1096]Received INIT, initializing chaincode +peer1.org1.example.com | [00c 01-14 11:45:28.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer1.org2.example.com | [016 01-14 11:45:29.12 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer0.org2.example.com | [083 01-14 11:45:29.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4378c78]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [0c2 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [00d 01-14 11:45:28.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer1.org2.example.com | [017 01-14 11:45:29.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org2.example.com | [084 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4378c78]Move state message COMPLETED +peer0.org1.example.com | [0c3 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Init get response status: 200 +peer1.org1.example.com | [00e 01-14 11:45:28.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer1.org2.example.com | [018 01-14 11:45:29.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer1.org1.example.com | [00f 01-14 11:45:28.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +peer1.org1.example.com | [010 01-14 11:45:28.71 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer1.org1.example.com | [011 01-14 11:45:28.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer0.org1.example.com | [0c4 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [085 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c4378c78]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [0c5 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Move state message COMPLETED +peer0.org1.example.com | [0c6 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c4d1096]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [0c7 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]send state message COMPLETED +peer0.org1.example.com | [0c8 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]Received message COMPLETED from shim +peer1.org1.example.com | [012 01-14 11:45:28.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer1.org1.example.com | [013 01-14 11:45:28.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +peer0.org2.example.com | [086 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c4378c78]send state message COMPLETED +peer0.org2.example.com | [087 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c4378c78]Received message COMPLETED from shim +peer0.org2.example.com | [088 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4378c78]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0c9 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4c4d1096]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0ca 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4c4d1096-e875-4d04-938b-93edf478417b]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [0cb 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4c4d1096-e875-4d04-938b-93edf478417b +peer0.org1.example.com | [0cc 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [0cd 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [0ce 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=13c86352-2bad-44f6-8edd-2fdb7eb8b658,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer0.org1.example.com | [0cf 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +peer1.org1.example.com | [014 01-14 11:45:28.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer1.org1.example.com | [015 01-14 11:45:28.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer1.org1.example.com | [016 01-14 11:45:28.72 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +peer1.org1.example.com | [017 01-14 11:45:28.73 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org1.example.com | [018 01-14 11:45:28.73 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +peer1.org1.example.com | [019 01-14 11:45:28.73 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +orderer.example.com | 2018-01-14 11:45:28.113 UTC [orderer/main] main -> INFO 001 Starting orderer: +peer1.org2.example.com | [019 01-14 11:45:29.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer1.org2.example.com | [01a 01-14 11:45:29.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +peer1.org2.example.com | [01b 01-14 11:45:29.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +peer0.org1.example.com | [0d0 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [0d1 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [01a 01-14 11:45:28.73 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +peer1.org1.example.com | [01b 01-14 11:45:28.73 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER orderer.example.com | Version: 1.0.2 -peer1.org1.example.com | [06f 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:6a8cea96-3ccc-48c2-ba25-200fd472b16e -peer1.org2.example.com | [05d 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -peer0.org1.example.com | [086 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b4bc9d1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [01c 01-14 11:45:29.13 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org2.example.com | [01d 01-14 11:45:29.16 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +peer0.org1.example.com | [0d2 01-14 11:45:30.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: escc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer1.org1.example.com | [01c 01-14 11:45:28.73 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started orderer.example.com | Go version: go1.7.5 -peer1.org1.example.com | [070 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6a8cea96]sending state message READY -peer1.org2.example.com | [05e 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [087 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]send state message COMPLETED +peer0.org2.example.com | [089 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c4378c78-ea8c-4808-af0d-5ca58663a38c]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [01d 01-14 11:45:28.74 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s orderer.example.com | OS/Arch: linux/amd64 -peer1.org1.example.com | [071 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6a8cea96]Received message READY from shim -peer0.org1.example.com | [088 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:54.223 UTC [orderer/main] initializeSecureServerConfig -> INFO 002 Starting orderer with TLS enabled -peer1.org1.example.com | [072 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6a8cea96]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | 2018-01-04 01:50:54.247 UTC [bccsp_sw] openKeyStore -> DEBU 003 KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -peer1.org2.example.com | [05f 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [089 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b4bc9d1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [074 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/common/flogging] resetAddrConn.resetTransport.Printf.Printf -> DEBU grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: Error while dialing dial tcp 172.22.0.6:7051: getsockopt: connection refused"; Reconnecting to {peer0.org1.example.com:7051 } -orderer.example.com | 2018-01-04 01:50:54.247 UTC [bccsp] initBCCSP -> DEBU 004 Initialize BCCSP [SW] -peer0.org1.example.com | [08a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b4bc9d1-dfcd-4a4e-90a9-28101c0d0967]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [073 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-04 01:50:54.247 UTC [msp] getPemMaterialFromDir -> DEBU 005 Reading directory /var/hyperledger/orderer/msp/signcerts -peer0.org2.example.com | [001 01-04 01:50:56.75 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | [060 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [08b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7b4bc9d1-dfcd-4a4e-90a9-28101c0d0967 -peer1.org1.example.com | [075 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | 2018-01-04 01:50:54.251 UTC [msp] getPemMaterialFromDir -> DEBU 006 Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -peer0.org2.example.com | Version: 1.0.2 -peer1.org2.example.com | [061 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [062 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -peer1.org1.example.com | [076 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:54.253 UTC [msp] getPemMaterialFromDir -> DEBU 007 Reading directory /var/hyperledger/orderer/msp/cacerts -peer0.org1.example.com | [08c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | Go version: go1.9 -peer1.org1.example.com | [077 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:54.255 UTC [msp] getPemMaterialFromDir -> DEBU 008 Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -peer0.org1.example.com | [08d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | [063 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -peer1.org1.example.com | [078 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6a8cea96]Inside sendExecuteMessage. Message INIT -orderer.example.com | 2018-01-04 01:50:54.258 UTC [msp] getPemMaterialFromDir -> DEBU 009 Reading directory /var/hyperledger/orderer/msp/admincerts -peer0.org1.example.com | [08e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=a5699316-2e9e-45cd-a746-d6dd8685a54a,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer0.org2.example.com | Chaincode: -peer1.org1.example.com | [079 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:54.260 UTC [msp] getPemMaterialFromDir -> DEBU 00a Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -peer1.org2.example.com | [064 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | Base Image Version: 0.3.2 -orderer.example.com | 2018-01-04 01:50:54.262 UTC [msp] getPemMaterialFromDir -> DEBU 00b Reading directory /var/hyperledger/orderer/msp/intermediatecerts -peer0.org1.example.com | [08f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -peer0.org2.example.com | Base Docker Namespace: hyperledger -orderer.example.com | 2018-01-04 01:50:54.262 UTC [msp] getMspConfig -> DEBU 00c Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -peer0.org1.example.com | [090 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [07a 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6a8cea96]sendExecuteMsg trigger event INIT -peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric -orderer.example.com | 2018-01-04 01:50:54.262 UTC [msp] getPemMaterialFromDir -> DEBU 00d Reading directory /var/hyperledger/orderer/msp/tlscacerts -peer1.org1.example.com | [07b 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6a8cea96]Move state message INIT -peer1.org2.example.com | [065 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -orderer.example.com | 2018-01-04 01:50:54.264 UTC [msp] getPemMaterialFromDir -> DEBU 00e Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -peer0.org2.example.com | Docker Namespace: hyperledger -orderer.example.com | 2018-01-04 01:50:54.265 UTC [msp] getPemMaterialFromDir -> DEBU 00f Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -peer0.org1.example.com | [091 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [07c 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6a8cea96]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | -orderer.example.com | 2018-01-04 01:50:54.266 UTC [msp] getMspConfig -> DEBU 010 TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -peer0.org1.example.com | [092 01-04 01:50:56.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: lscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -peer0.org1.example.com | [093 01-04 01:50:56.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 -peer1.org1.example.com | [07d 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [002 01-04 01:50:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -orderer.example.com | 2018-01-04 01:50:54.266 UTC [msp] getPemMaterialFromDir -> DEBU 011 Reading directory /var/hyperledger/orderer/msp/crls -peer1.org2.example.com | [066 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | 2018-01-04 01:50:54.266 UTC [msp] getMspConfig -> DEBU 012 crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -peer0.org1.example.com | [094 01-04 01:50:56.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: -peer1.org1.example.com | [07e 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6a8cea96]sending state message INIT -peer0.org2.example.com | [003 01-04 01:50:56.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org2.example.com | [067 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 2018-01-04 01:50:54.266 UTC [msp] getMspConfig -> DEBU 013 MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 -peer0.org2.example.com | [004 01-04 01:50:56.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org1.example.com | [07f 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6a8cea96]Received message INIT from shim -orderer.example.com | 2018-01-04 01:50:54.267 UTC [msp] NewBccspMsp -> DEBU 014 Creating BCCSP-based MSP instance -peer1.org2.example.com | [068 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [005 01-04 01:50:56.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -orderer.example.com | 2018-01-04 01:50:54.267 UTC [msp] GetLocalMSP -> DEBU 015 Created new local MSP -peer1.org1.example.com | [080 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6a8cea96]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | [069 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [006 01-04 01:50:56.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -orderer.example.com | 2018-01-04 01:50:54.267 UTC [msp] Setup -> DEBU 016 Setting up MSP instance OrdererMSP -peer1.org1.example.com | [081 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [007 01-04 01:50:56.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org2.example.com | [06a 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:54.267 UTC [msp/identity] newIdentity -> DEBU 017 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [095 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -peer0.org2.example.com | [008 01-04 01:50:56.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org2.example.com | [009 01-04 01:50:56.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer1.org2.example.com | [01e 01-14 11:45:29.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org2.example.com:7052 +peer0.org1.example.com | [0d3 01-14 11:45:30.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 +peer1.org1.example.com | [01e 01-14 11:45:28.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer1.org1.example.com:7052 +peer0.org2.example.com | [08a 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c4378c78-ea8c-4808-af0d-5ca58663a38c +peer0.org2.example.com | [08b 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [08c 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [08d 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=78d016e5-e27a-4d57-8f53-d72d061b7623,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer0.org2.example.com | [08e 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +peer0.org2.example.com | [08f 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [090 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [091 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [092 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [093 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | 2018-01-14 11:45:28.124 UTC [orderer/main] initializeSecureServerConfig -> INFO 002 Starting orderer with TLS enabled +orderer.example.com | 2018-01-14 11:45:28.162 UTC [bccsp_sw] openKeyStore -> DEBU 003 KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +orderer.example.com | 2018-01-14 11:45:28.162 UTC [bccsp] initBCCSP -> DEBU 004 Initialize BCCSP [SW] +peer1.org2.example.com | [01f 01-14 11:45:29.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [0d4 01-14 11:45:30.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 env: +peer1.org1.example.com | [01f 01-14 11:45:28.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +orderer.example.com | 2018-01-14 11:45:28.163 UTC [msp] getPemMaterialFromDir -> DEBU 005 Reading directory /var/hyperledger/orderer/msp/signcerts +peer1.org2.example.com | [020 01-14 11:45:29.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.167 UTC [msp] getPemMaterialFromDir -> DEBU 006 Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +peer1.org1.example.com | [020 01-14 11:45:28.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [021 01-14 11:45:29.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +orderer.example.com | 2018-01-14 11:45:28.170 UTC [msp] getPemMaterialFromDir -> DEBU 007 Reading directory /var/hyperledger/orderer/msp/cacerts +peer1.org1.example.com | [021 01-14 11:45:28.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +peer1.org2.example.com | [022 01-14 11:45:29.16 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-14 11:45:28.174 UTC [msp] getPemMaterialFromDir -> DEBU 008 Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +peer1.org2.example.com | [023 01-14 11:45:29.16 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +orderer.example.com | 2018-01-14 11:45:28.177 UTC [msp] getPemMaterialFromDir -> DEBU 009 Reading directory /var/hyperledger/orderer/msp/admincerts +peer0.org2.example.com | [094 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +orderer.example.com | 2018-01-14 11:45:28.180 UTC [msp] getPemMaterialFromDir -> DEBU 00a Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +peer1.org1.example.com | [022 01-14 11:45:28.74 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [024 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +orderer.example.com | 2018-01-14 11:45:28.184 UTC [msp] getPemMaterialFromDir -> DEBU 00b Reading directory /var/hyperledger/orderer/msp/intermediatecerts +peer0.org2.example.com | [095 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +peer1.org2.example.com | [025 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer1.org1.example.com | [023 01-14 11:45:28.74 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +orderer.example.com | 2018-01-14 11:45:28.185 UTC [msp] getMspConfig -> DEBU 00c Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +peer1.org2.example.com | [026 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | 2018-01-14 11:45:28.185 UTC [msp] getPemMaterialFromDir -> DEBU 00d Reading directory /var/hyperledger/orderer/msp/tlscacerts +peer1.org1.example.com | [024 01-14 11:45:28.74 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org2.example.com | [027 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +peer0.org2.example.com | [096 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-14 11:45:28.187 UTC [msp] getPemMaterialFromDir -> DEBU 00e Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +peer1.org2.example.com | [028 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org1.example.com | [025 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +orderer.example.com | 2018-01-14 11:45:28.190 UTC [msp] getPemMaterialFromDir -> DEBU 00f Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +peer1.org2.example.com | [029 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0d5 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +orderer.example.com | 2018-01-14 11:45:28.191 UTC [msp] getMspConfig -> DEBU 010 TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +peer1.org1.example.com | [026 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +peer0.org2.example.com | [097 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +peer1.org2.example.com | [02a 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0d6 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +orderer.example.com | 2018-01-14 11:45:28.191 UTC [msp] getPemMaterialFromDir -> DEBU 011 Reading directory /var/hyperledger/orderer/msp/crls +peer1.org2.example.com | [02b 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [0d7 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +peer0.org2.example.com | [098 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +peer1.org1.example.com | [027 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +orderer.example.com | 2018-01-14 11:45:28.191 UTC [msp] getMspConfig -> DEBU 012 crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +peer1.org2.example.com | [02c 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] +peer1.org1.example.com | [028 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org2.example.com | [099 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-14 11:45:28.191 UTC [msp] getMspConfig -> DEBU 013 MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +peer1.org2.example.com | [02d 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0d8 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +peer1.org1.example.com | [029 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:28.192 UTC [msp] NewBccspMsp -> DEBU 014 Creating BCCSP-based MSP instance +peer1.org2.example.com | [02e 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [09a 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [02a 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:28.192 UTC [msp] GetLocalMSP -> DEBU 015 Created new local MSP +peer1.org2.example.com | [02f 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [0d9 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +peer0.org2.example.com | [09b 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +orderer.example.com | 2018-01-14 11:45:28.192 UTC [msp] Setup -> DEBU 016 Setting up MSP instance OrdererMSP +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [02b 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [0da 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | 2018-01-14 11:45:28.192 UTC [msp/identity] newIdentity -> DEBU 017 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [09c 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [0db 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [02c 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer1.org1.example.com:7051 and bootstrap set [peer0.org1.example.com:7051] orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [09d 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +peer0.org1.example.com | [0dc 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [02d 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer0.org2.example.com | [00a 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -peer0.org2.example.com | [00b 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org2.example.com | [00c 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org2.example.com | [00d 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [0dd 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +peer0.org1.example.com | [0de 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [0df 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0e0 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org1.example.com | [0e1 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [0e2 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [0e3 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 +peer0.org1.example.com | [0e4 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [0e6 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [0e7 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [0e8 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [09e 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [02e 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org1.example.com | [082 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6a8cea96]Received INIT, initializing chaincode -peer1.org1.example.com | [083 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [00e 01-04 01:50:56.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org2.example.com | [00f 01-04 01:50:56.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -peer0.org2.example.com | [010 01-04 01:50:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer0.org1.example.com | [0e5 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [09f 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer1.org1.example.com | [02f 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [0e9 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org2.example.com | [0a0 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org1.example.com | [0ea 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | [0a1 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer0.org2.example.com | [011 01-04 01:50:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -peer0.org2.example.com | [012 01-04 01:50:56.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer0.org2.example.com | [013 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -peer0.org2.example.com | [014 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 +peer0.org1.example.com | [0eb 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer0.org2.example.com | [0a2 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.268 UTC [msp/identity] newIdentity -> DEBU 018 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== +peer0.org2.example.com | [0a3 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [0a4 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [0ec 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]Move state message READY +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [030 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [031 01-14 11:45:29.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:28.192 UTC [msp/identity] newIdentity -> DEBU 018 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [015 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -peer0.org2.example.com | [016 01-04 01:50:56.79 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -peer0.org2.example.com | [017 01-04 01:50:56.82 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [06b 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c50288ea]Move state message READY +peer0.org2.example.com | [0a5 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [0a6 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0a7 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org2.example.com | [0a8 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [0a9 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +peer0.org2.example.com | [0aa 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [0ab 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0ac 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78d016e5]Move state message READY +peer0.org2.example.com | [0ad 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [78d016e5]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [0ae 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [78d016e5]Entered state ready +peer0.org2.example.com | [0af 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:78d016e5-e27a-4d57-8f53-d72d061b7623 +peer0.org2.example.com | [0b0 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78d016e5]sending state message READY +peer0.org1.example.com | [0ed 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13c86352]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [032 01-14 11:45:29.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [0b1 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78d016e5]Received message READY from shim +peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [018 01-04 01:50:56.85 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -peer0.org2.example.com | [019 01-04 01:50:56.85 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer0.org1.example.com | [096 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +peer1.org2.example.com | [033 01-14 11:45:29.19 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [034 01-14 11:45:29.19 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [0b2 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [78d016e5]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [0b3 01-14 11:45:29.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 orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [01a 01-04 01:50:56.85 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -peer1.org1.example.com | [084 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [06c 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c50288ea]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [06d 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c50288ea]Entered state ready -peer0.org1.example.com | [097 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [01b 01-04 01:50:56.85 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -peer1.org1.example.com | [085 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6a8cea96]Init get response status: 200 -peer1.org1.example.com | [086 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6a8cea96]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [087 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6a8cea96]Move state message COMPLETED +peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq +peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI +peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [030 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [031 01-14 11:45:28.75 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [032 01-14 11:45:28.76 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0ee 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [13c86352]Entered state ready +peer0.org1.example.com | [0ef 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:13c86352-2bad-44f6-8edd-2fdb7eb8b658 +peer0.org2.example.com | [0b4 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org2.example.com | [01c 01-04 01:50:56.85 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [06e 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c50288ea-8b1a-4102-b785-c02a7b3744d8 -peer0.org1.example.com | [098 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [01d 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -peer0.org2.example.com | [01e 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org2.example.com:7052 -peer0.org2.example.com | [01f 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -peer0.org2.example.com | [020 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +peer0.org1.example.com | [0f0 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]sending state message READY +peer1.org1.example.com | [033 01-14 11:45:28.76 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [0b5 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [0f2 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Received message READY from shim +peer1.org1.example.com | [034 01-14 11:45:28.77 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA +peer0.org2.example.com | [0b6 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org1.example.com | [0f3 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13c86352]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G +peer0.org2.example.com | [0b7 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [78d016e5]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0b8 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0b9 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [78d016e5]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0ba 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78d016e5]Move state message INIT +peer0.org2.example.com | [0bb 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [78d016e5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [0bc 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0bd 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78d016e5]sending state message INIT +peer0.org2.example.com | [0be 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78d016e5]Received message INIT from shim +peer0.org2.example.com | [0bf 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [78d016e5]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [0c0 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [0c1 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [78d016e5]Received INIT, initializing chaincode +peer0.org2.example.com | [0c2 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [0c3 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78d016e5]Init get response status: 200 +peer0.org2.example.com | [0c4 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78d016e5]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0c5 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78d016e5]Move state message COMPLETED +peer0.org2.example.com | [0c6 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [78d016e5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [0c7 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [78d016e5]send state message COMPLETED +peer0.org2.example.com | [0c8 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [78d016e5]Received message COMPLETED from shim +peer0.org2.example.com | [0c9 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [78d016e5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [0ca 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [78d016e5-e27a-4d57-8f53-d72d061b7623]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [0cb 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:78d016e5-e27a-4d57-8f53-d72d061b7623 +peer0.org2.example.com | [0cc 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [0cd 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [0ce 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=8d4660b1-39ad-4c2c-b231-4bcd1e1f17ad,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer0.org2.example.com | [0cf 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +peer0.org2.example.com | [0d0 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [0d1 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [0d2 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer0.org2.example.com | [0d3 01-14 11:45:29.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [0f1 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.268 UTC [msp/identity] newIdentity -> DEBU 019 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [021 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -peer1.org1.example.com | [088 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6a8cea96]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [089 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6a8cea96]send state message COMPLETED -peer1.org1.example.com | [08a 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6a8cea96]Received message COMPLETED from shim -peer1.org2.example.com | [070 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | 2018-01-14 11:45:28.193 UTC [msp/identity] newIdentity -> DEBU 019 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [0f4 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [0d4 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [022 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -peer0.org2.example.com | [023 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org2.example.com | [024 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org2.example.com | [025 01-04 01:50:56.86 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 +peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [0f5 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq +peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI +peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [035 01-14 11:45:28.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org1.example.com:7051 [] [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] peer1.org1.example.com:7051} incTime is 1515930328772250564 +peer1.org1.example.com | [036 01-14 11:45:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org1.example.com:7051 [] [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] peer1.org1.example.com:7051} +peer1.org1.example.com | [037 01-14 11:45:28.77 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [0f6 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [026 01-04 01:50:56.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 -peer0.org2.example.com | [027 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -peer0.org2.example.com | [028 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org2.example.com | [029 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [038 01-14 11:45:28.77 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | -----END CERTIFICATE----- orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [039 01-14 11:45:28.77 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | MIICGTCCAcCgAwIBAgIRAP//zqWKYzSHLW7GfxKsMZYwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [035 01-14 11:45:29.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer1.org2.example.com:7051 [] [144 119 48 161 152 16 111 55 135 212 104 153 242 128 107 239 162 108 100 105 229 13 64 139 107 78 122 75 126 238 20 116] peer1.org2.example.com:7051} incTime is 1515930329196204764 orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org1.example.com | [0f7 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [13c86352]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [0f8 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [036 01-14 11:45:29.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer1.org2.example.com:7051 [] [144 119 48 161 152 16 111 55 135 212 104 153 242 128 107 239 162 108 100 105 229 13 64 139 107 78 122 75 126 238 20 116] peer1.org2.example.com:7051} +peer1.org2.example.com | [037 01-14 11:45:29.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMkhzyzkBQMmDIFIj+Dmnud+j7/3h/LM +peer1.org1.example.com | sUwFjL4AqbRBEG6vNDX4lF1jwBBt39uJxvOBL2wKymZ0rY/LVNK4vumjTTBLMA4G +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org1.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIB1/N1vq +peer0.org1.example.com | [0f9 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [13c86352]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [0fa 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]Move state message INIT +peer0.org2.example.com | [0d5 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +peer1.org1.example.com | NZ8srg0DN/kZsRGGbGxZDd6SUmUSPGopEZ+BAiAFLGQc/nVZ7H9e3TOSPWkj9xXI +peer1.org2.example.com | [038 01-14 11:45:29.19 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org2.example.com | [02a 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [02b 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [02c 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org2.example.com:7051 and bootstrap set [peer0.org2.example.com:7051] -peer0.org2.example.com | [02d 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [0fb 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13c86352]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | zBwtXbaE2rpu1wCNZg== orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org2.example.com | [039 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org1.example.com | [0fc 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0d6 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.269 UTC [msp/identity] newIdentity -> DEBU 01a Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [02e 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [02f 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [03a 01-14 11:45:28.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | 2018-01-14 11:45:28.193 UTC [msp/identity] newIdentity -> DEBU 01a Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [0fd 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]sending state message INIT +peer0.org2.example.com | [0d7 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +peer1.org1.example.com | [03b 01-14 11:45:28.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [03c 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [0fe 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Received message INIT from shim +peer0.org1.example.com | [0ff 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13c86352]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [100 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [101 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [13c86352]Received INIT, initializing chaincode +peer0.org1.example.com | [102 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [103 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Init get response status: 200 +peer0.org2.example.com | [0d8 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +peer0.org2.example.com | [0d9 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +peer0.org2.example.com | [0da 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [104 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Init succeeded. Sending COMPLETED +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org1.example.com | [03d 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [03e 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [03f 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [040 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2029D4719B6F3CFD98...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | [041 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 67B5A06203E1924331C334A5346029B42E35CDE66A3C99C448068A0EC421F682 +peer1.org1.example.com | [042 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started +peer1.org1.example.com | [043 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org1.example.com | [044 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [045 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [046 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [047 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: D9E0DA089A9E8DB49B3FA19CA2E41D5366507FC85CDB9AE9891F50EB0D0E153E +peer0.org2.example.com | [0db 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [105 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Move state message COMPLETED +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA +peer0.org2.example.com | [0dc 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +peer0.org1.example.com | [106 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13c86352]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +peer1.org1.example.com | [048 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G +peer0.org2.example.com | [0dd 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [0de 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +peer0.org2.example.com | [0df 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0e0 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [0e1 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [0e2 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0e3 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org1.example.com | [049 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | [0e4 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [107 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]send state message COMPLETED +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +peer0.org2.example.com | [0e5 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [04a 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267312E6578616D706C652E636F6D3A37303531 +peer1.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +peer0.org1.example.com | [108 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]Received message COMPLETED from shim +peer1.org1.example.com | [04b 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 5E1207E32E2709D3C49FD6E4E42EA75E054BF7CAB0517372323BB60EB639719F +peer0.org2.example.com | [0e6 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +peer1.org2.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 +peer1.org1.example.com | [04c 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051} +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [109 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13c86352]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | 7xpnfkN/TxNBsS31VA== +peer0.org2.example.com | [0e8 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [04d 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +orderer.example.com | 2018-01-14 11:45:28.196 UTC [bccsp_sw] loadPrivateKey -> DEBU 01b Loading private key [0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e] at [/var/hyperledger/orderer/msp/keystore/0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e_sk]... +peer1.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [0e9 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [10a 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13c86352-2bad-44f6-8edd-2fdb7eb8b658]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:28.198 UTC [msp/identity] newIdentity -> DEBU 01c Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [04e 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=c282b4be-ee3e-49f1-be1a-49bdb8baabec,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer1.org2.example.com | [03a 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [0e7 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [10b 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:13c86352-2bad-44f6-8edd-2fdb7eb8b658 orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [0ea 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [04f 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +peer0.org1.example.com | [10c 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [03b 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [0eb 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [10d 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [08b 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6a8cea96]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [099 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 +peer1.org1.example.com | [050 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [10e 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=818854db-b07a-47b8-a9d4-f4729c5718de,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [03c 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer0.org2.example.com | [0ec 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d4660b1]Move state message READY orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +peer1.org1.example.com | [051 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [10f 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +peer0.org2.example.com | [0ed 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d4660b1]Fabric side Handling ChaincodeMessage of type: READY in state established orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org2.example.com | [03d 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [052 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [110 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU +peer0.org2.example.com | [0ee 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8d4660b1]Entered state ready +peer1.org2.example.com | [03e 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20907730A198106F37...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | [053 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org1.example.com | [111 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer1.org1.example.com | [08c 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6a8cea96-3ccc-48c2-ba25-200fd472b16e]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [071 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [072 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [0ef 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8d4660b1-39ad-4c2c-b231-4bcd1e1f17ad +peer0.org2.example.com | [0f0 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d4660b1]sending state message READY +peer1.org2.example.com | [03f 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: F21BE5B0722E39BF9E0A2FC0299B97E074CFD5C609916BF206F14668BA5F9AAC orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [030 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [031 01-04 01:50:56.87 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [032 01-04 01:50:56.91 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [112 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer1.org1.example.com | [054 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [0f1 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org2.example.com | [0f3 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [0f4 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [0f5 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org2.example.com | [0f6 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8d4660b1]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [0f7 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [0f8 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8d4660b1]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [0f9 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d4660b1]Move state message INIT +peer0.org2.example.com | [0fa 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d4660b1]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [0fb 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [0fc 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d4660b1]sending state message INIT +peer0.org2.example.com | [0f2 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4660b1]Received message READY from shim +peer1.org2.example.com | [040 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=472f4516-8c76-4424-96cc-82c8eb92b6a2,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer1.org2.example.com | [041 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.271 UTC [bccsp_sw] loadPrivateKey -> DEBU 01b Loading private key [0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e] at [/var/hyperledger/orderer/msp/keystore/0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e_sk]... -peer1.org1.example.com | [08d 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6a8cea96-3ccc-48c2-ba25-200fd472b16e -peer1.org1.example.com | [08e 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [033 01-04 01:50:56.91 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -peer0.org2.example.com | [034 01-04 01:50:56.92 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.273 UTC [msp/identity] newIdentity -> DEBU 01c Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [073 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -peer1.org2.example.com | [074 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c50288ea]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [075 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [076 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c50288ea]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [06f 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c50288ea]sending state message READY -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -peer1.org1.example.com | [08f 01-04 01:50:56.11 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [090 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=64b45487-0771-4094-a331-eaa56563e230,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org1.example.com | [091 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -peer1.org2.example.com | [077 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c50288ea]Received message READY from shim -peer1.org2.example.com | [078 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c50288ea]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [079 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c50288ea]Move state message INIT -orderer.example.com | 2018-01-04 01:50:54.274 UTC [msp] Validate -> DEBU 01d MSP OrdererMSP validating identity -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [036 01-04 01:50:56.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [037 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [035 01-04 01:50:56.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org2.example.com:7051 [] [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] peer0.org2.example.com:7051} incTime is 1515030656920966100 -orderer.example.com | 2018-01-04 01:50:54.274 UTC [orderer/main] createLedgerFactory -> DEBU 01e Ledger dir: /var/hyperledger/production/orderer -peer1.org1.example.com | [092 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [09b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [09c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [038 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org2.example.com:7051 [] [18 47 95 192 156 61 173 63 80 232 96 64 91 49 101 242 206 87 32 24 89 4 87 160 47 124 250 124 112 185 123 13] peer0.org2.example.com:7051} -orderer.example.com | 2018-01-04 01:50:54.274 UTC [kvledger.util] CreateDirIfMissing -> DEBU 01f CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -orderer.example.com | 2018-01-04 01:50:54.274 UTC [kvledger.util] logDirStatus -> DEBU 020 Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -orderer.example.com | 2018-01-04 01:50:54.274 UTC [kvledger.util] logDirStatus -> DEBU 021 After creating dir - [/var/hyperledger/production/orderer/index/] exists -orderer.example.com | 2018-01-04 01:50:54.281 UTC [fsblkstorage] newBlockfileMgr -> DEBU 022 newBlockfileMgr() initializing file-based block storage for ledger: testchainid -peer1.org1.example.com | [093 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [039 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [07a 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c50288ea]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [09a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -peer0.org1.example.com | [09d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | 2018-01-04 01:50:54.281 UTC [kvledger.util] CreateDirIfMissing -> DEBU 023 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -peer0.org2.example.com | [03a 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [07b 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [07c 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c50288ea]sending state message INIT -peer1.org2.example.com | [07d 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c50288ea]Received message INIT from shim -peer1.org2.example.com | [07e 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c50288ea]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 2018-01-04 01:50:54.281 UTC [kvledger.util] logDirStatus -> DEBU 024 Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -peer0.org2.example.com | [03b 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | 2018-01-04 01:50:54.282 UTC [kvledger.util] logDirStatus -> DEBU 025 After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -peer1.org1.example.com | [094 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [095 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org2.example.com | [07f 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | 2018-01-04 01:50:54.283 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 026 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -peer0.org2.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -orderer.example.com | 2018-01-04 01:50:54.283 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 027 status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] -peer1.org1.example.com | [096 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -orderer.example.com | 2018-01-04 01:50:54.284 UTC [fsblkstorage] newBlockIndex -> DEBU 028 newBlockIndex() - indexItems:[[BlockNum]] -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -peer0.org2.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -peer0.org2.example.com | Cp7fopYLAR0CUyw+Xyk= -orderer.example.com | 2018-01-04 01:50:54.284 UTC [fsblkstorage] newBlockfileStream -> DEBU 029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer1.org2.example.com | [080 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c50288ea]Received INIT, initializing chaincode -peer1.org2.example.com | [081 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [082 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:54.284 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02a Finished reading file number [0] -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [03c 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [03d 01-04 01:50:56.94 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:54.284 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02b blockbytes [0] read from file [0] -orderer.example.com | 2018-01-04 01:50:54.286 UTC [fsblkstorage] indexBlock -> DEBU 02c Indexing block [blockNum=0, blockHash=[]byte{0x89, 0xd5, 0xd2, 0x88, 0xd1, 0xb6, 0xc3, 0x25, 0x91, 0xfb, 0x5e, 0x94, 0x7f, 0x80, 0xeb, 0xd3, 0x7d, 0xdd, 0x80, 0xdf, 0x56, 0xc0, 0xb2, 0xfc, 0xe3, 0x98, 0x5f, 0x12, 0xd8, 0x6b, 0xb0, 0x21} txOffsets= -peer0.org1.example.com | [09e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -peer0.org2.example.com | [03e 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [03f 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [083 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c50288ea]Init get response status: 200 +peer0.org1.example.com | [113 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org1.example.com | [055 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +peer0.org2.example.com | [0fd 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d4660b1]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [042 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | 2018-01-14 11:45:28.199 UTC [msp] Validate -> DEBU 01d MSP OrdererMSP validating identity +peer0.org1.example.com | [114 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [043 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [0fe 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4660b1]Received message INIT from shim +orderer.example.com | 2018-01-14 11:45:28.199 UTC [orderer/main] createLedgerFactory -> DEBU 01e Ledger dir: /var/hyperledger/production/orderer +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 +peer1.org1.example.com | [056 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +peer0.org2.example.com | [0ff 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d4660b1]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [044 01-14 11:45:29.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.0.2(networkid:dev,peerid:peer1.org2.example.com) +peer1.org2.example.com | [045 01-14 11:45:29.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=peer1.org2.example.com:7052 +orderer.example.com | 2018-01-14 11:45:28.199 UTC [kvledger.util] CreateDirIfMissing -> DEBU 01f CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +peer0.org2.example.com | [100 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [046 01-14 11:45:29.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 env: +peer1.org1.example.com | [057 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +orderer.example.com | 2018-01-14 11:45:28.199 UTC [kvledger.util] logDirStatus -> DEBU 020 Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 2018-01-14 11:45:28.199 UTC [kvledger.util] logDirStatus -> DEBU 021 After creating dir - [/var/hyperledger/production/orderer/index/] exists +peer0.org2.example.com | [101 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8d4660b1]Received INIT, initializing chaincode +peer1.org1.example.com | [058 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +orderer.example.com | 2018-01-14 11:45:28.213 UTC [fsblkstorage] newBlockfileMgr -> DEBU 022 newBlockfileMgr() initializing file-based block storage for ledger: testchainid +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [102 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +orderer.example.com | 2018-01-14 11:45:28.213 UTC [kvledger.util] CreateDirIfMissing -> DEBU 023 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [059 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +orderer.example.com | 2018-01-14 11:45:28.213 UTC [kvledger.util] logDirStatus -> DEBU 024 Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +orderer.example.com | 2018-01-14 11:45:28.213 UTC [kvledger.util] logDirStatus -> DEBU 025 After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [103 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4660b1]Init get response status: 200 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | 2018-01-14 11:45:28.215 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 026 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +peer0.org1.example.com | [115 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +peer0.org1.example.com | [116 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +peer1.org1.example.com | [05a 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +orderer.example.com | 2018-01-14 11:45:28.216 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 027 status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] +peer0.org2.example.com | [104 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4660b1]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [05c 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [117 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +peer0.org2.example.com | [105 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4660b1]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:28.216 UTC [fsblkstorage] newBlockIndex -> DEBU 028 newBlockIndex() - indexItems:[[BlockNum]] +peer1.org1.example.com | [05d 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +peer1.org2.example.com | [047 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +peer0.org2.example.com | [106 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d4660b1]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:28.216 UTC [fsblkstorage] newBlockfileStream -> DEBU 029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [118 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +peer1.org1.example.com | [05e 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [107 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d4660b1]send state message COMPLETED +peer1.org2.example.com | [048 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +orderer.example.com | 2018-01-14 11:45:28.216 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02a Finished reading file number [0] +peer1.org1.example.com | [05b 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [049 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +peer1.org2.example.com | [04a 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +peer0.org2.example.com | [108 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8d4660b1]Received message COMPLETED from shim +peer0.org1.example.com | [119 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +peer1.org1.example.com | [05f 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:28.216 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02b blockbytes [0] read from file [0] +peer1.org2.example.com | [04b 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [11b 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [109 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d4660b1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [060 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-14 11:45:28.218 UTC [fsblkstorage] indexBlock -> DEBU 02c Indexing block [blockNum=0, blockHash=[]byte{0x89, 0xd5, 0xd2, 0x88, 0xd1, 0xb6, 0xc3, 0x25, 0x91, 0xfb, 0x5e, 0x94, 0x7f, 0x80, 0xeb, 0xd3, 0x7d, 0xdd, 0x80, 0xdf, 0x56, 0xc0, 0xb2, 0xfc, 0xe3, 0x98, 0x5f, 0x12, 0xd8, 0x6b, 0xb0, 0x21} txOffsets= +peer1.org2.example.com | [04c 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started +peer0.org1.example.com | [11c 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [10a 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8d4660b1-39ad-4c2c-b231-4bcd1e1f17ad]HandleMessage- COMPLETED. Notify orderer.example.com | txId=39266883a94d0b87be6c51e2f16ce943b4d54e117e366bcac9318c13c284ab01 locPointer=offset=38, bytesLength=9039 -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [09f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [040 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A20122F5FC09C3DAD3F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | [061 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [062 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [063 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +peer1.org1.example.com | [064 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +peer1.org1.example.com | [065 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [066 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [067 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +peer1.org1.example.com | [068 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [069 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [06a 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c282b4be]Move state message READY +peer1.org1.example.com | [06b 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c282b4be]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [06c 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [c282b4be]Entered state ready +peer1.org1.example.com | [06d 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:c282b4be-ee3e-49f1-be1a-49bdb8baabec +peer1.org1.example.com | [06e 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c282b4be]sending state message READY +peer1.org2.example.com | [04d 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org1.example.com | [11a 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 orderer.example.com | ] -peer1.org2.example.com | [084 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c50288ea]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [097 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -orderer.example.com | 2018-01-04 01:50:54.286 UTC [fsblkstorage] updateCheckpoint -> DEBU 02d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org2.example.com | [041 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 57085B15048F457A96ECEF4045625EBF83CC3E2BBC2AB42A60296E223E61FD79 -peer1.org2.example.com | [085 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c50288ea]Move state message COMPLETED -peer0.org1.example.com | [0a0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [098 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -orderer.example.com | 2018-01-04 01:50:54.286 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 02e retrieveBlockByNumber() - blockNum = [0] -peer0.org2.example.com | [042 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started -peer1.org2.example.com | [086 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c50288ea]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [087 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c50288ea]send state message COMPLETED -peer0.org1.example.com | [0a1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [099 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -orderer.example.com | 2018-01-04 01:50:54.286 UTC [fsblkstorage] newBlockfileStream -> DEBU 02f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer0.org2.example.com | [043 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [0a2 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [09a 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -orderer.example.com | 2018-01-04 01:50:54.286 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 030 Remaining bytes=[9082], Going to peek [8] bytes -peer0.org2.example.com | [044 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [088 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c50288ea]Received message COMPLETED from shim -peer1.org2.example.com | [089 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c50288ea]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0a3 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:54.286 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 031 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer0.org2.example.com | [045 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer1.org2.example.com | [08a 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c50288ea-8b1a-4102-b785-c02a7b3744d8]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [09c 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -peer0.org1.example.com | [0a4 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -orderer.example.com | 2018-01-04 01:50:54.287 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 032 retrieveBlockByNumber() - blockNum = [0] -peer0.org2.example.com | [046 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -peer1.org2.example.com | [08b 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c50288ea-8b1a-4102-b785-c02a7b3744d8 -peer0.org1.example.com | [0a5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [09d 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | 2018-01-04 01:50:54.287 UTC [fsblkstorage] newBlockfileStream -> DEBU 033 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer0.org2.example.com | [047 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: FA64C601F1E369FD897F89FDD8B0FE6A8DBF70590B038DBD5D3E045349CDCE6C -peer0.org2.example.com | [048 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [08c 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [09b 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -orderer.example.com | 2018-01-04 01:50:54.287 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 034 Remaining bytes=[9082], Going to peek [8] bytes -peer0.org1.example.com | [0a6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [08d 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [049 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:54.287 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 035 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer1.org1.example.com | [09e 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0a7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0a8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -orderer.example.com | 2018-01-04 01:50:54.287 UTC [common/config] NewStandardValues -> DEBU 036 Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [04a 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267322E6578616D706C652E636F6D3A37303531 -peer1.org1.example.com | [09f 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org2.example.com | [08e 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=d98517c3-d32a-4ee3-910b-895a8cf49ee5,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org2.example.com | [08f 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -orderer.example.com | 2018-01-04 01:50:54.287 UTC [common/config] initializeProtosStruct -> DEBU 037 Processing field: HashingAlgorithm -peer0.org2.example.com | [04b 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 31AA5BDA348977D7C004285715D545FB004C7F32E9BB02A9710DB7C2282B8EA6 -peer1.org1.example.com | [0a0 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:54.287 UTC [common/config] initializeProtosStruct -> DEBU 038 Processing field: BlockDataHashingStructure -peer0.org2.example.com | [04c 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer1.org2.example.com | [090 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [0a9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 2018-01-04 01:50:54.287 UTC [common/config] initializeProtosStruct -> DEBU 039 Processing field: OrdererAddresses -peer0.org2.example.com | [04d 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=115818f8-112d-4b8c-937e-02fbdf1192b6,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer1.org1.example.com | [0a1 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [0aa 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | 2018-01-04 01:50:54.287 UTC [common/config] initializeProtosStruct -> DEBU 03a Processing field: Consortium -peer0.org2.example.com | [04e 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -peer1.org2.example.com | [091 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03b Adding to config map: [Groups] /Channel -peer0.org2.example.com | [04f 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [092 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer1.org1.example.com | [0a2 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [0a3 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03c Adding to config map: [Groups] /Channel/Consortiums -peer0.org2.example.com | [050 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [051 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer1.org2.example.com | [093 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [094 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | [052 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org1.example.com | [0a4 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03d Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03e Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03f Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -peer0.org2.example.com | [053 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=cscc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 040 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -peer1.org1.example.com | [0a5 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -peer1.org1.example.com | [0a6 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 041 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -peer0.org1.example.com | [0ab 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [0a7 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [054 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -peer0.org1.example.com | [0ac 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]Move state message READY -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 042 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [055 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -peer0.org1.example.com | [0ad 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5699316]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | 2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 043 Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -orderer.example.com | 2018-01-04 01:50:54.289 UTC [common/configtx] addToMap -> DEBU 044 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:54.289 UTC [common/configtx] addToMap -> DEBU 045 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -peer0.org2.example.com | [056 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -peer0.org1.example.com | [0ae 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a5699316]Entered state ready -peer0.org1.example.com | [0af 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a5699316-2e9e-45cd-a746-d6dd8685a54a -peer1.org1.example.com | [0a8 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [0aa 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [095 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -peer0.org2.example.com | [057 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -peer0.org2.example.com | [058 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -peer0.org1.example.com | [0b0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]sending state message READY -orderer.example.com | 2018-01-04 01:50:54.289 UTC [common/configtx] addToMap -> DEBU 046 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 047 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 048 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -peer1.org1.example.com | [0ab 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [05a 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -peer0.org2.example.com | [05b 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [096 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 049 Adding to config map: [Policy] /Channel/Consortiums/Admins -peer0.org1.example.com | [0b1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Received message READY from shim -peer1.org2.example.com | [097 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04a Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [0a9 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -peer0.org2.example.com | [05c 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -peer0.org1.example.com | [0b3 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5699316]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04b Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [05d 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0ac 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [0b2 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [098 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -peer0.org2.example.com | [059 01-04 01:50:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [05e 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04c Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [0ad 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [099 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -peer1.org2.example.com | [09a 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [09b 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [05f 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [0ae 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64b45487]Move state message READY -peer0.org1.example.com | [0b4 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [09c 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -peer0.org2.example.com | [060 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [0af 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64b45487]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [09d 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org2.example.com | [061 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [062 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -peer0.org2.example.com | [063 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [064 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 050 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 051 Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 052 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | [065 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [0b0 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [64b45487]Entered state ready -peer1.org2.example.com | [09e 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -peer0.org1.example.com | [0b5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [0b6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 053 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [0b1 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:64b45487-0771-4094-a331-eaa56563e230 -peer1.org2.example.com | [09f 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [067 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 054 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 055 Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [066 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -peer1.org2.example.com | [0a0 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [0a1 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [0a2 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 056 Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [068 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 057 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 058 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 059 Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 05a Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [069 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [0a3 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -peer1.org1.example.com | [0b2 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64b45487]sending state message READY -peer1.org1.example.com | [0b3 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64b45487]Received message READY from shim -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 05b Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [06a 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [06b 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [115818f8]Move state message READY -peer0.org2.example.com | [06c 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [115818f8]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [06d 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [115818f8]Entered state ready -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 05c Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 05d Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/configtx] processConfig -> DEBU 05e Beginning new config for channel testchainid -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 05f Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [06e 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:115818f8-112d-4b8c-937e-02fbdf1192b6 -peer0.org2.example.com | [06f 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [115818f8]sending state message READY -peer0.org2.example.com | [070 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [115818f8]Received message READY from shim -peer0.org2.example.com | [071 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [115818f8]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [072 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [073 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [074 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [075 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org2.example.com | [076 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [115818f8]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [077 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [078 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [115818f8]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [079 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [115818f8]Move state message INIT -peer0.org2.example.com | [07a 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [115818f8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 060 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 061 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 062 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 063 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 064 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 065 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 066 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 067 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 068 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 069 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 06a Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 06b Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 06c Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 06d Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 06e Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 06f Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 070 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 071 Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [07b 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0b4 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64b45487]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [07c 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [115818f8]sending state message INIT -peer0.org2.example.com | [07d 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [115818f8]Received message INIT from shim -peer0.org2.example.com | [07e 01-04 01:50:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [115818f8]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [07f 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [080 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [115818f8]Received INIT, initializing chaincode -peer0.org2.example.com | [081 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [082 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0b7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a5699316]Inside sendExecuteMessage. Message INIT -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 072 Processing field: MSP -peer0.org2.example.com | [083 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [115818f8]Init get response status: 200 -peer1.org1.example.com | [0b5 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [0b6 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [0a4 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 073 Proposed new policy Writers for OrdererOrg -peer0.org2.example.com | [084 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [115818f8]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [085 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [115818f8]Move state message COMPLETED -peer0.org2.example.com | [086 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [115818f8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [087 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [115818f8]send state message COMPLETED -peer0.org2.example.com | [088 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [115818f8]Received message COMPLETED from shim -peer0.org2.example.com | [089 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [115818f8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [08a 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [115818f8-112d-4b8c-937e-02fbdf1192b6]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [08b 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:115818f8-112d-4b8c-937e-02fbdf1192b6 -peer0.org2.example.com | [08c 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [08d 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 074 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 075 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 076 Proposed new policy Admins for Consortiums -peer0.org2.example.com | [08e 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=2c8e5fa5-120a-461b-ba73-eaee00374a9e,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer0.org2.example.com | [08f 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -peer0.org2.example.com | [090 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [091 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 077 Initializing protos for *config.ConsortiumProtos -peer1.org1.example.com | [0b7 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [0b8 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [0b9 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [64b45487]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [092 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 078 Processing field: ChannelCreationPolicy -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 079 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 07a Processing field: MSP -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 07b Proposed new policy Readers for Org1MSP -peer0.org2.example.com | [093 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org2.example.com | [0a5 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [0b8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 07c Proposed new policy Writers for Org1MSP -peer1.org1.example.com | [0ba 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [0bb 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [64b45487]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [094 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [0b9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a5699316]sendExecuteMsg trigger event INIT -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 07d Proposed new policy Admins for Org1MSP -peer1.org2.example.com | [0a6 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 -peer1.org1.example.com | [0bc 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64b45487]Move state message INIT -peer0.org1.example.com | [0ba 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]Move state message INIT -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 07e Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 07f Processing field: MSP -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 080 Proposed new policy Writers for Org2MSP -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | [0bd 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64b45487]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [0a7 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [0a8 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 081 Proposed new policy Admins for Org2MSP -peer1.org1.example.com | [0be 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0bb 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5699316]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [095 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -peer0.org2.example.com | [096 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -orderer.example.com | 2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 082 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:54.291 UTC [common/config] validateMSP -> DEBU 083 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:54.291 UTC [msp] NewBccspMsp -> DEBU 084 Creating BCCSP-based MSP instance -peer1.org2.example.com | [0a9 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d98517c3]Move state message READY -peer0.org2.example.com | [097 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -peer0.org2.example.com | [098 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -peer0.org2.example.com | [09a 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -peer0.org2.example.com | [09b 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | 2018-01-04 01:50:54.291 UTC [msp] Setup -> DEBU 085 Setting up MSP instance OrdererMSP -peer1.org1.example.com | [0bf 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64b45487]sending state message INIT -peer0.org2.example.com | [09c 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [099 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -peer0.org2.example.com | [09d 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -orderer.example.com | 2018-01-04 01:50:54.291 UTC [msp/identity] newIdentity -> DEBU 086 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [0aa 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d98517c3]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [0bc 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [09e 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +peer1.org1.example.com | [06f 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [11d 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org2.example.com | [04e 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [10b 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8d4660b1-39ad-4c2c-b231-4bcd1e1f17ad +orderer.example.com | 2018-01-14 11:45:28.218 UTC [fsblkstorage] updateCheckpoint -> DEBU 02d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org1.example.com | [070 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [04f 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [11e 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.218 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 02e retrieveBlockByNumber() - blockNum = [0] +peer1.org1.example.com | [071 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [10c 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [11f 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | 2018-01-14 11:45:28.218 UTC [fsblkstorage] newBlockfileStream -> DEBU 02f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer1.org2.example.com | [050 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572312E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +peer1.org1.example.com | [072 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.218 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 030 Remaining bytes=[9082], Going to peek [8] bytes +peer0.org2.example.com | [10d 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | [120 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [073 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c282b4be]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [10e 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=b6a790db-822c-467d-a976-84b12534cc2d,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [051 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 78B007C5C69FFBDE55FF6E8C71493ED7D1952B0A313FE0D9E0C34AC37F8850BD +orderer.example.com | 2018-01-14 11:45:28.218 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 031 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org1.example.com | [121 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [074 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [10f 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +peer1.org2.example.com | [052 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +orderer.example.com | 2018-01-14 11:45:28.219 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 032 retrieveBlockByNumber() - blockNum = [0] +peer0.org1.example.com | [122 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [123 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +peer0.org1.example.com | [124 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +peer1.org1.example.com | [075 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c282b4be]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [053 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:28.219 UTC [fsblkstorage] newBlockfileStream -> DEBU 033 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [110 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [125 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [076 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [111 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [054 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [126 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [077 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [112 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +peer0.org1.example.com | [128 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [055 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572312E6F7267322E6578616D706C652E636F6D3A37303531 +peer1.org1.example.com | [078 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c282b4be]Received message READY from shim +peer0.org1.example.com | [129 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [113 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +orderer.example.com | 2018-01-14 11:45:28.219 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 034 Remaining bytes=[9082], Going to peek [8] bytes +peer0.org1.example.com | [127 01-14 11:45:30.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 vscc:1.0.2 launch seq completed +peer1.org1.example.com | [079 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c282b4be]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [056 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: 84DCB4760C577E9B4E2A280CB22EA6979C16748D7FD46DCFD4002D8650CAD285 +peer0.org1.example.com | [12a 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [07a 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c282b4be]Move state message INIT +peer0.org2.example.com | [114 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [057 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051} +peer0.org1.example.com | [12b 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:28.219 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 035 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org1.example.com | [07b 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c282b4be]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [12c 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]Move state message READY +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/config] NewStandardValues -> DEBU 036 Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [12d 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [818854db]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [07c 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/config] initializeProtosStruct -> DEBU 037 Processing field: HashingAlgorithm +peer1.org2.example.com | [058 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +peer0.org1.example.com | [12e 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [818854db]Entered state ready +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/config] initializeProtosStruct -> DEBU 038 Processing field: BlockDataHashingStructure +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [07d 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c282b4be]sending state message INIT +peer0.org1.example.com | [12f 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:818854db-b07a-47b8-a9d4-f4729c5718de +peer1.org2.example.com | [059 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +peer1.org1.example.com | [07e 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c282b4be]Received message INIT from shim +peer1.org1.example.com | [07f 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c282b4be]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [080 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [081 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c282b4be]Received INIT, initializing chaincode +peer1.org1.example.com | [082 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [083 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [084 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c282b4be]Init get response status: 200 +peer1.org1.example.com | [085 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c282b4be]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [086 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c282b4be]Move state message COMPLETED +peer1.org1.example.com | [087 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c282b4be]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [088 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c282b4be]send state message COMPLETED +peer1.org1.example.com | [089 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c282b4be]Received message COMPLETED from shim +peer1.org1.example.com | [08a 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c282b4be]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [08b 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c282b4be-ee3e-49f1-be1a-49bdb8baabec]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [08c 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c282b4be-ee3e-49f1-be1a-49bdb8baabec +peer1.org1.example.com | [08d 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [08e 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [08f 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=94dc826c-5305-4407-9a14-393f2cbb263e,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [115 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +peer0.org2.example.com | [116 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +peer0.org2.example.com | [117 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +peer0.org2.example.com | [118 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +peer0.org2.example.com | [119 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +peer0.org2.example.com | [11a 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [11b 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [090 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/config] initializeProtosStruct -> DEBU 039 Processing field: OrdererAddresses +peer0.org1.example.com | [130 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]sending state message READY +peer1.org2.example.com | [05a 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [11c 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +peer1.org1.example.com | [091 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/config] initializeProtosStruct -> DEBU 03a Processing field: Consortium +peer0.org1.example.com | [131 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Received message READY from shim +peer0.org1.example.com | [133 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [818854db]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [132 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03b Adding to config map: [Groups] /Channel +peer1.org2.example.com | [05b 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [11d 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org1.example.com | [134 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [092 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03c Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [11e 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +peer0.org1.example.com | [135 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [05c 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +peer1.org1.example.com | [093 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03d Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [11f 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [136 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [05d 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03e Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [094 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org2.example.com | [05e 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +peer0.org1.example.com | [137 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [818854db]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [120 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [095 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [138 01-14 11:45:30.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... +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [121 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [05f 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [139 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [818854db]sendExecuteMsg trigger event INIT +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 040 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [060 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [122 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [13a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]Move state message INIT +peer0.org1.example.com | [13b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [818854db]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [13c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [123 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +peer1.org2.example.com | [061 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +orderer.example.com | 2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 041 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [13d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]sending state message INIT +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org2.example.com | [124 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [062 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | 2018-01-14 11:45:28.220 UTC [common/configtx] addToMap -> DEBU 042 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [13e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Received message INIT from shim +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-14 11:45:28.220 UTC [common/configtx] addToMap -> DEBU 043 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [063 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +peer0.org1.example.com | [13f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [818854db]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [125 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [096 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +orderer.example.com | 2018-01-14 11:45:28.220 UTC [common/configtx] addToMap -> DEBU 044 Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [140 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [126 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [064 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +peer1.org1.example.com | [097 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +orderer.example.com | 2018-01-14 11:45:28.220 UTC [common/configtx] addToMap -> DEBU 045 Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org1.example.com | [098 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +peer0.org1.example.com | [141 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [818854db]Received INIT, initializing chaincode +peer0.org1.example.com | [142 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Init get response status: 200 +peer0.org1.example.com | [143 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [144 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Move state message COMPLETED +peer0.org1.example.com | [145 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [818854db]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [146 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]send state message COMPLETED +peer0.org1.example.com | [147 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]Received message COMPLETED from shim +peer0.org1.example.com | [148 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [818854db]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [149 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [818854db-b07a-47b8-a9d4-f4729c5718de]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [14a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:818854db-b07a-47b8-a9d4-f4729c5718de +peer0.org1.example.com | [14b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [14c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org2.example.com | [065 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [066 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [067 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [127 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [14d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=9902c4b9-dc72-4da4-8e81-e5e1991dcdca,syscc=true,proposal=0x0,canname=qscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 046 Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [09a 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +peer1.org2.example.com | [068 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [128 01-14 11:45:29.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [09b 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [14e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +peer1.org1.example.com | [09c 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [069 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +peer0.org2.example.com | [129 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 047 Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [09d 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +peer0.org1.example.com | [14f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [12a 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [06a 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 048 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [09e 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [12b 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [09f 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 049 Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [12c 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a790db]Move state message READY +peer1.org1.example.com | [0a0 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [06b 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [150 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04a Adding to config map: [Groups] /Channel/Consortiums +peer1.org1.example.com | [0a1 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [06c 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [472f4516]Move state message READY +peer0.org2.example.com | [12d 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b6a790db]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0a2 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [151 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +peer0.org2.example.com | [12e 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [b6a790db]Entered state ready +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04b Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium +peer1.org1.example.com | [0a3 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | [06d 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [472f4516]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [152 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org1.example.com | [0a4 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +peer0.org2.example.com | [12f 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:b6a790db-822c-467d-a976-84b12534cc2d +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04c Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP +peer1.org2.example.com | [06e 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [472f4516]Entered state ready +peer1.org1.example.com | [0a5 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [130 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a790db]sending state message READY +peer0.org1.example.com | [153 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04d Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +peer1.org1.example.com | [0a6 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [06f 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:472f4516-8c76-4424-96cc-82c8eb92b6a2 +peer1.org1.example.com | [0a7 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [131 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a790db]Received message READY from shim +peer1.org1.example.com | [0a8 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 +peer0.org2.example.com | [132 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b6a790db]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04e Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +peer1.org1.example.com | [0a9 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | [070 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [472f4516]sending state message READY +peer1.org1.example.com | [099 01-14 11:45:28.78 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +peer0.org2.example.com | [133 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04f Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [0aa 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +peer1.org2.example.com | [071 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [472f4516]Received message READY from shim +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 050 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +peer1.org1.example.com | [0ab 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [134 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [072 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [472f4516]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0ac 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 051 Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 052 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 053 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 054 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 055 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 056 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +orderer.example.com | 2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 057 Adding to config map: [Policy] /Channel/Consortiums/Admins +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [0ad 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94dc826c]Move state message READY +peer1.org2.example.com | [073 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +orderer.example.com | 2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 058 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 059 Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [0ae 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [94dc826c]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0af 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [94dc826c]Entered state ready +peer1.org1.example.com | [0b0 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:94dc826c-5305-4407-9a14-393f2cbb263e +peer1.org1.example.com | [0b2 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [0b3 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [0b4 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [0b5 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [0b6 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [94dc826c]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [0b7 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [0b8 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [94dc826c]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0b1 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94dc826c]sending state message READY +peer1.org1.example.com | [0b9 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94dc826c]Received message READY from shim +peer0.org1.example.com | [154 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +peer0.org2.example.com | [135 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 05a Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [0ba 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94dc826c]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [074 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [155 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/configtx] addToMap -> DEBU 05b Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [0bb 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94dc826c]Move state message INIT +peer0.org2.example.com | [136 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [075 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/configtx] addToMap -> DEBU 05c Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [156 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +peer0.org2.example.com | [137 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b6a790db]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [0bc 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [94dc826c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [076 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org2.example.com | [138 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/configtx] addToMap -> DEBU 05d Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [157 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +peer1.org2.example.com | [077 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [472f4516]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [139 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b6a790db]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0bd 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/configtx] processConfig -> DEBU 05e Beginning new config for channel testchainid +peer0.org1.example.com | [158 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +peer0.org2.example.com | [13a 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a790db]Move state message INIT +peer1.org2.example.com | [078 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [0be 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94dc826c]sending state message INIT +peer0.org1.example.com | [15a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/config] NewStandardValues -> DEBU 05f Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [13b 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b6a790db]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [079 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [472f4516]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0bf 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94dc826c]Received message INIT from shim +peer0.org1.example.com | [159 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 060 Processing field: HashingAlgorithm +peer0.org1.example.com | [15b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer1.org1.example.com | [0c0 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94dc826c]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [07a 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [472f4516]Move state message INIT +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 061 Processing field: BlockDataHashingStructure +peer0.org2.example.com | [13c 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [15c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +peer1.org1.example.com | [0c1 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [07b 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [472f4516]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [13d 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a790db]sending state message INIT +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 062 Processing field: OrdererAddresses +peer0.org1.example.com | [15d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [13e 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a790db]Received message INIT from shim +peer1.org1.example.com | [0c2 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [94dc826c]Received INIT, initializing chaincode +peer1.org2.example.com | [07c 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [15e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [13f 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b6a790db]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 063 Processing field: Consortium +peer1.org2.example.com | [07d 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [472f4516]sending state message INIT +peer1.org1.example.com | [0c3 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [140 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [15f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-14 11:45:28.225 UTC [policies] ProposePolicy -> DEBU 064 Proposed new policy Readers for Channel +peer1.org2.example.com | [07e 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [472f4516]Received message INIT from shim +peer0.org2.example.com | [141 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b6a790db]Received INIT, initializing chaincode +peer1.org1.example.com | [0c4 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94dc826c]Init get response status: 200 +peer0.org1.example.com | [160 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [07f 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [472f4516]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-14 11:45:28.225 UTC [policies] ProposePolicy -> DEBU 065 Proposed new policy Writers for Channel +peer1.org1.example.com | [0c5 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94dc826c]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [142 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a790db]Init get response status: 200 +peer0.org1.example.com | [161 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | 2018-01-14 11:45:28.225 UTC [policies] ProposePolicy -> DEBU 066 Proposed new policy Admins for Channel +peer1.org1.example.com | [0c6 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94dc826c]Move state message COMPLETED +peer1.org2.example.com | [080 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [143 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a790db]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/config] NewStandardValues -> DEBU 067 Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [162 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +peer1.org1.example.com | [0c7 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94dc826c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [144 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a790db]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 068 Processing field: ConsensusType +peer1.org2.example.com | [081 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [472f4516]Received INIT, initializing chaincode +peer0.org1.example.com | [163 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [145 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b6a790db]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [0c8 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94dc826c]send state message COMPLETED +peer1.org2.example.com | [082 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +orderer.example.com | 2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 069 Processing field: BatchSize +peer0.org2.example.com | [146 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b6a790db]send state message COMPLETED +peer0.org1.example.com | [164 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [0c9 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [94dc826c]Received message COMPLETED from shim +peer1.org2.example.com | [083 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [147 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b6a790db]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 06a Processing field: BatchTimeout +peer0.org1.example.com | [165 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [148 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b6a790db]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [084 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [472f4516]Init get response status: 200 +peer1.org1.example.com | [0ca 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [94dc826c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [149 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b6a790db-822c-467d-a976-84b12534cc2d]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 06b Processing field: KafkaBrokers +peer0.org2.example.com | [14a 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b6a790db-822c-467d-a976-84b12534cc2d +peer1.org1.example.com | [0cb 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [94dc826c-5305-4407-9a14-393f2cbb263e]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [166 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [085 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [472f4516]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [14b 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [0cc 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:94dc826c-5305-4407-9a14-393f2cbb263e +peer0.org1.example.com | [167 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 06c Processing field: ChannelRestrictions +peer0.org2.example.com | [14c 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org2.example.com | [086 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [472f4516]Move state message COMPLETED +peer1.org1.example.com | [0cd 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [14d 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=5b5dfde8-2e56-4e63-bf47-690a15e9039f,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer0.org1.example.com | [168 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 06d Proposed new policy Readers for Orderer +peer0.org2.example.com | [14e 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +peer1.org1.example.com | [0ce 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [14f 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [169 01-14 11:45:30.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 +peer1.org2.example.com | [087 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [472f4516]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 06e Proposed new policy Writers for Orderer +peer0.org2.example.com | [150 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [088 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [472f4516]send state message COMPLETED +peer1.org1.example.com | [0cf 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=2f4add17-95cd-4ed8-baf5-1e995f560277,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer0.org2.example.com | [151 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 06f Proposed new policy Admins for Orderer +peer1.org2.example.com | [089 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [472f4516]Received message COMPLETED from shim +peer0.org1.example.com | [16a 01-14 11:45:30.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... +peer0.org2.example.com | [152 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org1.example.com | [0d0 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 070 Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [16b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]Move state message READY +peer0.org2.example.com | [153 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [08a 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [472f4516]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [16c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9902c4b9]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [0d1 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] NewStandardValues -> DEBU 071 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [08b 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [472f4516-8c76-4424-96cc-82c8eb92b6a2]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [0d2 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [16d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9902c4b9]Entered state ready +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 072 Processing field: MSP +peer1.org2.example.com | [08c 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:472f4516-8c76-4424-96cc-82c8eb92b6a2 +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [0d3 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [16e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9902c4b9-dc72-4da4-8e81-e5e1991dcdca +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 073 Proposed new policy Admins for OrdererOrg +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org2.example.com | [08d 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [16f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]sending state message READY +peer1.org1.example.com | [0d4 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | [08e 01-14 11:45:29.20 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [154 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 074 Proposed new policy Readers for OrdererOrg +peer0.org1.example.com | [170 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Received message READY from shim +peer0.org2.example.com | [155 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +peer1.org2.example.com | [08f 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=662d247c-b2dd-4332-aaa5-847fbdf12535,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org1.example.com | [0d5 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [171 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9902c4b9]Handling ChaincodeMessage of type: READY(state:established) +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 075 Proposed new policy Writers for OrdererOrg +peer0.org2.example.com | [156 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 +peer1.org2.example.com | [090 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 076 Proposed new policy Admins for Consortiums +peer0.org2.example.com | [157 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [172 01-14 11:45:30.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 +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] NewStandardValues -> DEBU 077 Initializing protos for *config.ConsortiumProtos +peer1.org2.example.com | [091 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [158 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +peer0.org1.example.com | [173 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 078 Processing field: ChannelCreationPolicy +peer1.org2.example.com | [092 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [159 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [174 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] NewStandardValues -> DEBU 079 Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [15a 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [093 01-14 11:45:29.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: lscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [175 01-14 11:45:30.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: qscc:1.0.2 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org2.example.com | [15b 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 07a Processing field: MSP +peer1.org2.example.com | [094 01-14 11:45:29.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 args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org1.example.com | [176 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9902c4b9]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [15c 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 07b Proposed new policy Writers for Org2MSP +peer1.org1.example.com | [0d6 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +peer0.org2.example.com | [15d 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +peer0.org2.example.com | [15e 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [177 01-14 11:45:30.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... +peer1.org2.example.com | [095 01-14 11:45:29.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: +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 07c Proposed new policy Admins for Org2MSP +peer1.org1.example.com | [0d7 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +peer0.org2.example.com | [15f 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 07d Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [178 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9902c4b9]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0d8 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [160 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [179 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]Move state message INIT +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] NewStandardValues -> DEBU 07e Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [0da 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +peer0.org2.example.com | [161 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [17a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9902c4b9]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 07f Processing field: MSP +peer0.org2.example.com | [162 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +peer1.org1.example.com | [0db 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [17b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 080 Proposed new policy Readers for Org1MSP +peer1.org2.example.com | [096 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +peer0.org2.example.com | [163 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [17c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]sending state message INIT +peer1.org1.example.com | [0dc 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:28.227 UTC [policies] ProposePolicy -> DEBU 081 Proposed new policy Writers for Org1MSP +peer1.org2.example.com | [097 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +peer1.org1.example.com | [0dd 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +peer0.org1.example.com | [17d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Received message INIT from shim +peer1.org2.example.com | [098 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +peer0.org2.example.com | [164 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +orderer.example.com | 2018-01-14 11:45:28.227 UTC [policies] ProposePolicy -> DEBU 082 Proposed new policy Admins for Org1MSP +peer1.org2.example.com | [099 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +peer1.org1.example.com | [0de 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [17e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9902c4b9]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [165 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [09a 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +peer1.org1.example.com | [0df 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +peer0.org1.example.com | [17f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [09b 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-14 11:45:28.227 UTC [common/config] validateMSP -> DEBU 083 Setting up MSP for org OrdererOrg +peer0.org2.example.com | [167 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [09c 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [180 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9902c4b9]Received INIT, initializing chaincode +orderer.example.com | 2018-01-14 11:45:28.227 UTC [msp] NewBccspMsp -> DEBU 084 Creating BCCSP-based MSP instance +peer1.org1.example.com | [0e0 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [168 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [09d 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +peer0.org1.example.com | [181 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [0e1 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [09e 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [182 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [166 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +orderer.example.com | 2018-01-14 11:45:28.227 UTC [msp] Setup -> DEBU 085 Setting up MSP instance OrdererMSP +peer1.org2.example.com | [09f 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +peer0.org1.example.com | [183 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Init get response status: 200 +orderer.example.com | 2018-01-14 11:45:28.227 UTC [msp/identity] newIdentity -> DEBU 086 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [0e2 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [0a0 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [169 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [184 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Init succeeded. Sending COMPLETED orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer1.org2.example.com | [0ab 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d98517c3]Entered state ready -peer1.org1.example.com | [0c0 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64b45487]Received message INIT from shim -peer0.org1.example.com | [0bd 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]sending state message INIT -peer0.org2.example.com | [09f 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0e3 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org2.example.com | [0a1 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [16a 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [185 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Move state message COMPLETED +peer1.org2.example.com | [0a2 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [0e4 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [0be 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Received message INIT from shim -peer1.org1.example.com | [0c1 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64b45487]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0a0 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [0ac 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d98517c3-d32a-4ee3-910b-895a8cf49ee5 +peer0.org2.example.com | [16b 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5dfde8]Move state message READY +peer1.org2.example.com | [0a3 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [0bf 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5699316]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0c2 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [0a1 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [0c0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [0ad 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d98517c3]sending state message READY +peer0.org1.example.com | [186 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9902c4b9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [0e5 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +peer1.org2.example.com | [0a4 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +peer1.org2.example.com | [0a5 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [16c 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b5dfde8]Fabric side Handling ChaincodeMessage of type: READY in state established orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer1.org1.example.com | [0c3 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [64b45487]Received INIT, initializing chaincode -peer0.org2.example.com | [0a2 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [0c1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a5699316]Received INIT, initializing chaincode +peer0.org1.example.com | [187 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]send state message COMPLETED +peer1.org1.example.com | [0e6 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [0a6 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [16d 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5b5dfde8]Entered state ready orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org2.example.com | [0a3 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -peer0.org2.example.com | [0a4 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -peer1.org1.example.com | [0c4 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0ae 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [0e7 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org1.example.com | [188 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]Received message COMPLETED from shim +peer1.org2.example.com | [0a7 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [16e 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5b5dfde8-2e56-4e63-bf47-690a15e9039f orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [0c2 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0a5 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [0a8 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [0e8 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [16f 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5dfde8]sending state message READY +peer0.org1.example.com | [189 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9902c4b9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0a9 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org2.example.com | [0af 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [0a6 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0a7 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [0e9 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org2.example.com | [0aa 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer1.org2.example.com | [0b0 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [0c5 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64b45487]Init get response status: 200 -peer0.org1.example.com | [0c3 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Init get response status: 200 -peer0.org2.example.com | [0a8 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [170 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5dfde8]Received message READY from shim +peer1.org2.example.com | [0ab 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org1.example.com | [18a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9902c4b9-dc72-4da4-8e81-e5e1991dcdca]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [0d9 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +peer0.org2.example.com | [171 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [0ac 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org2.example.com | [0a9 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +peer0.org1.example.com | [18b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9902c4b9-dc72-4da4-8e81-e5e1991dcdca +peer0.org2.example.com | [173 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org2.example.com | [0ad 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [662d247c]Move state message READY orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer1.org2.example.com | [0b1 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org2.example.com | [0aa 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [0c6 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64b45487]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0ae 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [662d247c]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [18c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [0ea 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +peer0.org2.example.com | [174 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [0af 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [662d247c]Entered state ready +peer0.org1.example.com | [18d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org2.example.com | [0b0 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:662d247c-b2dd-4332-aaa5-847fbdf12535 orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer0.org2.example.com | [0ab 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0c4 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [0ac 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c8e5fa5]Move state message READY -peer1.org2.example.com | [0b2 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d98517c3]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [0c7 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64b45487]Move state message COMPLETED -peer0.org1.example.com | [0c5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Move state message COMPLETED +peer0.org2.example.com | [175 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer1.org1.example.com | [0eb 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [0b1 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [662d247c]sending state message READY +peer0.org1.example.com | [18e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer1.org1.example.com | [0ec 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [176 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5b5dfde8]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [18f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer0.org2.example.com | [0ad 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2c8e5fa5]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [0b3 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [0c8 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64b45487]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [0c6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5699316]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0ae 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2c8e5fa5]Entered state ready +peer1.org2.example.com | [0b2 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [662d247c]Received message READY from shim +peer0.org1.example.com | [190 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +peer1.org1.example.com | [0ed 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f4add17]Move state message READY +peer0.org2.example.com | [177 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0b3 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [662d247c]Handling ChaincodeMessage of type: READY(state:established) orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.292 UTC [msp/identity] newIdentity -> DEBU 087 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [178 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5b5dfde8]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [191 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer1.org1.example.com | [0ee 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2f4add17]Fabric side Handling ChaincodeMessage of type: READY in state established +orderer.example.com | 2018-01-14 11:45:28.227 UTC [msp/identity] newIdentity -> DEBU 087 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0b4 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [192 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer0.org2.example.com | [179 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5dfde8]Move state message INIT orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [0af 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2c8e5fa5-120a-461b-ba73-eaee00374a9e -peer1.org2.example.com | [0b4 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d98517c3]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0ef 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [2f4add17]Entered state ready +peer0.org1.example.com | [193 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer0.org2.example.com | [17a 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b5dfde8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [0b5 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [0b0 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c8e5fa5]sending state message READY -peer1.org1.example.com | [0c9 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64b45487]send state message COMPLETED -peer1.org2.example.com | [0b5 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [0b6 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0b7 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [17b 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [0f0 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:2f4add17-95cd-4ed8-baf5-1e995f560277 +peer0.org1.example.com | [194 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0b6 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [0b1 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [0c7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]send state message COMPLETED -peer1.org2.example.com | [0b8 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d98517c3]Received message READY from shim -peer1.org1.example.com | [0ca 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64b45487]Received message COMPLETED from shim -peer0.org2.example.com | [0b2 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [0c8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]Received message COMPLETED from shim +peer0.org2.example.com | [17c 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5dfde8]sending state message INIT +peer0.org1.example.com | [195 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer1.org1.example.com | [0f1 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f4add17]sending state message READY +peer1.org2.example.com | [0b7 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org2.example.com | [0b9 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d98517c3]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [0cb 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64b45487]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0cc 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64b45487-0771-4094-a331-eaa56563e230]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [0b4 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [196 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +peer0.org2.example.com | [172 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b5dfde8]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0b8 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [662d247c]Inside sendExecuteMessage. Message INIT orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [0ba 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d98517c3]Move state message INIT -peer0.org1.example.com | [0c9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5699316]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [0f2 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f4add17]Received message READY from shim +peer0.org2.example.com | [17d 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5dfde8]Received message INIT from shim +peer0.org1.example.com | [197 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0b9 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0ba 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [662d247c]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [0f3 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f4add17]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0bb 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [662d247c]Move state message INIT +peer1.org1.example.com | [0f4 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [198 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [0b5 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [0cd 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:64b45487-0771-4094-a331-eaa56563e230 -peer1.org2.example.com | [0bb 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d98517c3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [0ca 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5699316-2e9e-45cd-a746-d6dd8685a54a]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [0bc 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [662d247c]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [17e 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b5dfde8]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0f5 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org2.example.com | [0b3 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c8e5fa5]Received message READY from shim -peer1.org1.example.com | [0ce 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [0bc 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [0bd 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d98517c3]sending state message INIT -peer1.org2.example.com | [0be 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d98517c3]Received message INIT from shim -peer1.org2.example.com | [0bf 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d98517c3]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [0bd 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [199 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer0.org2.example.com | [17f 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [0f6 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [0b6 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2c8e5fa5]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [0cf 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [0cb 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a5699316-2e9e-45cd-a746-d6dd8685a54a -peer0.org1.example.com | [0cc 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [0c0 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [0b8 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [19a 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0bf 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/common/flogging] resetAddrConn.resetTransport.Printf.Printf -> DEBU grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: Error while dialing dial tcp 172.18.0.6:7051: getsockopt: connection refused"; Reconnecting to {peer0.org2.example.com:7051 } +peer0.org2.example.com | [180 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5b5dfde8]Received INIT, initializing chaincode +peer1.org1.example.com | [0f7 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [19b 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0be 01-14 11:45:29.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [662d247c]sending state message INIT orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org1.example.com | [0f8 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2f4add17]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [19c 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0c0 01-14 11:45:29.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [662d247c]Received message INIT from shim +peer0.org2.example.com | [181 01-14 11:45:29.41 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org1.example.com | [0f9 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0c1 01-14 11:45:29.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [662d247c]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [19d 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +peer0.org2.example.com | [182 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org2.example.com | [0c2 01-14 11:45:29.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [0fa 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2f4add17]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [19e 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [0b9 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [2c8e5fa5]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [0c1 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d98517c3]Received INIT, initializing chaincode -peer1.org2.example.com | [0c2 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0c3 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d98517c3]Init get response status: 200 -peer1.org2.example.com | [0c4 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d98517c3]Init succeeded. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:54.292 UTC [msp/identity] newIdentity -> DEBU 088 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [0ba 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c8e5fa5]Move state message INIT -peer1.org1.example.com | [0d0 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=84f96210-b4ac-4b01-972a-018a942e12e7,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org1.example.com | [0cd 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [0ce 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=bea1f5ae-3e08-4b33-bee1-fdae8385fd44,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org1.example.com | [0cf 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -peer0.org2.example.com | [0bb 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2c8e5fa5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [0fb 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f4add17]Move state message INIT +peer0.org2.example.com | [183 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5dfde8]Init get response status: 200 +peer1.org2.example.com | [0c3 01-14 11:45:29.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [662d247c]Received INIT, initializing chaincode +peer0.org1.example.com | [19f 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer0.org2.example.com | [184 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5dfde8]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:28.228 UTC [msp/identity] newIdentity -> DEBU 088 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0c4 01-14 11:45:29.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [0fc 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2f4add17]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [185 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5dfde8]Move state message COMPLETED +peer0.org1.example.com | [1a0 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [0d1 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -peer1.org2.example.com | [0c5 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d98517c3]Move state message COMPLETED -peer0.org1.example.com | [0d0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [0c5 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [662d247c]Init get response status: 200 +peer0.org2.example.com | [186 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5b5dfde8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1a1 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer1.org1.example.com | [0fd 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [0bc 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0d2 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [0c6 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d98517c3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0bd 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c8e5fa5]sending state message INIT +peer0.org2.example.com | [187 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5b5dfde8]send state message COMPLETED +peer1.org2.example.com | [0c6 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [662d247c]Init succeeded. Sending COMPLETED orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [0fe 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f4add17]sending state message INIT +peer0.org1.example.com | [1a2 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +peer1.org2.example.com | [0c7 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [662d247c]Move state message COMPLETED orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org2.example.com | [0b7 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c8e5fa5]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [0d3 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [0d1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org2.example.com | [0be 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c8e5fa5]Received message INIT from shim -peer1.org2.example.com | [0c7 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d98517c3]send state message COMPLETED -peer0.org1.example.com | [0d2 01-04 01:50:56.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: escc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -peer0.org2.example.com | [0bf 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c8e5fa5]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [0c8 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d98517c3]Received message COMPLETED from shim +peer0.org2.example.com | [188 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5b5dfde8]Received message COMPLETED from shim +peer1.org1.example.com | [0ff 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f4add17]Received message INIT from shim +peer0.org1.example.com | [1a3 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [0c8 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [662d247c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [189 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b5dfde8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1a4 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4216c4300 orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org1.example.com | [100 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f4add17]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [18a 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5b5dfde8-2e56-4e63-bf47-690a15e9039f]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [0c9 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [662d247c]send state message COMPLETED +peer0.org1.example.com | [1a5 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org2.example.com | [0c0 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [0d4 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [0d5 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [0d6 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [0d7 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -peer1.org1.example.com | [0d8 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -peer1.org1.example.com | [0d9 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -peer1.org1.example.com | [0da 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -peer1.org1.example.com | [0db 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -peer1.org2.example.com | [0c9 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d98517c3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [0ca 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d98517c3-d32a-4ee3-910b-895a8cf49ee5]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [0cb 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d98517c3-d32a-4ee3-910b-895a8cf49ee5 -peer1.org2.example.com | [0cc 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [0d3 01-04 01:50:56.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 -peer1.org1.example.com | [0dc 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [0dd 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [0de 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -peer1.org1.example.com | [0df 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [0e0 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -peer1.org1.example.com | [0e1 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0e2 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org1.example.com | [0e3 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [0e4 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org1.example.com | [0e5 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -peer1.org1.example.com | [0e6 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -peer1.org1.example.com | [0e7 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [0e8 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [0e9 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0ea 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [0eb 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -peer1.org1.example.com | [0ec 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [0ed 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [0ee 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84f96210]Move state message READY -peer1.org1.example.com | [0ef 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [84f96210]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [0f0 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [84f96210]Entered state ready -peer1.org1.example.com | [0f1 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:84f96210-b4ac-4b01-972a-018a942e12e7 -peer1.org1.example.com | [0f2 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84f96210]sending state message READY -peer1.org1.example.com | [0f3 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84f96210]Received message READY from shim -peer1.org1.example.com | [0f5 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org1.example.com | [0f6 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [0f7 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [0f8 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org1.example.com | [0f9 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [84f96210]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [0fa 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [0cd 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [0ce 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=8fab02a9-2d01-4f79-8875-1e4c92ef76c5,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer1.org2.example.com | [0cf 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -peer1.org2.example.com | [0d0 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [0d1 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [0d2 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer1.org2.example.com | [0d3 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [0d4 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [0d5 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -peer1.org2.example.com | [0d6 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -peer1.org2.example.com | [0d7 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -peer0.org1.example.com | [0d4 01-04 01:50:56.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: -peer1.org2.example.com | [0d8 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [0d5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -peer0.org1.example.com | [0d6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -peer0.org1.example.com | [0d7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -peer0.org1.example.com | [0d8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -peer0.org1.example.com | [0d9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -peer0.org1.example.com | [0da 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [0db 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -peer0.org1.example.com | [0dd 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0dc 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [0de 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -peer1.org2.example.com | [0d9 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -peer1.org2.example.com | [0da 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [0db 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [0dc 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -peer1.org2.example.com | [0dd 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [0de 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -peer1.org2.example.com | [0df 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0e0 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [0e1 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [0e2 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [0e3 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -peer0.org1.example.com | [0df 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [0e0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [0e1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [0e2 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [0e3 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -peer0.org1.example.com | [0e4 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -peer0.org1.example.com | [0e5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [0e6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [0e7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0e8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0e4 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [0e5 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [0e6 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [0e7 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0e8 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [0e9 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -peer1.org2.example.com | [0ea 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [0eb 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0e9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +peer0.org2.example.com | [18b 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5b5dfde8-2e56-4e63-bf47-690a15e9039f +peer1.org2.example.com | [0ca 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [662d247c]Received message COMPLETED from shim +peer1.org1.example.com | [101 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [1a6 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [18c 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [102 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2f4add17]Received INIT, initializing chaincode +peer1.org2.example.com | [0cb 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [662d247c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1a7 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org2.example.com | [18d 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org1.example.com | [103 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [1a8 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [0cc 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [662d247c-b2dd-4332-aaa5-847fbdf12535]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [18e 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org1.example.com | [1a9 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [104 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f4add17]Init get response status: 200 +peer0.org2.example.com | [18f 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org2.example.com | [0cd 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:662d247c-b2dd-4332-aaa5-847fbdf12535 +peer0.org1.example.com | [1aa 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421617ae0, header 0xc4216c4390 +peer1.org1.example.com | [105 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f4add17]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0ce 01-14 11:45:29.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [190 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.292 UTC [msp] Validate -> DEBU 089 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:54.293 UTC [common/config] validateMSP -> DEBU 08a Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:54.293 UTC [msp] NewBccspMsp -> DEBU 08b Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:54.293 UTC [msp] Setup -> DEBU 08c Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:54.293 UTC [msp/identity] newIdentity -> DEBU 08d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [0ec 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fab02a9]Move state message READY -peer1.org1.example.com | [0f4 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84f96210]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [0fb 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [84f96210]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [0fc 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84f96210]Move state message INIT -peer1.org1.example.com | [0fd 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [84f96210]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [0fe 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [0ff 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84f96210]sending state message INIT -peer1.org1.example.com | [100 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84f96210]Received message INIT from shim -peer1.org1.example.com | [101 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84f96210]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [102 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [103 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [84f96210]Received INIT, initializing chaincode -peer0.org1.example.com | [0ea 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [0ed 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fab02a9]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [0eb 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0ec 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]Move state message READY -peer0.org1.example.com | [0ed 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bea1f5ae]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [0ee 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [bea1f5ae]Entered state ready -peer0.org1.example.com | [0ef 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:bea1f5ae-3e08-4b33-bee1-fdae8385fd44 -peer0.org1.example.com | [0f0 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]sending state message READY -peer0.org1.example.com | [0f1 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Received message READY from shim -peer0.org1.example.com | [0f2 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bea1f5ae]Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0c1 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [2c8e5fa5]Received INIT, initializing chaincode -peer0.org2.example.com | [0c2 01-04 01:50:56.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [0f3 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [0f4 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [0f5 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [0f6 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [0f7 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bea1f5ae]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [0f8 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [0f9 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bea1f5ae]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [0fa 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]Move state message INIT -peer1.org2.example.com | [0ee 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [8fab02a9]Entered state ready -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.293 UTC [msp/identity] newIdentity -> DEBU 08e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [0fb 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bea1f5ae]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [0ef 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:8fab02a9-2d01-4f79-8875-1e4c92ef76c5 -peer1.org2.example.com | [0f1 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [0f2 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [0f0 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fab02a9]sending state message READY -peer1.org2.example.com | [0f3 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [0f5 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [0fc 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [0fd 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]sending state message INIT -peer0.org1.example.com | [0fe 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Received message INIT from shim -peer0.org1.example.com | [0ff 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bea1f5ae]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [100 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [101 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bea1f5ae]Received INIT, initializing chaincode -peer0.org1.example.com | [102 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org1.example.com | [103 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Init get response status: 200 -peer0.org1.example.com | [104 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [105 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Move state message COMPLETED -peer0.org1.example.com | [106 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bea1f5ae]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [107 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]send state message COMPLETED -peer1.org2.example.com | [0f6 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8fab02a9]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [104 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [105 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84f96210]Init get response status: 200 -peer1.org1.example.com | [106 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84f96210]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [107 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84f96210]Move state message COMPLETED -peer1.org1.example.com | [108 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [84f96210]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [109 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [84f96210]send state message COMPLETED -peer1.org1.example.com | [10a 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [84f96210]Received message COMPLETED from shim -peer1.org1.example.com | [10b 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [84f96210]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [10c 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [84f96210-b4ac-4b01-972a-018a942e12e7]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [10d 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:84f96210-b4ac-4b01-972a-018a942e12e7 -peer1.org2.example.com | [0f7 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0c3 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c8e5fa5]Init get response status: 200 -peer0.org2.example.com | [0c4 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c8e5fa5]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [0c5 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c8e5fa5]Move state message COMPLETED -peer0.org2.example.com | [0c6 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c8e5fa5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [0c7 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c8e5fa5]send state message COMPLETED -peer0.org2.example.com | [0c8 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2c8e5fa5]Received message COMPLETED from shim -peer0.org2.example.com | [0c9 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2c8e5fa5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [0ca 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2c8e5fa5-120a-461b-ba73-eaee00374a9e]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [0cb 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2c8e5fa5-120a-461b-ba73-eaee00374a9e -peer0.org1.example.com | [108 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]Received message COMPLETED from shim -peer0.org1.example.com | [109 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bea1f5ae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [0f8 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8fab02a9]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [0f9 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fab02a9]Move state message INIT -peer1.org2.example.com | [0fa 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fab02a9]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [0fb 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [0fc 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fab02a9]sending state message INIT -peer1.org1.example.com | [10e 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [10f 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [110 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=197f17fd-e1f4-4f63-add6-0e0b5be9ed99,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [111 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -peer1.org1.example.com | [112 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [113 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [114 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [10a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bea1f5ae-3e08-4b33-bee1-fdae8385fd44]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [0f4 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fab02a9]Received message READY from shim -peer1.org2.example.com | [0fd 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fab02a9]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [0fe 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fab02a9]Received message INIT from shim -peer1.org2.example.com | [0ff 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fab02a9]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [100 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [10b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bea1f5ae-3e08-4b33-bee1-fdae8385fd44 -peer1.org2.example.com | [101 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8fab02a9]Received INIT, initializing chaincode -peer1.org1.example.com | [115 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [0cc 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [10c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [10d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org2.example.com | [102 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [103 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fab02a9]Init get response status: 200 -peer0.org2.example.com | [0cd 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [0ce 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=5a69e3f7-3d2d-43d8-a7dc-43ca876e8889,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org2.example.com | [0cf 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -peer0.org2.example.com | [0d0 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [0d1 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [10e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=17ef014e-7888-4372-9b8f-5de7a34d16d2,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [10f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -peer1.org2.example.com | [104 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fab02a9]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [105 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fab02a9]Move state message COMPLETED -peer1.org2.example.com | [106 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8fab02a9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [107 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8fab02a9]send state message COMPLETED -peer1.org2.example.com | [108 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8fab02a9]Received message COMPLETED from shim -peer1.org2.example.com | [109 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fab02a9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [10a 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8fab02a9-2d01-4f79-8875-1e4c92ef76c5]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [110 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [10b 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8fab02a9-2d01-4f79-8875-1e4c92ef76c5 -peer1.org2.example.com | [10c 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [10d 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org2.example.com | [10e 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=06d0f555-8005-4fae-aeb2-49280f131870,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [10f 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -peer0.org1.example.com | [111 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer1.org1.example.com | [116 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 -peer0.org2.example.com | [0d2 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer1.org2.example.com | [110 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [112 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org1.example.com | [117 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -peer1.org1.example.com | [118 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -peer1.org1.example.com | [119 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -peer1.org1.example.com | [11a 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -peer1.org1.example.com | [11b 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -peer1.org1.example.com | [11c 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [111 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [113 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [114 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [115 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -peer0.org1.example.com | [116 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -peer0.org1.example.com | [117 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -peer0.org1.example.com | [118 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -peer1.org2.example.com | [112 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer1.org2.example.com | [113 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org2.example.com | [0d3 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org1.example.com | [11d 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -peer0.org1.example.com | [119 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -peer1.org2.example.com | [114 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [11a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -peer0.org2.example.com | [0d4 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org2.example.com | [0d5 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -peer0.org2.example.com | [0d6 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -peer0.org2.example.com | [0d7 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -peer0.org2.example.com | [0d8 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -peer0.org2.example.com | [0d9 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -peer0.org2.example.com | [0db 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [0da 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -peer0.org2.example.com | [0dd 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0dc 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [0de 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -peer0.org2.example.com | [0df 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [115 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -peer1.org2.example.com | [116 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -peer1.org2.example.com | [117 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -peer1.org2.example.com | [118 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -peer1.org2.example.com | [119 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -peer1.org2.example.com | [11a 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [11b 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [11c 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -peer1.org2.example.com | [11d 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [11e 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -peer1.org2.example.com | [11f 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [120 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [121 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [122 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [123 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 -peer1.org2.example.com | [124 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [125 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [126 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [127 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [128 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [129 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed -peer1.org2.example.com | [12a 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [12b 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [12c 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06d0f555]Move state message READY -peer1.org2.example.com | [12d 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [06d0f555]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [12e 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [06d0f555]Entered state ready -peer1.org2.example.com | [12f 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:06d0f555-8005-4fae-aeb2-49280f131870 -peer1.org2.example.com | [130 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06d0f555]sending state message READY -peer1.org2.example.com | [131 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06d0f555]Received message READY from shim -peer1.org2.example.com | [132 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06d0f555]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [133 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [134 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [135 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [136 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [137 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [06d0f555]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [138 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [139 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [06d0f555]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [13a 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06d0f555]Move state message INIT -peer0.org1.example.com | [11b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [11e 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [13b 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [06d0f555]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [13c 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [11d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -peer0.org1.example.com | [11e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [11c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [11f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [120 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [121 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [122 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [13d 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06d0f555]sending state message INIT -peer0.org1.example.com | [123 01-04 01:50:56.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.0.2 -peer1.org2.example.com | [13e 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06d0f555]Received message INIT from shim -peer1.org2.example.com | [13f 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06d0f555]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [140 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [141 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [06d0f555]Received INIT, initializing chaincode -peer1.org2.example.com | [142 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06d0f555]Init get response status: 200 -peer1.org2.example.com | [143 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06d0f555]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [144 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06d0f555]Move state message COMPLETED -peer1.org2.example.com | [145 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06d0f555]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [146 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06d0f555]send state message COMPLETED -peer1.org2.example.com | [147 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06d0f555]Received message COMPLETED from shim -peer1.org2.example.com | [148 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [06d0f555]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [149 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [06d0f555-8005-4fae-aeb2-49280f131870]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [124 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [14a 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:06d0f555-8005-4fae-aeb2-49280f131870 -peer0.org1.example.com | [125 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [126 01-04 01:50:56.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.0.2 launch seq completed -peer0.org1.example.com | [128 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [129 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [127 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [12a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]Move state message READY -peer0.org1.example.com | [12c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ef014e]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [12d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [17ef014e]Entered state ready -peer0.org1.example.com | [12e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:17ef014e-7888-4372-9b8f-5de7a34d16d2 -peer0.org1.example.com | [12f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]sending state message READY -peer0.org1.example.com | [12b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [130 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [132 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [133 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [134 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [135 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [17ef014e]Inside sendExecuteMessage. Message INIT -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [11f 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org2.example.com | [0e0 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [136 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [14b 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [14c 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [14d 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=a4c82984-986f-45b0-a038-31cf6945188d,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer0.org1.example.com | [137 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [17ef014e]sendExecuteMsg trigger event INIT -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [120 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -peer0.org2.example.com | [0e1 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [14e 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -peer1.org2.example.com | [14f 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [150 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer0.org1.example.com | [131 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [139 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]Move state message INIT -peer0.org1.example.com | [13a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ef014e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [138 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Received message READY from shim -peer0.org1.example.com | [13c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ef014e]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [151 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) -peer1.org2.example.com | [152 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org1.example.com | [121 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [122 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [13b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [13d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]sending state message INIT -peer0.org1.example.com | [13e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Received message INIT from shim -peer0.org1.example.com | [13f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ef014e]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [140 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [141 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [17ef014e]Received INIT, initializing chaincode -peer0.org1.example.com | [142 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Init get response status: 200 -peer0.org1.example.com | [143 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [144 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Move state message COMPLETED -peer0.org1.example.com | [145 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ef014e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [146 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]send state message COMPLETED -peer1.org2.example.com | [153 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [154 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -peer1.org2.example.com | [155 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -peer1.org2.example.com | [156 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -peer1.org2.example.com | [157 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -peer1.org2.example.com | [158 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -peer1.org2.example.com | [159 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [147 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]Received message COMPLETED from shim -peer0.org2.example.com | [0e2 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [0e3 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -peer0.org2.example.com | [0e4 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [0e5 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [0e6 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org2.example.com | [0e7 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [15a 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -peer1.org2.example.com | [15b 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [15c 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [15d 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -peer1.org2.example.com | [15e 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [15f 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [148 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ef014e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [149 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ef014e-7888-4372-9b8f-5de7a34d16d2]HandleMessage- COMPLETED. Notify -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org2.example.com | [160 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.293 UTC [msp/identity] newIdentity -> DEBU 08f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [14a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:17ef014e-7888-4372-9b8f-5de7a34d16d2 -peer0.org1.example.com | [14b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [161 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [162 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -peer1.org2.example.com | [163 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [0e8 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org1.example.com | [14c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org1.example.com | [123 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [124 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [164 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [0e9 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -peer0.org1.example.com | [14d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=7c6cfed8-b2db-4109-a1c2-8469df2a87ac,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer1.org2.example.com | [165 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org2.example.com | [166 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [167 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org2.example.com | [168 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -peer1.org2.example.com | [169 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [14e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [16a 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [16b 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4c82984]Move state message READY -peer1.org2.example.com | [16c 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4c82984]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [14f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [150 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [151 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -peer0.org1.example.com | [152 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [153 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [154 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -peer0.org1.example.com | [155 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -peer1.org2.example.com | [16d 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a4c82984]Entered state ready -peer0.org2.example.com | [0ea 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [156 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -peer1.org2.example.com | [16e 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a4c82984-986f-45b0-a038-31cf6945188d -peer1.org2.example.com | [16f 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4c82984]sending state message READY -peer0.org2.example.com | [0eb 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [157 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -peer1.org1.example.com | [125 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 -peer1.org2.example.com | [170 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4c82984]Received message READY from shim -peer1.org2.example.com | [171 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4c82984]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [158 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -peer0.org1.example.com | [15a 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [0ec 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a69e3f7]Move state message READY -peer1.org2.example.com | [172 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [173 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [159 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -peer0.org1.example.com | [15b 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [15c 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -peer1.org1.example.com | [126 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [174 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [175 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer0.org1.example.com | [15d 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [0ed 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a69e3f7]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [176 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a4c82984]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [15e 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org2.example.com | [0ee 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5a69e3f7]Entered state ready -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [127 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [15f 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [177 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [178 01-04 01:50:57.03 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a4c82984]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [179 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4c82984]Move state message INIT -peer1.org2.example.com | [17a 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4c82984]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [17b 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [160 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [0ef 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5a69e3f7-3d2d-43d8-a7dc-43ca876e8889 -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org2.example.com | [17c 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4c82984]sending state message INIT -peer0.org1.example.com | [161 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.294 UTC [msp] Validate -> DEBU 090 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:54.294 UTC [common/config] validateMSP -> DEBU 091 Setting up MSP for org Org2MSP -peer0.org1.example.com | [162 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -peer1.org2.example.com | [17d 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4c82984]Received message INIT from shim -peer1.org2.example.com | [17e 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4c82984]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [17f 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [163 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -peer0.org1.example.com | [164 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -orderer.example.com | 2018-01-04 01:50:54.294 UTC [msp] NewBccspMsp -> DEBU 092 Creating BCCSP-based MSP instance -peer1.org1.example.com | [128 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [129 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed -peer1.org2.example.com | [180 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a4c82984]Received INIT, initializing chaincode -peer1.org2.example.com | [181 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [165 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [166 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -peer0.org1.example.com | [168 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -orderer.example.com | 2018-01-04 01:50:54.294 UTC [msp] Setup -> DEBU 093 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:54.294 UTC [msp/identity] newIdentity -> DEBU 094 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0cf 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [1ab 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [106 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f4add17]Move state message COMPLETED +peer0.org2.example.com | [191 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0d0 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=5e236448-3b3d-4b8f-bea8-137f80521c7d,syscc=true,proposal=0x0,canname=escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.229 UTC [msp] Validate -> DEBU 089 MSP OrdererMSP validating identity +peer1.org1.example.com | [107 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2f4add17]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [1ac 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2 +peer0.org2.example.com | [192 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0d1 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +orderer.example.com | 2018-01-14 11:45:28.229 UTC [common/config] validateMSP -> DEBU 08a Setting up MSP for org Org2MSP +peer1.org1.example.com | [108 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2f4add17]send state message COMPLETED +peer0.org1.example.com | [1ad 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2 channel id: +orderer.example.com | 2018-01-14 11:45:28.229 UTC [msp] NewBccspMsp -> DEBU 08b Creating BCCSP-based MSP instance +peer1.org2.example.com | [0d2 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [193 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1ae 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2 channel id: version: 1.0.2 +peer1.org1.example.com | [109 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2f4add17]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:28.229 UTC [msp] Setup -> DEBU 08c Setting up MSP instance Org2MSP +peer0.org1.example.com | [1af 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2,syscc=true,proposal=0xc421617ae0,canname=cscc:1.0.2 +peer1.org2.example.com | [0d3 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [1b0 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer1.org1.example.com | [10a 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2f4add17]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [194 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0d4 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: escc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | 2018-01-14 11:45:28.230 UTC [msp/identity] newIdentity -> DEBU 08d Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [1b1 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [195 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0d5 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org1.example.com | [10b 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2f4add17-95cd-4ed8-baf5-1e995f560277]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [1b2 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [0d6 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org1.example.com | [10c 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2f4add17-95cd-4ed8-baf5-1e995f560277 +peer0.org2.example.com | [196 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1b3 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1973ce8a]Inside sendExecuteMessage. Message TRANSACTION orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [10d 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [1b4 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1b5 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=escc:1.0.2 +peer0.org1.example.com | [1b6 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1973ce8a]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [1b7 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1973ce8a]Move state message TRANSACTION +peer0.org2.example.com | [197 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1b8 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1973ce8a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer1.org2.example.com | [182 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [183 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4c82984]Init get response status: 200 -peer1.org2.example.com | [184 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4c82984]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [185 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4c82984]Move state message COMPLETED -peer0.org1.example.com | [167 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0f0 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a69e3f7]sending state message READY -peer0.org2.example.com | [0f1 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a69e3f7]Received message READY from shim -peer1.org1.example.com | [12b 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org2.example.com | [186 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4c82984]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [169 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [10e 01-14 11:45:28.79 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | [1b9 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [198 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [12c 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [0f2 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a69e3f7]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [187 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4c82984]send state message COMPLETED -peer0.org1.example.com | [16a 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [1ba 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1973ce8a]sending state message TRANSACTION +peer1.org1.example.com | [10f 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=246f60a6-b19c-4e0d-a722-11d09694f3b7,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [1bb 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1973ce8a]Received message TRANSACTION from shim orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [16b 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]Move state message READY +peer1.org1.example.com | [110 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +peer0.org2.example.com | [199 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1bc 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1973ce8a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [0f3 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | [188 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a4c82984]Received message COMPLETED from shim -peer1.org2.example.com | [189 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4c82984]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [18a 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a4c82984-986f-45b0-a038-31cf6945188d]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [18b 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a4c82984-986f-45b0-a038-31cf6945188d -peer0.org1.example.com | [16c 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c6cfed8]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [0f4 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [0f5 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [0f6 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org2.example.com | [0f7 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5a69e3f7]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [0f8 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [18c 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [16d 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7c6cfed8]Entered state ready +peer1.org1.example.com | [111 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [1bd 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1973ce8a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [19a 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [1be 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer0.org1.example.com | [16e 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7c6cfed8-b2db-4109-a1c2-8469df2a87ac -peer1.org2.example.com | [18d 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org2.example.com | [18e 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer1.org2.example.com | [18f 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer1.org2.example.com | [190 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] -peer0.org1.example.com | [16f 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]sending state message READY -peer1.org1.example.com | [12d 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [197f17fd]Move state message READY -peer0.org2.example.com | [0f9 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5a69e3f7]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [0fa 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a69e3f7]Move state message INIT -peer0.org2.example.com | [0fb 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a69e3f7]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [0fc 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [0fd 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a69e3f7]sending state message INIT -peer0.org2.example.com | [0fe 01-04 01:50:56.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a69e3f7]Received message INIT from shim -peer0.org2.example.com | [0ff 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a69e3f7]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [100 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [101 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5a69e3f7]Received INIT, initializing chaincode -peer0.org2.example.com | [102 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org2.example.com | [103 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a69e3f7]Init get response status: 200 -peer0.org2.example.com | [104 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a69e3f7]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [191 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer0.org1.example.com | [170 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Received message READY from shim +peer1.org1.example.com | [112 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [19b 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1bf 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org2.example.com | [0d7 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +peer0.org2.example.com | [19c 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | [113 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [1c0 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer1.org2.example.com | [0d8 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +peer0.org2.example.com | [19d 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +peer0.org1.example.com | [1c1 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +peer1.org1.example.com | [114 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org2.example.com | [0d9 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +peer0.org1.example.com | [1c2 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +peer0.org2.example.com | [19e 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer1.org2.example.com | [0da 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +peer0.org1.example.com | [1c3 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer0.org2.example.com | [19f 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer1.org2.example.com | [0db 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +peer1.org1.example.com | [115 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer1.org2.example.com | [192 01-04 01:50:57.04 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer1.org2.example.com | [193 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -peer0.org1.example.com | [171 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c6cfed8]Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [172 01-04 01:50:56.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 -peer1.org2.example.com | [194 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer1.org2.example.com | [195 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer1.org2.example.com | [196 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer1.org2.example.com | [197 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer0.org1.example.com | [173 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [105 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a69e3f7]Move state message COMPLETED +peer0.org2.example.com | [1a0 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer0.org1.example.com | [1c4 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 +peer0.org2.example.com | [1a1 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer1.org2.example.com | [0dc 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [1c5 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [1a2 01-14 11:45:29.42 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer1.org2.example.com | [198 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer1.org2.example.com | [199 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer1.org2.example.com | [19a 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org2.example.com | [19b 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer1.org2.example.com | [19c 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer0.org1.example.com | [174 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [12a 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [12f 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer1.org1.example.com | [12e 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [197f17fd]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [130 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [197f17fd]Entered state ready -peer1.org2.example.com | [19d 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer1.org2.example.com | [19e 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer1.org2.example.com | [19f 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer0.org2.example.com | [106 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5a69e3f7]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [107 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5a69e3f7]send state message COMPLETED -peer0.org2.example.com | [108 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5a69e3f7]Received message COMPLETED from shim -peer0.org2.example.com | [109 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a69e3f7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0dd 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [1c6 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer0.org2.example.com | [1a3 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry orderer.example.com | SCjyRdD3aQ== +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [0de 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +peer0.org2.example.com | [1a4 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421565950 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [1c7 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:54.294 UTC [msp/identity] newIdentity -> DEBU 095 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0df 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org2.example.com | [1a5 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [1c8 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421595440), Data:(*common.BlockData)(0xc421702880), Metadata:(*common.BlockMetadata)(0xc4217028c0)}, doMVCCValidation=true +orderer.example.com | 2018-01-14 11:45:28.230 UTC [msp/identity] newIdentity -> DEBU 08e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [0e0 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [1a6 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [1c9 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [116 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +peer1.org2.example.com | [0e1 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [1a7 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [0e2 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [117 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [1ca 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org2.example.com | [1a8 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [0e3 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [118 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | [1a9 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [1cb 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0xc4, 0xf6, 0xef, 0x6e, 0xea, 0xc7, 0xd1, 0xa2, 0x1, 0xa, 0x48, 0x37, 0x3d, 0xf9, 0x14, 0x71, 0x13, 0xd2, 0x9, 0x4f, 0x96, 0x3b, 0x2c, 0xc3, 0xaf, 0xef, 0x96, 0xc4, 0x7b, 0xba, 0x6d} txOffsets= +peer1.org1.example.com | [119 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +peer1.org2.example.com | [0e4 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=11890 +peer0.org2.example.com | [1aa 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421551e00, header 0xc4215659e0 +peer1.org2.example.com | [0e5 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [131 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:197f17fd-e1f4-4f63-add6-0e0b5be9ed99 -peer1.org1.example.com | [132 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [197f17fd]sending state message READY -peer1.org1.example.com | [133 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [197f17fd]Received message READY from shim -peer1.org1.example.com | [134 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [197f17fd]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [1a0 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1a1 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer1.org1.example.com | [11a 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +peer0.org1.example.com | ] +peer0.org2.example.com | [1ab 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org1.example.com | [175 01-04 01:50:56.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: qscc:1.0.2 -peer1.org1.example.com | [135 01-04 01:50:56.12 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [10a 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5a69e3f7-3d2d-43d8-a7dc-43ca876e8889]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [1a2 01-04 01:50:57.05 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer0.org1.example.com | [176 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7c6cfed8]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [0e6 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [1cc 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index +peer0.org2.example.com | [1ac 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9c1e8d090b668dcb9fa5d4c7cfeb6e01188d3b4cf024469bc4df17609423f3b7 orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer1.org1.example.com | [11c 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +peer0.org1.example.com | [1cd 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [1ad 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9c1e8d090b668dcb9fa5d4c7cfeb6e01188d3b4cf024469bc4df17609423f3b7 channel id: +peer1.org2.example.com | [0e7 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [0e8 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [11d 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [1ce 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [136 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [1a3 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [177 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [10b 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5a69e3f7-3d2d-43d8-a7dc-43ca876e8889 -peer0.org2.example.com | [10c 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [10d 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +peer1.org2.example.com | [0e9 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [1ae 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9c1e8d090b668dcb9fa5d4c7cfeb6e01188d3b4cf024469bc4df17609423f3b7 channel id: version: 1.0.2 +peer0.org1.example.com | [1cf 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer1.org2.example.com | [0ea 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer1.org1.example.com | [11e 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +peer0.org1.example.com | [1d0 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [0eb 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +peer0.org2.example.com | [1af 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=9c1e8d090b668dcb9fa5d4c7cfeb6e01188d3b4cf024469bc4df17609423f3b7,syscc=true,proposal=0xc421551e00,canname=cscc:1.0.2 +peer1.org1.example.com | [11f 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org2.example.com | [1b0 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer1.org2.example.com | [0ec 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [11b 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org1.example.com | [137 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [10e 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=86cdf33e-c68b-444d-b7ac-bbc3d5070913,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [138 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [178 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7c6cfed8]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [1a4 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4214f4ff0 -peer0.org2.example.com | [10f 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -peer1.org1.example.com | [139 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [197f17fd]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [1d1 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [120 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [1b1 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [0ed 01-14 11:45:29.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1d2 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [179 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]Move state message INIT -peer1.org2.example.com | [1a5 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [110 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [13a 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:54.294 UTC [msp/identity] newIdentity -> DEBU 096 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [111 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org1.example.com | [17a 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c6cfed8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [1a6 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [13b 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [197f17fd]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [121 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [1b2 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer1.org2.example.com | [0ee 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e236448]Move state message READY +peer0.org1.example.com | [1d3 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +orderer.example.com | 2018-01-14 11:45:28.230 UTC [msp/identity] newIdentity -> DEBU 08f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [1b3 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9c1e8d09]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [0ef 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5e236448]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [122 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [13c 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [197f17fd]Move state message INIT -peer0.org1.example.com | [17b 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [112 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer1.org2.example.com | [1a7 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org1.example.com | [17c 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]sending state message INIT +peer0.org1.example.com | [1d4 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [1b4 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [0f0 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5e236448]Entered state ready orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [113 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org1.example.com | [13d 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [197f17fd]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [1a8 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [13e 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [17d 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Received message INIT from shim -peer0.org2.example.com | [114 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [123 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [1b5 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [1d5 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org1.example.com | [124 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [0f1 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5e236448-3b3d-4b8f-bea8-137f80521c7d +peer1.org1.example.com | [125 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +peer0.org1.example.com | [1d6 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org2.example.com | [1b6 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9c1e8d09]sendExecuteMsg trigger event TRANSACTION orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | [13f 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [197f17fd]sending state message INIT -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [126 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org2.example.com | [0f2 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e236448]sending state message READY +peer0.org2.example.com | [1b7 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9c1e8d09]Move state message TRANSACTION +peer0.org1.example.com | [1d7 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [1a9 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [140 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [197f17fd]Received message INIT from shim -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | [17e 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c6cfed8]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1aa 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42154a2d0, header 0xc4214f5080 +peer1.org2.example.com | [0f3 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e236448]Received message READY from shim +peer0.org1.example.com | [1d8 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [1b8 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9c1e8d09]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [127 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [1ab 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org1.example.com | [141 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [197f17fd]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [17f 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [1ac 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0e0cfb752afbbaf3432749f5dd6a8b784c95349490774c6fa97c725adc35a811 +peer1.org2.example.com | [0f4 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5e236448]Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [1b9 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [128 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [1d9 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [129 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org2.example.com | [115 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -peer0.org1.example.com | [180 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7c6cfed8]Received INIT, initializing chaincode +peer0.org2.example.com | [1ba 01-14 11:45:33.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9c1e8d09]sending state message TRANSACTION +peer1.org2.example.com | [0f5 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [12a 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed +peer0.org1.example.com | [1da 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer1.org1.example.com | [142 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [1ad 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0e0cfb752afbbaf3432749f5dd6a8b784c95349490774c6fa97c725adc35a811 channel id: +peer1.org1.example.com | [12b 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [0f6 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [1bb 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9c1e8d09]Received message TRANSACTION from shim +peer1.org1.example.com | [12c 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [143 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [197f17fd]Received INIT, initializing chaincode -peer0.org1.example.com | [181 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [1ae 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0e0cfb752afbbaf3432749f5dd6a8b784c95349490774c6fa97c725adc35a811 channel id: version: 1.0.2 -peer0.org2.example.com | [116 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -peer0.org1.example.com | [182 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [1af 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=0e0cfb752afbbaf3432749f5dd6a8b784c95349490774c6fa97c725adc35a811,syscc=true,proposal=0xc42154a2d0,canname=cscc:1.0.2 -peer1.org1.example.com | [144 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [197f17fd]Init get response status: 200 +peer1.org2.example.com | [0f7 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [12d 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246f60a6]Move state message READY +peer0.org1.example.com | [1db 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer1.org2.example.com | [0f8 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org1.example.com | [12e 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [246f60a6]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org2.example.com | [1bc 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9c1e8d09]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1dc 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org2.example.com | [117 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -peer1.org2.example.com | [1b0 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org2.example.com | [1b1 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [145 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [197f17fd]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [12f 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [246f60a6]Entered state ready +peer1.org2.example.com | [0f9 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5e236448]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [1bd 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9c1e8d09]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [1dd 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org1.example.com | [130 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:246f60a6-b19c-4e0d-a722-11d09694f3b7 orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org2.example.com | [118 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -peer0.org1.example.com | [183 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Init get response status: 200 -peer1.org2.example.com | [1b2 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer1.org1.example.com | [146 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [197f17fd]Move state message COMPLETED +peer0.org2.example.com | [1be 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer1.org2.example.com | [0fa 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [1de 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [119 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -peer0.org1.example.com | [184 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1b3 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e0cfb75]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [147 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [197f17fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:54.295 UTC [msp] Validate -> DEBU 097 MSP Org2MSP validating identity -peer0.org2.example.com | [11b 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -peer1.org2.example.com | [1b4 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [148 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [197f17fd]send state message COMPLETED -peer0.org1.example.com | [185 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Move state message COMPLETED -peer1.org2.example.com | [1b5 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [1b6 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0e0cfb75]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [1b7 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e0cfb75]Move state message TRANSACTION -peer0.org2.example.com | [11c 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [149 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [197f17fd]Received message COMPLETED from shim -peer1.org2.example.com | [1b8 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0e0cfb75]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:54.295 UTC [msp] Setup -> DEBU 098 Setting up the MSP manager (3 msps) -peer0.org2.example.com | [11d 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -peer0.org1.example.com | [186 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c6cfed8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [14a 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [197f17fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:54.295 UTC [msp] Setup -> DEBU 099 MSP manager setup complete, setup 3 msps -peer1.org2.example.com | [1b9 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [187 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]send state message COMPLETED -peer0.org2.example.com | [11e 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [14b 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [197f17fd-e1f4-4f63-add6-0e0b5be9ed99]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [1ba 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e0cfb75]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 09a Returning policy Readers for evaluation -peer0.org2.example.com | [11a 01-04 01:50:56.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [188 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]Received message COMPLETED from shim -peer1.org2.example.com | [1bb 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e0cfb75]Received message TRANSACTION from shim -peer1.org1.example.com | [14c 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:197f17fd-e1f4-4f63-add6-0e0b5be9ed99 -peer0.org1.example.com | [189 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c6cfed8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1bc 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e0cfb75]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [11f 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 09b In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org1.example.com | [18a 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c6cfed8-b2db-4109-a1c2-8469df2a87ac]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [18b 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7c6cfed8-b2db-4109-a1c2-8469df2a87ac -peer1.org1.example.com | [14d 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [120 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [1bd 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0e0cfb75]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [18c 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 09c Returning policy Writers for evaluation -peer1.org1.example.com | [14e 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [1be 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org1.example.com | [18d 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [121 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 09d In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 09e Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 09f In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a0 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a1 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a2 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a3 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a4 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0a5 In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0a7 In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a8 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0a9 In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0aa Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0ab In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0ac Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0ad In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0ae Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0af In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b0 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b1 In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b2 Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b3 In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b4 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b5 In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b6 Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b7 In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b8 Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b9 In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums -orderer.example.com | 2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0ba Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0bb In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0bc Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0bd In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0be Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0bf In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c0 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c1 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c2 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c3 In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c4 Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c5 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c6 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c7 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c8 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c9 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0ca Returning policy SampleConsortium/Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0cb In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0cc Returning policy SampleConsortium/Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0cd In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0ce Returning policy SampleConsortium/Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0cf In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d0 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0d1 In commit adding relative sub-policy Consortiums/Admins to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d2 Returning policy SampleConsortium/Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0d3 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d4 Returning policy SampleConsortium/Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0d5 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d6 Returning policy SampleConsortium/Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0d7 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d8 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d9 Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0da Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0db Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0dc Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0dd Returning policy Admins for evaluation -peer1.org1.example.com | [14f 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=d7e742ea-b386-4a6b-99bd-40f2b0eef6e9,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer1.org1.example.com | [150 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -peer1.org1.example.com | [151 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [122 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [1bf 01-04 01:50:58.17 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [1c0 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0de Returning policy Readers for evaluation -peer1.org1.example.com | [152 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer0.org1.example.com | [18e 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer1.org2.example.com | [1c1 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -peer1.org2.example.com | [1c2 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -peer1.org2.example.com | [1c3 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org2.example.com | [123 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 -peer0.org2.example.com | [124 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [125 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer0.org1.example.com | [18f 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer1.org2.example.com | [1c4 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -peer0.org2.example.com | [127 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [128 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0df As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [153 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) -peer0.org1.example.com | [190 01-04 01:50:56.39 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] -peer0.org2.example.com | [126 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [1c5 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0e0 Returning policy Writers for evaluation -peer0.org1.example.com | [191 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer0.org2.example.com | [129 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.0.2 launch seq completed -peer1.org1.example.com | [154 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org2.example.com | [1c6 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -peer0.org2.example.com | [12a 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [155 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [192 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0e1 As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [193 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 -peer0.org2.example.com | [12b 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1c7 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [194 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0e2 Returning policy Orderer/BlockValidation for evaluation -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | [12c 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86cdf33e]Move state message READY -peer1.org2.example.com | [1c8 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215c0200), Data:(*common.BlockData)(0xc4215b44e0), Metadata:(*common.BlockMetadata)(0xc4215b4520)}, doMVCCValidation=true -peer0.org1.example.com | [195 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer0.org2.example.com | [12d 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [86cdf33e]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1c9 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | 2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0e3 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [196 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer0.org2.example.com | [12e 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [86cdf33e]Entered state ready -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | [197 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer0.org2.example.com | [12f 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:86cdf33e-c68b-444d-b7ac-bbc3d5070913 -peer1.org2.example.com | [1ca 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -orderer.example.com | 2018-01-04 01:50:54.297 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 0e4 retrieveBlockByNumber() - blockNum = [0] -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org2.example.com | [130 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86cdf33e]sending state message READY -peer0.org1.example.com | [198 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-04 01:50:54.297 UTC [fsblkstorage] newBlockfileStream -> DEBU 0e5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -peer0.org2.example.com | [132 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86cdf33e]Received message READY from shim -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [199 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1cb 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0x61, 0xe4, 0x69, 0xf1, 0xee, 0xa5, 0x26, 0xf8, 0x82, 0xb2, 0x7f, 0xf9, 0x50, 0x2d, 0xfb, 0x67, 0xc4, 0xd7, 0xc4, 0x2b, 0xd6, 0x9c, 0x67, 0x53, 0x48, 0x11, 0x32, 0xbd, 0xf, 0xe6, 0x98} txOffsets= -orderer.example.com | 2018-01-04 01:50:54.297 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e6 Remaining bytes=[9082], Going to peek [8] bytes -peer0.org2.example.com | [133 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86cdf33e]Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [156 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=11890 -peer0.org1.example.com | [19a 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer0.org2.example.com | [131 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer1.org2.example.com | ] -orderer.example.com | 2018-01-04 01:50:54.297 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e7 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -peer1.org1.example.com | [157 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -peer0.org1.example.com | [19b 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer0.org2.example.com | [134 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | 2018-01-04 01:50:54.297 UTC [orderer/multichain] newChainSupport -> DEBU 0e8 [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): -peer1.org1.example.com | [158 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -peer1.org2.example.com | [1cc 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index -peer0.org2.example.com | [135 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:54.297 UTC [orderer/multichain] NewManagerImpl -> INFO 0e9 Starting with system channel testchainid and orderer type solo -peer0.org1.example.com | [19c 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer1.org1.example.com | [159 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -peer0.org2.example.com | [136 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [1cd 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | 2018-01-04 01:50:54.297 UTC [orderer/main] main -> INFO 0ea Beginning to serve requests -peer0.org1.example.com | [19d 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer1.org1.example.com | [15a 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -peer0.org2.example.com | [137 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [86cdf33e]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [1ce 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org2.example.com | [1cf 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer1.org2.example.com | [1d0 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [1d1 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | 2018-01-04 01:50:57.095 UTC [orderer/main] Deliver -> DEBU 0eb Starting new Deliver handler -peer0.org2.example.com | [138 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [19e 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer1.org2.example.com | [1d2 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [15b 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [139 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [86cdf33e]sendExecuteMsg trigger event INIT -orderer.example.com | 2018-01-04 01:50:57.095 UTC [orderer/common/deliver] Handle -> DEBU 0ec Starting new deliver loop -peer0.org1.example.com | [19f 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer1.org2.example.com | [1d3 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer1.org2.example.com | [1d4 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [13a 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86cdf33e]Move state message INIT -peer1.org1.example.com | [15c 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -peer1.org2.example.com | [1d5 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer1.org2.example.com | [1d6 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [1d7 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [1d8 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.095 UTC [orderer/common/deliver] Handle -> DEBU 0ed Attempting to read seek info message -peer0.org2.example.com | [13b 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [86cdf33e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [1a0 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer1.org2.example.com | [1d9 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [15e 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -orderer.example.com | 2018-01-04 01:50:57.106 UTC [orderer/main] Broadcast -> DEBU 0ee Starting new Broadcast handler -peer0.org2.example.com | [13c 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [1da 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [1db 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [15f 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -peer0.org1.example.com | [1a1 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-04 01:50:57.106 UTC [orderer/common/broadcast] Handle -> DEBU 0ef Starting new broadcast loop -peer0.org2.example.com | [13d 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86cdf33e]sending state message INIT -peer1.org2.example.com | [1dc 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [1a2 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer1.org2.example.com | [1dd 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [15d 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org1.example.com | [160 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [1de 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.106 UTC [orderer/common/broadcast] Handle -> DEBU 0f0 Preprocessing CONFIG_UPDATE -peer0.org2.example.com | [13e 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86cdf33e]Received message INIT from shim -peer0.org1.example.com | [1a3 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [1df 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [161 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [1e0 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [13f 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86cdf33e]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 2018-01-04 01:50:57.107 UTC [orderer/configupdate] Process -> DEBU 0f1 Processing channel creation request for channel businesschannel -peer1.org1.example.com | [162 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [1e1 01-04 01:50:58.18 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [140 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [1a4 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215dccf0 -orderer.example.com | 2018-01-04 01:50:57.107 UTC [msp] GetLocalMSP -> DEBU 0f2 Returning existing local MSP -peer1.org2.example.com | [1e2 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [163 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [1a5 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [1e3 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:57.107 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f3 Obtaining default signing identity -peer1.org1.example.com | [164 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -peer1.org2.example.com | [1e4 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | [141 01-04 01:50:57.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [86cdf33e]Received INIT, initializing chaincode -peer1.org1.example.com | [165 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -peer1.org2.example.com | [1e5 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.107 UTC [msp] GetLocalMSP -> DEBU 0f4 Returning existing local MSP -peer0.org2.example.com | [142 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86cdf33e]Init get response status: 200 -peer0.org1.example.com | [1a6 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [166 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [1e6 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [1e7 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [143 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86cdf33e]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1a7 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org1.example.com | [167 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [168 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | 2018-01-04 01:50:57.107 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f5 Obtaining default signing identity -peer1.org2.example.com | [1e8 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [1a8 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [16a 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [144 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86cdf33e]Move state message COMPLETED -peer1.org2.example.com | [1e9 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-04 01:50:57.108 UTC [msp/identity] Sign -> DEBU 0f6 Sign: plaintext: 0AB7060A1B08011A06088191B6D20522...41646D696E7310021A0641646D696E73 -peer1.org2.example.com | [1ea 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [169 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -peer0.org1.example.com | [1a9 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [1aa 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4215a9450, header 0xc4215dcdb0 -orderer.example.com | 2018-01-04 01:50:57.108 UTC [msp/identity] Sign -> DEBU 0f7 Sign: digest: 05CDDD3553AAF8D82EEC7C8ED22B6BD99A9CC00293EF8DAC5D5FEF66F92839DE -peer1.org2.example.com | [1eb 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [145 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [86cdf33e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [1ab 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org1.example.com | [1ac 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e -peer1.org2.example.com | [1ec 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.108 UTC [common/config] NewStandardValues -> DEBU 0f8 Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [1ed 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [16b 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [146 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [86cdf33e]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.108 UTC [common/config] initializeProtosStruct -> DEBU 0f9 Processing field: HashingAlgorithm -peer1.org2.example.com | [1ee 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [147 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [86cdf33e]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.108 UTC [common/config] initializeProtosStruct -> DEBU 0fa Processing field: BlockDataHashingStructure -peer0.org1.example.com | [1ad 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e channel id: -peer1.org1.example.com | [16c 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [1ef 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.108 UTC [common/config] initializeProtosStruct -> DEBU 0fb Processing field: OrdererAddresses -peer0.org1.example.com | [1ae 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e channel id: version: 1.0.2 -peer1.org2.example.com | [1f0 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [148 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [86cdf33e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [149 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [86cdf33e-c68b-444d-b7ac-bbc3d5070913]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [14a 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:86cdf33e-c68b-444d-b7ac-bbc3d5070913 -peer0.org2.example.com | [14b 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [1f1 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.108 UTC [common/config] initializeProtosStruct -> DEBU 0fc Processing field: Consortium -peer1.org1.example.com | [16d 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e742ea]Move state message READY -peer1.org1.example.com | [16e 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d7e742ea]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [1f2 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.109 UTC [common/configtx] addToMap -> DEBU 0fd Adding to config map: [Groups] /Channel -peer0.org2.example.com | [14c 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [14d 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=efd72893-462d-44ec-8bf6-4c14abf4f7c5,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer1.org2.example.com | [1f3 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [1f4 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [1f5 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [1f6 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [1f7 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [1f8 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [1f9 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [16f 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d7e742ea]Entered state ready -orderer.example.com | 2018-01-04 01:50:57.110 UTC [common/configtx] addToMap -> DEBU 0fe Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [14e 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -peer0.org1.example.com | [1af 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e,syscc=true,proposal=0xc4215a9450,canname=cscc:1.0.2 -peer1.org2.example.com | [1fa 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [170 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d7e742ea-b386-4a6b-99bd-40f2b0eef6e9 -peer0.org1.example.com | [1b0 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer0.org2.example.com | [14f 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org2.example.com | [1fb 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [1fc 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.110 UTC [common/configtx] addToMap -> DEBU 0ff Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.110 UTC [common/configtx] addToMap -> DEBU 100 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-04 01:50:57.111 UTC [common/configtx] addToMap -> DEBU 101 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [171 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e742ea]sending state message READY -peer1.org2.example.com | [1fd 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [1fe 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [1b1 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.111 UTC [common/configtx] addToMap -> DEBU 102 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [172 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e742ea]Received message READY from shim -peer1.org1.example.com | [174 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [150 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org2.example.com | [1ff 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [1b2 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org1.example.com | [1b3 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1f63cc98]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.111 UTC [common/configtx] addToMap -> DEBU 103 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [175 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [200 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org2.example.com | [201 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [151 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [152 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -orderer.example.com | 2018-01-04 01:50:57.114 UTC [common/configtx] addToMap -> DEBU 104 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [202 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [1b4 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [1b5 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [1b6 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1f63cc98]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [203 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.115 UTC [common/configtx] addToMap -> DEBU 105 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.115 UTC [common/configtx] addToMap -> DEBU 106 Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:57.115 UTC [common/configtx] addToMap -> DEBU 107 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [204 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [205 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [206 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [207 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [208 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [209 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [176 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [153 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -orderer.example.com | 2018-01-04 01:50:57.116 UTC [common/configtx] addToMap -> DEBU 108 Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [1b7 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f63cc98]Move state message TRANSACTION -peer1.org2.example.com | [20a 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [177 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer1.org1.example.com | [178 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d7e742ea]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [179 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [17a 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d7e742ea]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [20b 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.116 UTC [common/configtx] addToMap -> DEBU 109 Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [1b8 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f63cc98]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [17b 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e742ea]Move state message INIT -peer1.org2.example.com | [20c 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | 2018-01-04 01:50:57.116 UTC [common/configtx] addToMap -> DEBU 10a Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [20d 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [17c 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d7e742ea]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [17d 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [20e 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [20f 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [1b9 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.116 UTC [common/configtx] addToMap -> DEBU 10b Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [17e 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e742ea]sending state message INIT -peer1.org2.example.com | [210 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [211 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.117 UTC [common/configtx] addToMap -> DEBU 10c Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [154 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -peer0.org1.example.com | [1ba 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f63cc98]sending state message TRANSACTION -peer1.org1.example.com | [173 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7e742ea]Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [212 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [213 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.117 UTC [common/configtx] addToMap -> DEBU 10d Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.117 UTC [common/configtx] addToMap -> DEBU 10e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.118 UTC [common/configtx] addToMap -> DEBU 10f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.118 UTC [common/configtx] addToMap -> DEBU 110 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [214 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [155 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -peer0.org1.example.com | [1bb 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f63cc98]Received message TRANSACTION from shim -peer1.org2.example.com | [215 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [216 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.118 UTC [common/configtx] addToMap -> DEBU 111 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 112 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 113 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 114 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [217 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [17f 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e742ea]Received message INIT from shim -peer1.org1.example.com | [180 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7e742ea]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [181 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [218 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [219 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 115 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [1bc 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f63cc98]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [156 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -orderer.example.com | 2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 116 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [21a 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [1bd 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1f63cc98]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [1be 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org2.example.com | [21b 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [21c 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [21d 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [21e 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [21f 01-04 01:50:58.19 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [220 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [221 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [222 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [223 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [224 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [225 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org2.example.com | [226 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer1.org2.example.com | [227 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [228 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a2fdde90-f68e-41f2-8ee4-05c540eefd24] -peer1.org2.example.com | [229 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=18c4aede-b750-4ecf-ad84-9f95e3d5d27a,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer1.org2.example.com | [22a 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org2.example.com | [22b 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [22c 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer1.org1.example.com | [182 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d7e742ea]Received INIT, initializing chaincode -orderer.example.com | 2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 117 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org2.example.com | [157 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -peer0.org2.example.com | [158 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -peer0.org2.example.com | [15a 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -peer1.org2.example.com | [22d 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18c4aede]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [22e 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [22f 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18c4aede]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [230 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18c4aede]Move state message INIT -peer1.org2.example.com | [231 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18c4aede]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [183 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -orderer.example.com | 2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 118 Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [1bf 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org1.example.com | [1c0 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org2.example.com | [232 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [159 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer1.org1.example.com | [184 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer0.org1.example.com | [1c1 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -peer1.org2.example.com | [233 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18c4aede]sending state message INIT -orderer.example.com | 2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 119 Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [15c 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -peer0.org2.example.com | [15b 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [15d 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [15e 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [234 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18c4aede]Received message INIT from shim -peer1.org2.example.com | [235 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18c4aede]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [236 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org2.example.com | [237 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [18c4aede]Received INIT, initializing chaincode -peer1.org1.example.com | [185 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e742ea]Init get response status: 200 -peer0.org2.example.com | [15f 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11a Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [1c2 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -peer1.org2.example.com | [238 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [186 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e742ea]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [160 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11b Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [1c3 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org2.example.com | [161 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [239 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18c4aede]Init get response status: 200 -peer1.org1.example.com | [187 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e742ea]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11c Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [23a 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18c4aede]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [162 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11d Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [1c4 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -peer1.org2.example.com | [23b 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18c4aede]Move state message COMPLETED -peer0.org2.example.com | [163 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -peer0.org2.example.com | [164 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -peer1.org1.example.com | [188 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d7e742ea]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [189 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d7e742ea]send state message COMPLETED -peer1.org2.example.com | [23c 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18c4aede]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [23d 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18c4aede]send state message COMPLETED -peer0.org1.example.com | [1c5 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -peer0.org1.example.com | [1c6 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11e Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/configtx] processConfig -> DEBU 11f Beginning new config for channel businesschannel -peer1.org1.example.com | [18a 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d7e742ea]Received message COMPLETED from shim -peer1.org2.example.com | [23e 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18c4aede]Received message COMPLETED from shim -peer1.org2.example.com | [23f 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18c4aede]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [165 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/config] NewStandardValues -> DEBU 120 Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [1c7 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [166 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -peer0.org2.example.com | [167 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [240 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18c4aede-b750-4ecf-ad84-9f95e3d5d27a]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [241 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:18c4aede-b750-4ecf-ad84-9f95e3d5d27a -peer1.org2.example.com | [242 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/config] initializeProtosStruct -> DEBU 121 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/config] initializeProtosStruct -> DEBU 122 Processing field: BlockDataHashingStructure -peer1.org1.example.com | [18b 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d7e742ea]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [18c 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d7e742ea-b386-4a6b-99bd-40f2b0eef6e9]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [243 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [244 01-04 01:50:58.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a2fdde90-f68e-41f2-8ee4-05c540eefd24] -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/config] initializeProtosStruct -> DEBU 123 Processing field: OrdererAddresses -peer1.org1.example.com | [18d 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d7e742ea-b386-4a6b-99bd-40f2b0eef6e9 -peer0.org1.example.com | [1c8 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42033dec0), Data:(*common.BlockData)(0xc421648740), Metadata:(*common.BlockMetadata)(0xc421648780)}, doMVCCValidation=true -orderer.example.com | 2018-01-04 01:50:57.127 UTC [common/config] initializeProtosStruct -> DEBU 124 Processing field: Consortium -peer0.org2.example.com | [168 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -peer1.org2.example.com | [245 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [18e 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [246 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f2718eae-37a6-48b0-a41f-384dc0c5126b] -peer1.org2.example.com | [247 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=4067061e-1132-43e9-8185-01cacc5b0b84,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org2.example.com | [248 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | [249 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.128 UTC [policies] ProposePolicy -> DEBU 125 Proposed new policy Readers for Channel -peer0.org2.example.com | [169 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [18f 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer1.org1.example.com | [190 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer1.org2.example.com | [24a 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org2.example.com | [24b 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4067061e]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [24c 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.128 UTC [policies] ProposePolicy -> DEBU 126 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:57.128 UTC [policies] ProposePolicy -> DEBU 127 Proposed new policy Admins for Channel -peer1.org1.example.com | [191 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer1.org1.example.com | [192 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] -peer1.org1.example.com | [193 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -peer1.org2.example.com | [24d 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4067061e]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [24e 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4067061e]Move state message INIT -peer1.org2.example.com | [24f 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4067061e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [250 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [251 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4067061e]sending state message INIT -peer1.org1.example.com | [194 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-04 01:50:57.128 UTC [common/config] NewStandardValues -> DEBU 128 Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [16a 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [16b 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efd72893]Move state message READY -peer0.org2.example.com | [16c 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [efd72893]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org2.example.com | [252 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4067061e]Received message INIT from shim -peer1.org1.example.com | [195 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -orderer.example.com | 2018-01-04 01:50:57.128 UTC [common/config] initializeProtosStruct -> DEBU 129 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.128 UTC [common/config] initializeProtosStruct -> DEBU 12a Processing field: BatchSize -peer0.org1.example.com | [1c9 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [16d 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [efd72893]Entered state ready -peer1.org2.example.com | [253 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4067061e]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [196 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer1.org1.example.com | [197 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer1.org1.example.com | [198 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer1.org1.example.com | [199 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org2.example.com | [254 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [16e 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:efd72893-462d-44ec-8bf6-4c14abf4f7c5 -orderer.example.com | 2018-01-04 01:50:57.128 UTC [common/config] initializeProtosStruct -> DEBU 12b Processing field: BatchTimeout -peer0.org1.example.com | [1ca 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [255 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4067061e]Received INIT, initializing chaincode -peer1.org2.example.com | [256 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4067061e]Init get response status: 200 -peer1.org2.example.com | [257 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4067061e]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [258 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4067061e]Move state message COMPLETED -peer1.org2.example.com | [259 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4067061e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [25a 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4067061e]send state message COMPLETED -peer1.org2.example.com | [25b 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4067061e]Received message COMPLETED from shim -peer1.org2.example.com | [25c 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4067061e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [25d 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4067061e-1132-43e9-8185-01cacc5b0b84]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [19a 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer1.org1.example.com | [19b 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer1.org2.example.com | [25e 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4067061e-1132-43e9-8185-01cacc5b0b84 -peer1.org2.example.com | [25f 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [260 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [261 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f2718eae-37a6-48b0-a41f-384dc0c5126b] -peer1.org2.example.com | [262 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [263 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b3006ee7-b4ca-4660-ba76-f710a7ef05a8] -peer1.org2.example.com | [264 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=0ff06101-0be0-49cf-abe1-3a276f21f5ca,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer1.org2.example.com | [265 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.130 UTC [common/config] initializeProtosStruct -> DEBU 12c Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:57.130 UTC [common/config] initializeProtosStruct -> DEBU 12d Processing field: ChannelRestrictions -peer1.org2.example.com | [266 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [267 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org2.example.com | [268 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0ff06101]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [269 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [26a 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0ff06101]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [26b 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ff06101]Move state message INIT -peer1.org2.example.com | [26c 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ff06101]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [26d 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [26e 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ff06101]sending state message INIT -peer1.org1.example.com | [19c 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1cb 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0x61, 0xe4, 0x69, 0xf1, 0xee, 0xa5, 0x26, 0xf8, 0x82, 0xb2, 0x7f, 0xf9, 0x50, 0x2d, 0xfb, 0x67, 0xc4, 0xd7, 0xc4, 0x2b, 0xd6, 0x9c, 0x67, 0x53, 0x48, 0x11, 0x32, 0xbd, 0xf, 0xe6, 0x98} txOffsets= -peer1.org2.example.com | [26f 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ff06101]Received message INIT from shim -orderer.example.com | 2018-01-04 01:50:57.130 UTC [policies] ProposePolicy -> DEBU 12e Proposed new policy Writers for Orderer -peer1.org1.example.com | [19d 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer1.org1.example.com | [19e 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer1.org2.example.com | [270 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ff06101]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [16f 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efd72893]sending state message READY -peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=11890 -orderer.example.com | 2018-01-04 01:50:57.130 UTC [policies] ProposePolicy -> DEBU 12f Proposed new policy Admins for Orderer -peer1.org2.example.com | [271 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [170 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efd72893]Received message READY from shim -peer0.org2.example.com | [171 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efd72893]Handling ChaincodeMessage of type: READY(state:established) -orderer.example.com | 2018-01-04 01:50:57.130 UTC [policies] ProposePolicy -> DEBU 130 Proposed new policy BlockValidation for Orderer -peer1.org1.example.com | [19f 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer1.org2.example.com | [272 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0ff06101]Received INIT, initializing chaincode -peer0.org1.example.com | ] -peer0.org1.example.com | [1cc 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index -peer0.org1.example.com | [1cd 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [1ce 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org2.example.com | [273 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org2.example.com | [274 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ff06101]Init get response status: 200 -peer1.org2.example.com | [275 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ff06101]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [276 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ff06101]Move state message COMPLETED -peer1.org2.example.com | [277 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ff06101]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [278 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ff06101]send state message COMPLETED -peer1.org2.example.com | [279 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ff06101]Received message COMPLETED from shim -peer1.org2.example.com | [27a 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ff06101]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [172 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-04 01:50:57.130 UTC [policies] ProposePolicy -> DEBU 131 Proposed new policy Readers for Orderer -peer1.org1.example.com | [1a0 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer1.org2.example.com | [27b 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ff06101-0be0-49cf-abe1-3a276f21f5ca]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.130 UTC [common/config] NewStandardValues -> DEBU 132 Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [173 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org2.example.com | [27c 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0ff06101-0be0-49cf-abe1-3a276f21f5ca -peer1.org2.example.com | [27d 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [1a1 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer0.org2.example.com | [174 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [175 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer1.org2.example.com | [27e 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -orderer.example.com | 2018-01-04 01:50:57.131 UTC [common/config] initializeProtosStruct -> DEBU 133 Processing field: MSP -peer1.org1.example.com | [1a2 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1cf 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer0.org2.example.com | [176 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [efd72893]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [27f 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b3006ee7-b4ca-4660-ba76-f710a7ef05a8] -peer0.org2.example.com | [177 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [1a3 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1d0 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-04 01:50:57.131 UTC [policies] ProposePolicy -> DEBU 134 Proposed new policy Writers for OrdererOrg -peer0.org2.example.com | [178 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [efd72893]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [280 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [1d1 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [1a4 01-04 01:50:56.13 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer0.org2.example.com | [179 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efd72893]Move state message INIT -peer1.org2.example.com | [281 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4d30f30d-0ccd-422e-8412-fb1196205ef9] -peer0.org1.example.com | [1d2 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-04 01:50:57.131 UTC [policies] ProposePolicy -> DEBU 135 Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | [282 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=390b45df-cf9f-4f43-a6c7-38a73d4ff0a4,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [1d3 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org2.example.com | [17a 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [efd72893]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [1a5 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [283 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.131 UTC [policies] ProposePolicy -> DEBU 136 Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [1d4 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [1d5 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org2.example.com | [17b 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [1a6 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215892f0 -orderer.example.com | 2018-01-04 01:50:57.131 UTC [common/config] NewStandardValues -> DEBU 137 Initializing protos for *struct {} -peer1.org2.example.com | [284 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [285 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [286 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [390b45df]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [1a7 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [17c 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efd72893]sending state message INIT -orderer.example.com | 2018-01-04 01:50:57.132 UTC [policies] ProposePolicy -> DEBU 138 Proposed new policy ChannelCreationPolicy for Application -peer0.org1.example.com | [1d6 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [287 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [1a8 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [1a9 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org2.example.com | [17d 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efd72893]Received message INIT from shim -peer0.org1.example.com | [1d7 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [288 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [390b45df]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [289 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [390b45df]Move state message INIT -peer0.org1.example.com | [1d8 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [1d9 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.132 UTC [common/config] NewStandardValues -> DEBU 139 Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [17e 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efd72893]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [28a 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [390b45df]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [1aa 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [1da 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.132 UTC [common/config] initializeProtosStruct -> DEBU 13a Processing field: MSP -peer1.org2.example.com | [28b 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [1ab 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [28c 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [390b45df]sending state message INIT -orderer.example.com | 2018-01-04 01:50:57.132 UTC [common/config] NewStandardValues -> DEBU 13b Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [17f 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [1db 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [28d 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390b45df]Received message INIT from shim -peer1.org1.example.com | [1ac 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4215e4960, header 0xc421589380 -orderer.example.com | 2018-01-04 01:50:57.132 UTC [common/config] initializeProtosStruct -> DEBU 13c Processing field: AnchorPeers -peer1.org2.example.com | [28e 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [390b45df]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [180 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [efd72893]Received INIT, initializing chaincode -peer1.org1.example.com | [1ad 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org1.example.com | [1ae 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5f5aff632fde11f2d37cf4dfbc16ca554b5e0fd28be660fa40c24d3eb30b11a9 -peer1.org1.example.com | [1af 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5f5aff632fde11f2d37cf4dfbc16ca554b5e0fd28be660fa40c24d3eb30b11a9 channel id: -peer1.org2.example.com | [28f 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | 2018-01-04 01:50:57.132 UTC [common/config] NewStandardValues -> DEBU 13d Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [1dc 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [290 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [390b45df]Received INIT, initializing chaincode -peer1.org1.example.com | [1b0 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5f5aff632fde11f2d37cf4dfbc16ca554b5e0fd28be660fa40c24d3eb30b11a9 channel id: version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.132 UTC [common/config] initializeProtosStruct -> DEBU 13e Processing field: MSP -peer0.org2.example.com | [181 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [1dd 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org2.example.com | [291 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390b45df]Init get response status: 200 -peer1.org1.example.com | [1b1 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=5f5aff632fde11f2d37cf4dfbc16ca554b5e0fd28be660fa40c24d3eb30b11a9,syscc=true,proposal=0xc4215e4960,canname=cscc:1.0.2 -peer0.org1.example.com | [1de 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [292 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390b45df]Init succeeded. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.133 UTC [policies] ProposePolicy -> DEBU 13f Proposed new policy Writers for Org1MSP -peer0.org2.example.com | [182 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -peer1.org2.example.com | [293 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390b45df]Move state message COMPLETED -peer0.org1.example.com | [1df 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [1b2 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org2.example.com | [294 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [390b45df]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [1e0 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-04 01:50:57.134 UTC [policies] ProposePolicy -> DEBU 140 Proposed new policy Admins for Org1MSP -peer1.org2.example.com | [295 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [390b45df]send state message COMPLETED -peer1.org1.example.com | [1b3 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [183 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efd72893]Init get response status: 200 -peer1.org2.example.com | [296 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [390b45df]Received message COMPLETED from shim -peer0.org1.example.com | [1e1 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-04 01:50:57.134 UTC [policies] ProposePolicy -> DEBU 141 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.134 UTC [common/config] NewStandardValues -> DEBU 142 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.134 UTC [common/config] initializeProtosStruct -> DEBU 143 Processing field: MSP -peer1.org2.example.com | [297 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [390b45df]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1e2 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [1b4 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.134 UTC [common/config] NewStandardValues -> DEBU 144 Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [184 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efd72893]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [298 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [390b45df-cf9f-4f43-a6c7-38a73d4ff0a4]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [1b5 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f5aff63]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [1e3 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:57.135 UTC [common/config] initializeProtosStruct -> DEBU 145 Processing field: AnchorPeers -peer0.org2.example.com | [185 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efd72893]Move state message COMPLETED -peer1.org2.example.com | [299 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:390b45df-cf9f-4f43-a6c7-38a73d4ff0a4 -peer1.org1.example.com | [1b6 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [29a 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.135 UTC [common/config] NewStandardValues -> DEBU 146 Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [186 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [efd72893]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [29b 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org1.example.com | [1b7 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [1e4 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [1e5 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.135 UTC [common/config] initializeProtosStruct -> DEBU 147 Processing field: MSP -peer0.org2.example.com | [187 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [efd72893]send state message COMPLETED -peer1.org2.example.com | [29c 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4d30f30d-0ccd-422e-8412-fb1196205ef9] -peer0.org1.example.com | [1e6 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [29d 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [188 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [efd72893]Received message COMPLETED from shim -peer0.org2.example.com | [189 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [efd72893]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.135 UTC [policies] ProposePolicy -> DEBU 148 Proposed new policy Readers for Org2MSP -peer1.org1.example.com | [1b8 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f5aff63]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [29e 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d934b041-ca7a-462f-927f-e1471c5bb55c] -peer0.org2.example.com | [18a 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [efd72893-462d-44ec-8bf6-4c14abf4f7c5]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [1e7 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-04 01:50:57.136 UTC [policies] ProposePolicy -> DEBU 149 Proposed new policy Writers for Org2MSP -peer1.org2.example.com | [29f 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=6c9e90ff-953e-4194-b693-f555672b37b6,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer0.org2.example.com | [18b 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:efd72893-462d-44ec-8bf6-4c14abf4f7c5 -peer1.org1.example.com | [1b9 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f5aff63]Move state message TRANSACTION -peer0.org1.example.com | [1e8 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:50:57.136 UTC [policies] ProposePolicy -> DEBU 14a Proposed new policy Admins for Org2MSP -peer0.org2.example.com | [18c 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [18d 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [18e 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -peer0.org1.example.com | [1e9 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [1ba 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f5aff63]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [1bb 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [1bc 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f5aff63]sending state message TRANSACTION -peer1.org1.example.com | [1bd 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f5aff63]Received message TRANSACTION from shim -peer1.org1.example.com | [1be 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f5aff63]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [1bf 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5f5aff63]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [1c0 01-04 01:50:57.89 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org1.example.com | [1c1 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | [1c2 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org1.example.com | [1c3 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -peer1.org1.example.com | [1c4 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -peer1.org1.example.com | [1c5 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer1.org1.example.com | [1c6 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-04 01:50:57.137 UTC [common/config] validateMSP -> DEBU 14b Setting up MSP for org OrdererOrg -peer0.org1.example.com | [1ea 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [1eb 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [1ec 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.137 UTC [msp] NewBccspMsp -> DEBU 14c Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.137 UTC [msp] Setup -> DEBU 14d Setting up MSP instance OrdererMSP -peer0.org2.example.com | [18f 01-04 01:50:57.01 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer0.org2.example.com | [190 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer0.org1.example.com | [1ed 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [1ee 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.137 UTC [msp/identity] newIdentity -> DEBU 14e Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [1c7 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -peer1.org1.example.com | [1c8 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -peer1.org1.example.com | [1c9 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [2a0 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org2.example.com | [191 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1ef 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [1f0 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [1f1 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [1f2 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [1f3 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [1f4 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [1f5 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [1ca 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420241ec0), Data:(*common.BlockData)(0xc4216b5000), Metadata:(*common.BlockMetadata)(0xc4216b5040)}, doMVCCValidation=true -peer0.org2.example.com | [192 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1f6 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [2a1 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [2a2 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer1.org1.example.com | [1cb 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org2.example.com | [193 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -peer1.org2.example.com | [2a3 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6c9e90ff]Inside sendExecuteMessage. Message INIT -peer1.org2.example.com | [2a4 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [2a5 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6c9e90ff]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [2a6 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6c9e90ff]Move state message INIT -peer0.org1.example.com | [1f7 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [1cc 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org1.example.com | [1cd 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0x61, 0xe4, 0x69, 0xf1, 0xee, 0xa5, 0x26, 0xf8, 0x82, 0xb2, 0x7f, 0xf9, 0x50, 0x2d, 0xfb, 0x67, 0xc4, 0xd7, 0xc4, 0x2b, 0xd6, 0x9c, 0x67, 0x53, 0x48, 0x11, 0x32, 0xbd, 0xf, 0xe6, 0x98} txOffsets= -peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=11890 -peer1.org1.example.com | ] -peer1.org1.example.com | [1ce 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index -peer1.org1.example.com | [1cf 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [2a7 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6c9e90ff]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [2a8 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [194 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -peer0.org2.example.com | [195 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' -peer1.org1.example.com | [1d0 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | [1f8 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [1f9 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [1fa 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org1.example.com | [1d1 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer1.org2.example.com | [2a9 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6c9e90ff]sending state message INIT -peer0.org2.example.com | [196 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [1fb 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [1d2 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [2aa 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c9e90ff]Received message INIT from shim -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer0.org2.example.com | [197 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer0.org2.example.com | [198 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer0.org1.example.com | [1fc 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [1d3 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [199 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' -peer0.org2.example.com | [19a 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' -peer0.org2.example.com | [19b 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org2.example.com | [2ab 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6c9e90ff]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer0.org1.example.com | [1fd 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [19c 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer1.org1.example.com | [1d4 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [2ac 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer0.org2.example.com | [19d 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer1.org2.example.com | [2ad 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6c9e90ff]Received INIT, initializing chaincode -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.138 UTC [msp/identity] newIdentity -> DEBU 14f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [1d5 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org2.example.com | [19e 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -peer1.org2.example.com | [2ae 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [1fe 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [1d6 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [1ff 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [1d7 01-04 01:50:57.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [19f 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -peer0.org1.example.com | [200 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [1d8 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [2af 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c9e90ff]Init get response status: 200 -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org2.example.com | [1a0 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org2.example.com | [1a1 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer0.org1.example.com | [201 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [2b0 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c9e90ff]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1d9 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [202 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [2b1 01-04 01:50:58.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c9e90ff]Move state message COMPLETED -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [1a2 01-04 01:50:57.02 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer1.org1.example.com | [1da 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [203 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [2b2 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6c9e90ff]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [1a3 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org1.example.com | [1db 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [2b3 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6c9e90ff]send state message COMPLETED -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [204 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [1a4 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421445e60 -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [1a5 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [1dc 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [2b4 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6c9e90ff]Received message COMPLETED from shim -peer0.org1.example.com | [205 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [206 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [207 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [1a6 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [1a7 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org2.example.com | [1a8 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org1.example.com | [1dd 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [2b5 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6c9e90ff]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [1a9 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [208 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.146 UTC [msp/identity] newIdentity -> DEBU 150 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [1de 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [2b6 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6c9e90ff-953e-4194-b693-f555672b37b6]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2b7 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6c9e90ff-953e-4194-b693-f555672b37b6 -peer1.org2.example.com | [2b8 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [2b9 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [209 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [1df 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [1e0 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [1aa 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421440f50, header 0xc421445ef0 -peer0.org2.example.com | [1ab 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org1.example.com | [20a 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [1e1 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [1e2 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [1ac 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ca6af6311f967b831cccccecedbd7a0c223671b7dfcb9ffcec6a16aa44f26b4e -peer0.org1.example.com | [20b 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [20c 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [20d 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [20e 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org2.example.com | [1ad 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ca6af6311f967b831cccccecedbd7a0c223671b7dfcb9ffcec6a16aa44f26b4e channel id: -peer1.org2.example.com | [2ba 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [d934b041-ca7a-462f-927f-e1471c5bb55c] -peer0.org1.example.com | [20f 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [210 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org2.example.com | [1ae 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ca6af6311f967b831cccccecedbd7a0c223671b7dfcb9ffcec6a16aa44f26b4e channel id: version: 1.0.2 -peer1.org1.example.com | [1e3 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [211 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [212 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [213 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [214 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [215 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [1af 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=ca6af6311f967b831cccccecedbd7a0c223671b7dfcb9ffcec6a16aa44f26b4e,syscc=true,proposal=0xc421440f50,canname=cscc:1.0.2 -peer0.org2.example.com | [1b0 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer0.org2.example.com | [1b1 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [1b2 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org2.example.com | [1b3 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ca6af631]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [1b4 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [1b5 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [1b6 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ca6af631]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [1b7 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ca6af631]Move state message TRANSACTION -peer0.org2.example.com | [1b8 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ca6af631]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [1e4 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [216 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [2bb 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [1b9 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [1e5 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [217 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org2.example.com | [1ba 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ca6af631]sending state message TRANSACTION -peer1.org2.example.com | [2bc 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer1.org1.example.com | [1e6 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [218 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [219 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [21a 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer1.org2.example.com | [2bd 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [1e7 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [1e8 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [21b 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org2.example.com | [1bb 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ca6af631]Received message TRANSACTION from shim -peer0.org2.example.com | [1bc 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ca6af631]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [21c 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | [1e9 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org2.example.com | [1bd 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ca6af631]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [21d 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [1ea 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [1eb 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [1ec 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.151 UTC [msp] Validate -> DEBU 151 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:57.151 UTC [common/config] Validate -> DEBU 152 Anchor peers for org Org1MSP are -peer0.org2.example.com | [1be 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org1.example.com | [1ed 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [21e 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [2be 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [1bf 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -orderer.example.com | 2018-01-04 01:50:57.151 UTC [common/config] validateMSP -> DEBU 153 Setting up MSP for org Org1MSP -peer1.org1.example.com | [1ee 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [21f 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [1c0 01-04 01:50:58.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org1.example.com | [220 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [2bf 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [1ef 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [1f0 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [1c1 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -peer0.org2.example.com | [1c2 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -peer0.org2.example.com | [1c3 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org1.example.com | [221 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -orderer.example.com | 2018-01-04 01:50:57.151 UTC [msp] NewBccspMsp -> DEBU 154 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.151 UTC [msp] Setup -> DEBU 155 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:57.152 UTC [msp/identity] newIdentity -> DEBU 156 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [1f1 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [1f2 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [1f3 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [1c4 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -peer1.org2.example.com | [2c0 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [131 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246f60a6]sending state message READY +peer1.org2.example.com | [0fb 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5e236448]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [1bf 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org1.example.com | [132 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246f60a6]Received message READY from shim +peer0.org2.example.com | [1c0 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org1.example.com | [1df 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [1c1 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +peer1.org1.example.com | [133 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [246f60a6]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [1e0 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:28.235 UTC [msp] Validate -> DEBU 090 MSP Org2MSP validating identity +peer1.org2.example.com | [0fc 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e236448]Move state message INIT +peer0.org2.example.com | [1c2 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +peer1.org1.example.com | [134 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer0.org1.example.com | [1e1 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [0fd 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5e236448]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [135 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | 2018-01-14 11:45:28.235 UTC [common/config] validateMSP -> DEBU 091 Setting up MSP for org Org1MSP +peer0.org1.example.com | [1e2 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [1c3 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer1.org1.example.com | [136 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [0fe 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:28.235 UTC [msp] NewBccspMsp -> DEBU 092 Creating BCCSP-based MSP instance +peer0.org2.example.com | [1c4 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [1e3 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [137 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [0ff 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e236448]sending state message INIT +orderer.example.com | 2018-01-14 11:45:28.235 UTC [msp] Setup -> DEBU 093 Setting up MSP instance Org1MSP +peer0.org2.example.com | [1c5 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +peer1.org1.example.com | [138 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [246f60a6]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [1e4 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [100 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e236448]Received message INIT from shim +peer0.org2.example.com | [1c6 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer1.org1.example.com | [139 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:28.235 UTC [msp/identity] newIdentity -> DEBU 094 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [13a 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [246f60a6]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [101 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5e236448]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [1e5 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [222 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [223 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [2c1 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [1c5 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -peer0.org2.example.com | [1c6 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer1.org1.example.com | [13b 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246f60a6]Move state message INIT +peer0.org2.example.com | [1c7 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [1e6 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [13c 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [246f60a6]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [1c8 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421672040), Data:(*common.BlockData)(0xc4216374a0), Metadata:(*common.BlockMetadata)(0xc4216374e0)}, doMVCCValidation=true +peer1.org2.example.com | [102 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [13d 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [1c9 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [224 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [1f4 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [1f5 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [1c7 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [225 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org1.example.com | [226 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org1.example.com | [13e 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246f60a6]sending state message INIT +peer0.org2.example.com | [1ca 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [103 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5e236448]Received INIT, initializing chaincode orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [1f6 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [1c8 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005eec0), Data:(*common.BlockData)(0xc421503b60), Metadata:(*common.BlockMetadata)(0xc421503ba0)}, doMVCCValidation=true -peer0.org2.example.com | [1c9 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [227 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [1e7 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [13f 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246f60a6]Received message INIT from shim +peer0.org2.example.com | [1cb 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0xc4, 0xf6, 0xef, 0x6e, 0xea, 0xc7, 0xd1, 0xa2, 0x1, 0xa, 0x48, 0x37, 0x3d, 0xf9, 0x14, 0x71, 0x13, 0xd2, 0x9, 0x4f, 0x96, 0x3b, 0x2c, 0xc3, 0xaf, 0xef, 0x96, 0xc4, 0x7b, 0xba, 0x6d} txOffsets= +peer1.org2.example.com | [104 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [1e8 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [140 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [246f60a6]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=11890 orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | ] +peer1.org1.example.com | [141 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [105 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e236448]Init get response status: 200 +peer0.org1.example.com | [1e9 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [1cc 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index +peer1.org2.example.com | [106 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e236448]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [1ea 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [1cd 01-14 11:45:33.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [142 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [246f60a6]Received INIT, initializing chaincode orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org1.example.com | [1f7 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [1f8 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [1f9 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [1fa 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [1fb 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [1fc 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [1fd 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org1.example.com | [1fe 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [1ff 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [200 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [201 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [228 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [76932619-2d69-4d22-b887-a6cd62b3ac52] -peer0.org1.example.com | [229 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=74d27789-347b-470c-ab30-0362e00de8f1,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org1.example.com | [22a 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer0.org1.example.com | [22b 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [1ca 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [2c2 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e0cfb75]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [2c3 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e0cfb75]Move state message COMPLETED -peer1.org2.example.com | [2c4 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0e0cfb75]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [2c5 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0e0cfb75]send state message COMPLETED -peer1.org2.example.com | [2c6 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0e0cfb75]Received message COMPLETED from shim -peer1.org2.example.com | [2c7 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0e0cfb75]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [22c 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org1.example.com | [22d 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [74d27789]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [1eb 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [107 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e236448]Move state message COMPLETED +peer0.org2.example.com | [1ce 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org1.example.com | [202 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [22e 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [1cb 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0x61, 0xe4, 0x69, 0xf1, 0xee, 0xa5, 0x26, 0xf8, 0x82, 0xb2, 0x7f, 0xf9, 0x50, 0x2d, 0xfb, 0x67, 0xc4, 0xd7, 0xc4, 0x2b, 0xd6, 0x9c, 0x67, 0x53, 0x48, 0x11, 0x32, 0xbd, 0xf, 0xe6, 0x98} txOffsets= -peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=11890 -peer0.org2.example.com | ] -peer0.org2.example.com | [1cc 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index -peer0.org2.example.com | [1cd 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [1ce 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org1.example.com | [143 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246f60a6]Init get response status: 200 +peer1.org2.example.com | [108 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5e236448]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [1cf 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +peer0.org1.example.com | [1ec 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [144 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246f60a6]Init succeeded. Sending COMPLETED orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer1.org2.example.com | [2c8 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0e0cfb752afbbaf3432749f5dd6a8b784c95349490774c6fa97c725adc35a811]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [2c9 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0e0cfb752afbbaf3432749f5dd6a8b784c95349490774c6fa97c725adc35a811 -peer1.org2.example.com | [2ca 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [203 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [22f 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [74d27789]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [1cf 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -peer0.org2.example.com | [1d0 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [1d1 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [1d2 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [1d3 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer1.org1.example.com | [204 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [230 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74d27789]Move state message INIT -peer1.org2.example.com | [2cb 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [1d4 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [205 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [1d0 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [1d1 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [1d2 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [1d3 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org1.example.com | [1ed 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [1d4 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [145 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246f60a6]Move state message COMPLETED +peer1.org2.example.com | [109 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5e236448]send state message COMPLETED orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [231 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74d27789]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [1d5 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer1.org2.example.com | [2cc 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [232 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [1ee 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [1d5 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org1.example.com | [146 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [246f60a6]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [10a 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5e236448]Received message COMPLETED from shim +peer0.org2.example.com | [1d6 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer0.org1.example.com | [1ef 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [1d7 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer0.org1.example.com | [233 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74d27789]sending state message INIT -peer1.org1.example.com | [206 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [1d6 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [234 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]Received message INIT from shim -peer0.org1.example.com | [235 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74d27789]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [207 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [2cd 01-04 01:50:58.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [10b 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5e236448]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [1d8 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [147 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [246f60a6]send state message COMPLETED +peer1.org2.example.com | [10c 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5e236448-3b3d-4b8f-bea8-137f80521c7d]HandleMessage- COMPLETED. Notify orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer0.org1.example.com | [236 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [1d7 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [1d8 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [1d9 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [237 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [74d27789]Received INIT, initializing chaincode +peer0.org1.example.com | [1f0 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [1d9 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [148 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [246f60a6]Received message COMPLETED from shim +peer0.org2.example.com | [1da 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [1f1 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [10d 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5e236448-3b3d-4b8f-bea8-137f80521c7d +peer1.org1.example.com | [149 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [246f60a6]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | H7n8z1pj5w== -peer1.org1.example.com | [208 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [2ce 01-04 01:51:04.21 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer0.org2.example.com | [1da 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [238 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [1db 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [1f2 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [14a 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [246f60a6-b19c-4e0d-a722-11d09694f3b7]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [10e 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.152 UTC [msp/identity] newIdentity -> DEBU 157 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [239 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]Init get response status: 200 -peer0.org2.example.com | [1db 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [2cf 01-04 01:51:04.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org1.example.com | [209 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [1dc 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [1f3 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [1dc 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [14b 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:246f60a6-b19c-4e0d-a722-11d09694f3b7 +peer1.org2.example.com | [10f 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +orderer.example.com | 2018-01-14 11:45:28.236 UTC [msp/identity] newIdentity -> DEBU 095 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1f4 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [1dd 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org1.example.com | [14c 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [110 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=0a16c1ae-53a4-4a74-a312-f3690777411d,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [1f5 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [23a 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [1dd 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [23b 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]Move state message COMPLETED -peer0.org1.example.com | [23c 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74d27789]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [14d 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org2.example.com | [1de 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [1f6 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [111 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [14e 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=1952be11-18c0-41e8-90ea-423d669da249,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer0.org1.example.com | [1f7 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [112 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org2.example.com | [1df 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [113 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [14f 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +peer0.org1.example.com | [1f8 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [1e0 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [114 01-14 11:45:29.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: vscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +peer0.org1.example.com | [1f9 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [150 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | [1e1 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [1fa 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [151 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org2.example.com | [1e2 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [115 01-14 11:45:29.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=peer1.org2.example.com:7052 +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [152 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer1.org1.example.com) +peer0.org2.example.com | [1e3 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org1.example.com | [1fb 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [153 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org2.example.com | [116 01-14 11:45:29.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: +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer1.org1.example.com | [154 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [1fc 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org2.example.com | [1e4 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=vscc:1.0.2 +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [1fd 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [1e5 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [1e6 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer0.org1.example.com | [1fe 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [1e7 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 2018-01-14 11:45:28.236 UTC [msp/identity] newIdentity -> DEBU 096 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org2.example.com | [1e8 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [1ff 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [1e9 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [155 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [200 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org2.example.com | [1ea 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer0.org1.example.com | [201 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [1eb 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [156 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [202 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [1ec 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [117 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [157 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +peer0.org1.example.com | [203 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [118 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org2.example.com | [1ed 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [204 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [1ee 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer1.org2.example.com | [119 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +peer1.org1.example.com | [158 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +peer0.org1.example.com | [205 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org1.example.com | [159 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [11a 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +peer0.org1.example.com | [206 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org2.example.com | [1ef 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [15a 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org2.example.com | [11b 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer1.org1.example.com | [15b 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +peer0.org1.example.com | [207 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [1f0 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org1.example.com | [15c 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer0.org1.example.com | [208 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [1f1 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [11d 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [15d 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +peer0.org2.example.com | [1f2 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:28.236 UTC [msp] Validate -> DEBU 097 MSP Org1MSP validating identity +peer0.org1.example.com | [209 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [11c 01-14 11:45:29.25 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +peer1.org1.example.com | [15e 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +orderer.example.com | 2018-01-14 11:45:28.237 UTC [msp] Setup -> DEBU 098 Setting up the MSP manager (3 msps) +peer0.org2.example.com | [1f3 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [20a 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [15f 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-14 11:45:28.237 UTC [msp] Setup -> DEBU 099 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 09a Returning policy Admins for evaluation +peer1.org2.example.com | [11f 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer0.org1.example.com | [20b 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [160 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [1f4 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 09b In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer1.org2.example.com | [120 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +peer0.org1.example.com | [20c 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [161 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 09c Returning policy Readers for evaluation +peer0.org2.example.com | [1f5 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [121 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [20d 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [162 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 09d In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer0.org2.example.com | [1f6 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [11e 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 09e Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 09f In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a0 Returning policy Readers for evaluation +peer1.org2.example.com | [122 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [163 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [1f7 01-14 11:45:33.56 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [20e 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a1 Returning policy Writers for evaluation +peer1.org2.example.com | [123 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [164 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org2.example.com | [1f8 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a2 Returning policy Admins for evaluation +peer1.org2.example.com | [124 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [20f 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [165 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a3 Returning policy Writers for evaluation +peer0.org2.example.com | [1f9 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [125 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a4 Returning policy Writers for evaluation +peer0.org1.example.com | [210 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [166 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [126 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +peer0.org2.example.com | [1fa 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 0a5 In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium +peer1.org2.example.com | [127 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [167 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org1.example.com | [211 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a6 Returning policy Admins for evaluation +peer1.org2.example.com | [128 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer0.org2.example.com | [1fb 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [212 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 0a7 In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium +peer1.org2.example.com | [129 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [168 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +peer0.org1.example.com | [213 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a8 Returning policy Readers for evaluation +peer1.org2.example.com | [12a 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +peer0.org2.example.com | [1fc 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 0a9 In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0aa Returning policy Writers for evaluation +peer0.org1.example.com | [214 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [1fd 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [12b 01-14 11:45:29.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 vscc:1.0.2 launch seq completed +orderer.example.com | 2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 0ab In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium +peer0.org1.example.com | [215 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [12c 01-14 11:45:29.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 +peer0.org2.example.com | [1fe 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ac Returning policy Admins for evaluation +peer1.org1.example.com | [169 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +peer1.org2.example.com | [12d 01-14 11:45:29.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... +peer0.org1.example.com | [216 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0ad In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium +peer1.org1.example.com | [16a 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer0.org2.example.com | [1ff 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ae Returning policy Readers for evaluation +peer1.org2.example.com | [12e 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a16c1ae]Move state message READY +peer0.org1.example.com | [217 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [200 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [16b 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0af In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium +peer1.org2.example.com | [12f 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a16c1ae]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [218 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [16c 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1952be11]Move state message READY +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b0 Returning policy Org1MSP/Readers for evaluation +peer1.org2.example.com | [130 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0a16c1ae]Entered state ready +peer0.org2.example.com | [201 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [219 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b1 In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums +peer1.org2.example.com | [131 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0a16c1ae-53a4-4a74-a312-f3690777411d +peer0.org2.example.com | [202 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [16d 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1952be11]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org2.example.com | [132 01-14 11:45:29.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 +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b2 Returning policy Org2MSP/Writers for evaluation +peer0.org2.example.com | [203 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [21a 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [133 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b3 In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums +peer1.org1.example.com | [16e 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [1952be11]Entered state ready +peer1.org2.example.com | [134 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b4 Returning policy Org2MSP/Admins for evaluation +peer0.org2.example.com | [204 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [135 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [21b 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b5 In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums +peer1.org2.example.com | [136 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0a16c1ae]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [16f 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:1952be11-18c0-41e8-90ea-423d669da249 +peer0.org1.example.com | [21c 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b6 Returning policy Org2MSP/Readers for evaluation +peer0.org2.example.com | [205 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [137 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b7 In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums +peer0.org1.example.com | [21d 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [138 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0a16c1ae]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [206 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [170 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1952be11]sending state message READY +peer0.org1.example.com | [21e 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [139 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a16c1ae]sending state message READY +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b8 Returning policy Org1MSP/Writers for evaluation +peer0.org1.example.com | [21f 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [171 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [13a 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a16c1ae]Move state message INIT +peer0.org1.example.com | [220 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [207 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [172 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [221 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [13c 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a16c1ae]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [13b 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a16c1ae]Received message READY from shim +peer1.org1.example.com | [173 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [222 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [208 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b9 In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums +peer1.org2.example.com | [13d 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a16c1ae]Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [223 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [209 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ba Returning policy Org1MSP/Admins for evaluation +peer1.org2.example.com | [13e 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [224 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [174 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0bb In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums +peer0.org2.example.com | [20a 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [13f 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a16c1ae]sending state message INIT +peer0.org1.example.com | [225 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org1.example.com | [175 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1952be11]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [140 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a16c1ae]Received message INIT from shim +peer0.org2.example.com | [20b 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0bc Returning policy Readers for evaluation +peer0.org1.example.com | [226 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org2.example.com | [141 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a16c1ae]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [176 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0bd In commit adding relative sub-policy Orderer/Readers to Channel +peer0.org1.example.com | [227 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [20c 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [177 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1952be11]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [142 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [228 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [09c3921f-7278-4f34-bcb5-eb6d8b90cb8e] +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0be Returning policy Writers for evaluation +peer0.org2.example.com | [20d 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [229 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=18560eed-ed27-4836-8a71-1c257edeb8cf,syscc=true,proposal=0x0,canname=cscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0bf In commit adding relative sub-policy Orderer/Writers to Channel +peer1.org2.example.com | [143 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0a16c1ae]Received INIT, initializing chaincode +peer1.org1.example.com | [178 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1952be11]Move state message INIT +peer0.org1.example.com | [22a 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer0.org2.example.com | [20e 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c0 Returning policy Admins for evaluation +peer0.org1.example.com | [22b 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [179 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1952be11]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [144 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a16c1ae]Init get response status: 200 +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c1 In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org2.example.com | [20f 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [22c 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer1.org2.example.com | [145 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a16c1ae]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [17a 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [210 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [22d 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18560eed]Inside sendExecuteMessage. Message INIT +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c2 Returning policy BlockValidation for evaluation +peer1.org1.example.com | [17b 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1952be11]sending state message INIT +peer0.org1.example.com | [22e 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [146 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a16c1ae]Move state message COMPLETED +peer0.org2.example.com | [211 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [22f 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18560eed]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [17c 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1952be11]Received message READY from shim +peer1.org2.example.com | [147 01-14 11:45:29.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a16c1ae]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c3 In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org1.example.com | [230 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18560eed]Move state message INIT +peer0.org2.example.com | [212 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [17d 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1952be11]Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [148 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a16c1ae]send state message COMPLETED +peer0.org1.example.com | [231 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18560eed]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [213 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [17e 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1952be11]Received message INIT from shim +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c4 Returning policy OrdererOrg/Admins for evaluation +peer1.org2.example.com | [149 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0a16c1ae]Received message COMPLETED from shim +peer0.org1.example.com | [232 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [214 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [17f 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1952be11]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [233 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18560eed]sending state message INIT +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c5 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer1.org2.example.com | [14a 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a16c1ae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [180 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [215 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [234 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]Received message INIT from shim +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c6 Returning policy OrdererOrg/Readers for evaluation +peer0.org2.example.com | [216 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [14b 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0a16c1ae-53a4-4a74-a312-f3690777411d]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [181 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1952be11]Received INIT, initializing chaincode +peer0.org1.example.com | [235 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18560eed]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [236 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [237 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [18560eed]Received INIT, initializing chaincode +peer0.org1.example.com | [238 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [239 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]Init get response status: 200 +peer0.org1.example.com | [23a 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [217 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [14c 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0a16c1ae-53a4-4a74-a312-f3690777411d +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c7 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c8 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c9 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ca Returning policy SampleConsortium/Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0cb In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0cc Returning policy SampleConsortium/Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0cd In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ce Returning policy SampleConsortium/Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0cf In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d0 Returning policy SampleConsortium/Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0d1 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d2 Returning policy SampleConsortium/Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0d3 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d4 Returning policy SampleConsortium/Org1MSP/Admins for evaluation +peer1.org1.example.com | [182 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org1.example.com | [23b 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]Move state message COMPLETED +peer1.org2.example.com | [14d 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [14e 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org2.example.com | [218 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [183 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org1.example.com | [23c 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18560eed]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [23d 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]send state message COMPLETED +peer0.org1.example.com | [23e 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18560eed]Received message COMPLETED from shim +peer0.org1.example.com | [23f 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18560eed]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [14f 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=d4a891e8-c446-403d-980c-a780cb7b5c41,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer1.org2.example.com | [150 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +peer1.org2.example.com | [151 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [152 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org2.example.com | [153 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer1.org2.example.com) +peer1.org2.example.com | [154 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org2.example.com | [155 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=qscc:1.0.2 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0d5 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel +peer0.org1.example.com | [240 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18560eed-ed27-4836-8a71-1c257edeb8cf]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [219 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [184 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1952be11]Init get response status: 200 +peer1.org1.example.com | [185 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1952be11]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [186 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1952be11]Move state message COMPLETED +peer1.org1.example.com | [187 01-14 11:45:28.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1952be11]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [188 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1952be11]send state message COMPLETED +peer1.org1.example.com | [189 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1952be11]Received message COMPLETED from shim +peer1.org1.example.com | [18a 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1952be11]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [18b 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1952be11-18c0-41e8-90ea-423d669da249]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [18c 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1952be11-18c0-41e8-90ea-423d669da249 +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d6 Returning policy Admins for evaluation +peer0.org2.example.com | [21a 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [241 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:18560eed-ed27-4836-8a71-1c257edeb8cf +peer1.org1.example.com | [18d 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0d7 In commit adding relative sub-policy Consortiums/Admins to Channel +peer1.org2.example.com | [156 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +peer1.org2.example.com | [157 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +peer1.org2.example.com | [158 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +peer1.org2.example.com | [159 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +peer1.org2.example.com | [15a 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +peer1.org2.example.com | [15c 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [18e 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org1.example.com | [18f 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer1.org1.example.com | [190 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] +peer1.org1.example.com | [191 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org1.example.com" ], network ID=[dev], address=[peer1.org1.example.com:7051] +peer1.org1.example.com | [192 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer1.org1.example.com | [193 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +peer1.org1.example.com | [194 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer1.org1.example.com | [195 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer0.org1.example.com | [242 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [21b 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [21c 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d8 Returning policy Readers for evaluation +peer1.org1.example.com | [196 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer0.org1.example.com | [243 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [15b 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +peer0.org2.example.com | [21d 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [244 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [09c3921f-7278-4f34-bcb5-eb6d8b90cb8e] +peer1.org1.example.com | [197 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d9 Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers +peer0.org1.example.com | [245 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [21e 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [15d 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [198 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0da Returning policy Writers for evaluation +peer0.org2.example.com | [21f 01-14 11:45:33.57 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [15e 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +peer0.org1.example.com | [246 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b99f7c75-a36e-4ac1-ae2f-bed62c3f2bf0] +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0db Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers +peer1.org1.example.com | [199 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +peer0.org2.example.com | [220 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0dc Returning policy Admins for evaluation +peer1.org2.example.com | [15f 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [247 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=e46d4d8d-609b-4c06-a3cf-5054c8cda936,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org1.example.com | [19a 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0dd Returning policy Admins for evaluation +peer0.org2.example.com | [221 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [160 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +peer1.org1.example.com | [19b 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer0.org1.example.com | [248 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org2.example.com | [222 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [161 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0de Returning policy Readers for evaluation +peer1.org1.example.com | [19c 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer1.org2.example.com | [162 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [223 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [249 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [19d 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer0.org2.example.com | [224 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0df As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [163 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org1.example.com | [24a 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [19e 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer0.org2.example.com | [225 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0e0 Returning policy Writers for evaluation +peer1.org2.example.com | [164 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +peer0.org1.example.com | [24b 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e46d4d8d]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [19f 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +peer0.org2.example.com | [226 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer0.org1.example.com | [24c 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [165 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +peer1.org1.example.com | [1a0 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0e1 As expected, current configuration has policy '/Channel/Writers' +peer0.org2.example.com | [227 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [24d 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e46d4d8d]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [167 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +peer1.org1.example.com | [1a1 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0e2 Returning policy Orderer/BlockValidation for evaluation +peer0.org2.example.com | [228 01-14 11:45:33.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d6103701-1e8d-46f5-9b5e-536423663c35] +peer0.org1.example.com | [24e 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e46d4d8d]Move state message INIT +peer1.org2.example.com | [168 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [1a2 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +orderer.example.com | 2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0e3 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org2.example.com | [229 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=95fd2107-b67f-4da4-82e0-cd8c2139c088,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer0.org1.example.com | [24f 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e46d4d8d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [1a3 01-14 11:45:28.81 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +peer1.org2.example.com | [169 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +orderer.example.com | 2018-01-14 11:45:28.239 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 0e4 retrieveBlockByNumber() - blockNum = [0] +peer0.org2.example.com | [22a 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer0.org1.example.com | [250 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1a4 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:28.239 UTC [fsblkstorage] newBlockfileStream -> DEBU 0e5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [22b 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [166 01-14 11:45:29.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [251 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e46d4d8d]sending state message INIT +peer1.org1.example.com | [1a5 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421666000 +orderer.example.com | 2018-01-14 11:45:28.239 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e6 Remaining bytes=[9082], Going to peek [8] bytes +peer1.org2.example.com | [16a 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +peer0.org2.example.com | [22c 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer0.org2.example.com | [22d 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95fd2107]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [252 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]Received message INIT from shim +orderer.example.com | 2018-01-14 11:45:28.240 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e7 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org2.example.com | [16b 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [1a6 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [253 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e46d4d8d]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [22e 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:28.240 UTC [orderer/multichain] newChainSupport -> DEBU 0e8 [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): +peer1.org1.example.com | [1a7 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [254 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [22f 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [95fd2107]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-14 11:45:28.240 UTC [orderer/multichain] NewManagerImpl -> INFO 0e9 Starting with system channel testchainid and orderer type solo +peer1.org1.example.com | [1a8 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org2.example.com | [16c 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [255 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e46d4d8d]Received INIT, initializing chaincode +peer0.org2.example.com | [230 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95fd2107]Move state message INIT +orderer.example.com | 2018-01-14 11:45:28.240 UTC [orderer/main] main -> INFO 0ea Beginning to serve requests +peer1.org1.example.com | [1a9 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [256 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]Init get response status: 200 +peer1.org2.example.com | [16d 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4a891e8]Move state message READY +peer0.org2.example.com | [231 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95fd2107]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-14 11:45:32.418 UTC [orderer/main] Deliver -> DEBU 0eb Starting new Deliver handler +peer1.org1.example.com | [1aa 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [16e 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d4a891e8]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [257 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.418 UTC [orderer/common/deliver] Handle -> DEBU 0ec Starting new deliver loop +orderer.example.com | 2018-01-14 11:45:32.418 UTC [orderer/common/deliver] Handle -> DEBU 0ed Attempting to read seek info message +orderer.example.com | 2018-01-14 11:45:32.426 UTC [orderer/main] Broadcast -> DEBU 0ee Starting new Broadcast handler +peer0.org1.example.com | [258 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]Move state message COMPLETED +peer0.org1.example.com | [259 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e46d4d8d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [25a 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]send state message COMPLETED +peer0.org1.example.com | [25b 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e46d4d8d]Received message COMPLETED from shim +peer0.org1.example.com | [25c 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e46d4d8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.426 UTC [orderer/common/broadcast] Handle -> DEBU 0ef Starting new broadcast loop +orderer.example.com | 2018-01-14 11:45:32.426 UTC [orderer/common/broadcast] Handle -> DEBU 0f0 Preprocessing CONFIG_UPDATE +orderer.example.com | 2018-01-14 11:45:32.426 UTC [orderer/configupdate] Process -> DEBU 0f1 Processing channel creation request for channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.427 UTC [msp] GetLocalMSP -> DEBU 0f2 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.427 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f3 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:32.427 UTC [msp] GetLocalMSP -> DEBU 0f4 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.427 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f5 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:32.427 UTC [msp/identity] Sign -> DEBU 0f6 Sign: plaintext: 0AB7060A1B08011A0608DC85EDD20522...41646D696E7310021A0641646D696E73 +orderer.example.com | 2018-01-14 11:45:32.428 UTC [msp/identity] Sign -> DEBU 0f7 Sign: digest: 40191FC07C79BA002B950F1F6AD746FA6C5D119235C28D4BCDE66FC0848A96F2 +peer0.org2.example.com | [232 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [233 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95fd2107]sending state message INIT +peer0.org2.example.com | [234 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95fd2107]Received message INIT from shim +peer0.org2.example.com | [235 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95fd2107]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-14 11:45:32.428 UTC [common/config] NewStandardValues -> DEBU 0f8 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:32.428 UTC [common/config] initializeProtosStruct -> DEBU 0f9 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.428 UTC [common/config] initializeProtosStruct -> DEBU 0fa Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.428 UTC [common/config] initializeProtosStruct -> DEBU 0fb Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.428 UTC [common/config] initializeProtosStruct -> DEBU 0fc Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.428 UTC [common/configtx] addToMap -> DEBU 0fd Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 0fe Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 0ff Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 100 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 101 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 102 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [16f 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d4a891e8]Entered state ready +peer1.org2.example.com | [170 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d4a891e8-c446-403d-980c-a780cb7b5c41 +peer1.org2.example.com | [171 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4a891e8]sending state message READY +peer1.org1.example.com | [1ab 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4215a79f0, header 0xc421666090 +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 103 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 104 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [25d 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e46d4d8d-609b-4c06-a3cf-5054c8cda936]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [172 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [174 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 105 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 106 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 107 Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [25e 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e46d4d8d-609b-4c06-a3cf-5054c8cda936 +orderer.example.com | 2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 108 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 109 Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 10a Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [1ac 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [1ad 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 5f28abc7d77f8fdfa86d2ecc4e953ec7d4b7970fe47485bc11193ac3a6df396c +peer1.org1.example.com | [1ae 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 5f28abc7d77f8fdfa86d2ecc4e953ec7d4b7970fe47485bc11193ac3a6df396c channel id: +peer1.org1.example.com | [1af 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 5f28abc7d77f8fdfa86d2ecc4e953ec7d4b7970fe47485bc11193ac3a6df396c channel id: version: 1.0.2 +orderer.example.com | 2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 10b Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 10c Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 10d Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [236 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [25f 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [175 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.431 UTC [common/configtx] addToMap -> DEBU 10e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.431 UTC [common/configtx] addToMap -> DEBU 10f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.431 UTC [common/configtx] addToMap -> DEBU 110 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.433 UTC [common/configtx] addToMap -> DEBU 111 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 112 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 113 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [260 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [1b0 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=5f28abc7d77f8fdfa86d2ecc4e953ec7d4b7970fe47485bc11193ac3a6df396c,syscc=true,proposal=0xc4215a79f0,canname=cscc:1.0.2 +peer0.org2.example.com | [237 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [95fd2107]Received INIT, initializing chaincode +orderer.example.com | 2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 114 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [176 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer0.org1.example.com | [261 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b99f7c75-a36e-4ac1-ae2f-bed62c3f2bf0] +peer0.org1.example.com | [262 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 115 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 116 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 117 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +orderer.example.com | 2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 118 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 119 Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [1b1 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer1.org1.example.com | [1b2 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [1b3 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer1.org1.example.com | [1b4 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f28abc7]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11a Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11b Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [238 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [263 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [9af62c01-714a-4a7d-b862-6861262b0a29] +peer1.org2.example.com | [177 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d4a891e8]Inside sendExecuteMessage. Message INIT +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11c Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [1b5 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [239 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95fd2107]Init get response status: 200 +peer0.org1.example.com | [264 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=b0b2862d-2e0a-44cb-a9f3-4285aeef8061,syscc=true,proposal=0x0,canname=escc:1.0.2 +peer1.org1.example.com | [1b6 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [1b7 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5f28abc7]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11d Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11e Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [23a 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95fd2107]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [178 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [265 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/configtx] processConfig -> DEBU 11f Beginning new config for channel businesschannel +peer0.org1.example.com | [266 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [23b 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95fd2107]Move state message COMPLETED +peer1.org1.example.com | [1b8 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f28abc7]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] NewStandardValues -> DEBU 120 Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [267 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org2.example.com | [179 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d4a891e8]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [23c 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [95fd2107]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [23d 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [95fd2107]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 121 Processing field: HashingAlgorithm +peer1.org2.example.com | [17a 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4a891e8]Move state message INIT +peer0.org2.example.com | [23e 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [95fd2107]Received message COMPLETED from shim +peer1.org1.example.com | [1b9 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f28abc7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 122 Processing field: BlockDataHashingStructure +peer0.org1.example.com | [268 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b0b2862d]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [23f 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95fd2107]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [17b 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d4a891e8]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 123 Processing field: OrdererAddresses +peer1.org1.example.com | [1ba 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1bb 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f28abc7]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 124 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.435 UTC [policies] ProposePolicy -> DEBU 125 Proposed new policy Readers for Channel +peer0.org2.example.com | [240 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [95fd2107-b67f-4da4-82e0-cd8c2139c088]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.435 UTC [policies] ProposePolicy -> DEBU 126 Proposed new policy Writers for Channel +peer1.org2.example.com | [17c 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [17d 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4a891e8]sending state message INIT +peer1.org2.example.com | [173 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4a891e8]Received message READY from shim +orderer.example.com | 2018-01-14 11:45:32.435 UTC [policies] ProposePolicy -> DEBU 127 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] NewStandardValues -> DEBU 128 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 129 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 12a Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 12b Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 12c Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:32.436 UTC [common/config] initializeProtosStruct -> DEBU 12d Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 12e Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 12f Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 130 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 131 Proposed new policy BlockValidation for Orderer +peer1.org1.example.com | [1bc 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f28abc7]Received message TRANSACTION from shim +peer0.org2.example.com | [241 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:95fd2107-b67f-4da4-82e0-cd8c2139c088 +peer0.org1.example.com | [269 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [17e 01-14 11:45:29.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d4a891e8]Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [1bd 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f28abc7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.436 UTC [common/config] NewStandardValues -> DEBU 132 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.436 UTC [common/config] initializeProtosStruct -> DEBU 133 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 134 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 135 Proposed new policy Readers for OrdererOrg +peer1.org1.example.com | [1be 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5f28abc7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 136 Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [17f 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4a891e8]Received message INIT from shim +peer1.org2.example.com | [180 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d4a891e8]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [181 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-14 11:45:32.436 UTC [common/config] NewStandardValues -> DEBU 137 Initializing protos for *struct {} +peer0.org2.example.com | [242 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [26a 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b0b2862d]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [1bf 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +orderer.example.com | 2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 138 Proposed new policy ChannelCreationPolicy for Application +peer1.org2.example.com | [182 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d4a891e8]Received INIT, initializing chaincode +peer0.org1.example.com | [26b 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0b2862d]Move state message INIT +peer1.org1.example.com | [1c0 01-14 11:45:33.32 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +orderer.example.com | 2018-01-14 11:45:32.436 UTC [common/config] NewStandardValues -> DEBU 139 Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [243 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | 2018-01-14 11:45:32.436 UTC [common/config] initializeProtosStruct -> DEBU 13a Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.436 UTC [common/config] NewStandardValues -> DEBU 13b Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 13c Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] NewStandardValues -> DEBU 13d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 13e Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 13f Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 140 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 141 Proposed new policy Writers for Org1MSP +peer0.org2.example.com | [244 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [d6103701-1e8d-46f5-9b5e-536423663c35] +peer0.org2.example.com | [245 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [183 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] NewStandardValues -> DEBU 142 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 143 Processing field: MSP +peer0.org1.example.com | [26c 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b0b2862d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [246 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5ecb5a09-7438-4e33-9676-863592d42c82] +peer1.org1.example.com | [1c1 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] NewStandardValues -> DEBU 144 Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [184 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +peer0.org2.example.com | [247 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=06968577-f6b9-4aff-b905-ef015c9531de,syscc=true,proposal=0x0,canname=lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 145 Processing field: AnchorPeers +peer1.org1.example.com | [1c2 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +peer0.org1.example.com | [26d 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1c3 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] NewStandardValues -> DEBU 146 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [185 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4a891e8]Init get response status: 200 +peer1.org2.example.com | [186 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4a891e8]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [248 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org2.example.com | [249 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 147 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 148 Proposed new policy Writers for Org2MSP +peer0.org2.example.com | [24a 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [187 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4a891e8]Move state message COMPLETED +peer1.org2.example.com | [188 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d4a891e8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1c4 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +orderer.example.com | 2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 149 Proposed new policy Admins for Org2MSP +peer0.org2.example.com | [24b 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [06968577]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [26e 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0b2862d]sending state message INIT +peer0.org1.example.com | [26f 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]Received message INIT from shim +orderer.example.com | 2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 14a Proposed new policy Readers for Org2MSP +peer0.org2.example.com | [24c 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [24d 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [06968577]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [270 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0b2862d]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-14 11:45:32.437 UTC [common/config] validateMSP -> DEBU 14b Setting up MSP for org OrdererOrg +peer1.org1.example.com | [1c5 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [24e 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06968577]Move state message INIT +peer1.org2.example.com | [189 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d4a891e8]send state message COMPLETED +peer0.org1.example.com | [271 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-14 11:45:32.437 UTC [msp] NewBccspMsp -> DEBU 14c Creating BCCSP-based MSP instance +peer1.org1.example.com | [1c6 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +peer0.org2.example.com | [24f 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [06968577]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [272 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b0b2862d]Received INIT, initializing chaincode +peer1.org1.example.com | [1c7 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer1.org2.example.com | [18a 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d4a891e8]Received message COMPLETED from shim +peer0.org2.example.com | [250 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1c8 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [251 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06968577]sending state message INIT +peer1.org2.example.com | [18b 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d4a891e8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [18c 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d4a891e8-c446-403d-980c-a780cb7b5c41]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [18d 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d4a891e8-c446-403d-980c-a780cb7b5c41 +peer0.org1.example.com | [273 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer0.org1.example.com | [274 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]Init get response status: 200 +peer0.org1.example.com | [275 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [276 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]Move state message COMPLETED +peer1.org1.example.com | [1c9 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215e4880), Data:(*common.BlockData)(0xc4215ef780), Metadata:(*common.BlockMetadata)(0xc4215ef7c0)}, doMVCCValidation=true +peer1.org1.example.com | [1ca 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [1cb 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [18e 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.437 UTC [msp] Setup -> DEBU 14d Setting up MSP instance OrdererMSP +peer0.org1.example.com | [277 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0b2862d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [252 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06968577]Received message INIT from shim +peer1.org1.example.com | [1cc 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0xc4, 0xf6, 0xef, 0x6e, 0xea, 0xc7, 0xd1, 0xa2, 0x1, 0xa, 0x48, 0x37, 0x3d, 0xf9, 0x14, 0x71, 0x13, 0xd2, 0x9, 0x4f, 0x96, 0x3b, 0x2c, 0xc3, 0xaf, 0xef, 0x96, 0xc4, 0x7b, 0xba, 0x6d} txOffsets= +peer1.org2.example.com | [18f 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org1.example.com | [278 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]send state message COMPLETED +peer0.org1.example.com | [279 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0b2862d]Received message COMPLETED from shim +peer0.org2.example.com | [253 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06968577]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [254 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [255 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [06968577]Received INIT, initializing chaincode +peer0.org1.example.com | [27a 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b0b2862d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [256 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06968577]Init get response status: 200 +peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=11890 +peer1.org1.example.com | ] +peer1.org2.example.com | [190 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +peer0.org1.example.com | [27b 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b0b2862d-2e0a-44cb-a9f3-4285aeef8061]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [257 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06968577]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.438 UTC [msp/identity] newIdentity -> DEBU 14e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [1cd 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index +peer1.org2.example.com | [191 01-14 11:45:29.29 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +peer0.org1.example.com | [27c 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b0b2862d-2e0a-44cb-a9f3-4285aeef8061 +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [1ce 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [27d 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [258 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06968577]Move state message COMPLETED +peer1.org2.example.com | [192 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer1.org2.example.com" ], network ID=[dev], address=[peer1.org2.example.com:7051] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [1cf 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org1.example.com | [27e 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org2.example.com | [259 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [06968577]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [25a 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [06968577]send state message COMPLETED +peer0.org2.example.com | [25b 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [06968577]Received message COMPLETED from shim +peer0.org2.example.com | [25c 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [06968577]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [25d 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [06968577-f6b9-4aff-b905-ef015c9531de]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [25e 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:06968577-f6b9-4aff-b905-ef015c9531de +peer0.org2.example.com | [25f 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [193 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer1.org1.example.com | [1d0 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +peer0.org2.example.com | [260 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [27f 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [9af62c01-714a-4a7d-b862-6861262b0a29] +peer0.org2.example.com | [261 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5ecb5a09-7438-4e33-9676-863592d42c82] +peer1.org1.example.com | [1d1 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [194 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [280 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [262 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [1d2 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [195 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [281 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e1853bb4-6a7a-4287-bbec-89c604c23806] +peer1.org1.example.com | [1d3 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [263 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [82ef30ad-2706-4c42-8184-8e08d42130dd] +peer1.org2.example.com | [196 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/election' logger enabled for log level 'WARNING' +peer1.org2.example.com | [197 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/gossip' logger enabled for log level 'WARNING' +peer1.org2.example.com | [198 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer1.org2.example.com | [199 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/pull' logger enabled for log level 'WARNING' +peer1.org2.example.com | [19a 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +peer1.org2.example.com | [19b 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +peer1.org2.example.com | [19c 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +peer1.org2.example.com | [19d 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' +peer0.org1.example.com | [282 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=5f902ab2-bd41-43ef-99a6-70fef791cea8,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [283 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [284 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [264 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=3af7d983-0148-4920-b3cf-5383c90d0b20,syscc=true,proposal=0x0,canname=escc:1.0.2 +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer1.org1.example.com | [1d4 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer1.org1.example.com | [1d5 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [1d6 01-14 11:45:33.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org1.example.com | [1d7 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer1.org2.example.com | [19e 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' +peer0.org1.example.com | [285 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [286 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5f902ab2]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [287 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [288 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5f902ab2]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [289 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f902ab2]Move state message INIT +peer1.org1.example.com | [1d8 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [265 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org2.example.com | [266 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [19f 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +peer0.org1.example.com | [28a 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f902ab2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [1a0 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +peer1.org1.example.com | [1d9 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [267 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer1.org2.example.com | [1a1 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +peer1.org1.example.com | [1da 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [1db 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [28b 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.438 UTC [msp/identity] newIdentity -> DEBU 14f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [1a2 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer0.org2.example.com | [268 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3af7d983]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [1dc 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [28c 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f902ab2]sending state message INIT +peer0.org1.example.com | [28d 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]Received message INIT from shim +peer1.org2.example.com | [1a3 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +peer0.org2.example.com | [269 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [1dd 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [1de 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [1a4 01-14 11:45:29.30 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +peer0.org1.example.com | [28e 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f902ab2]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [26a 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [3af7d983]sendExecuteMsg trigger event INIT +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org1.example.com | [1df 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [28f 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [1a5 01-14 11:45:33.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [26b 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3af7d983]Move state message INIT +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [1e0 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [1a6 01-14 11:45:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215cc750 +peer1.org2.example.com | [1a7 01-14 11:45:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [1a8 01-14 11:45:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [1a9 01-14 11:45:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [1aa 01-14 11:45:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [26c 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3af7d983]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [290 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5f902ab2]Received INIT, initializing chaincode +peer1.org1.example.com | [1e1 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1e2 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [1ab 01-14 11:45:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [26d 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [26e 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3af7d983]sending state message INIT +peer0.org2.example.com | [26f 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3af7d983]Received message INIT from shim +peer0.org2.example.com | [270 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3af7d983]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [271 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [291 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]Init get response status: 200 +peer0.org1.example.com | [292 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [293 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]Move state message COMPLETED +peer0.org1.example.com | [294 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f902ab2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [295 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]send state message COMPLETED +peer0.org1.example.com | [296 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f902ab2]Received message COMPLETED from shim +peer0.org1.example.com | [297 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f902ab2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [298 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f902ab2-bd41-43ef-99a6-70fef791cea8]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [1e3 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [1ac 01-14 11:45:33.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4215b50e0, header 0xc4215cc7e0 +peer0.org2.example.com | [272 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [3af7d983]Received INIT, initializing chaincode +orderer.example.com | 2018-01-14 11:45:32.439 UTC [msp/identity] newIdentity -> DEBU 150 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [299 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5f902ab2-bd41-43ef-99a6-70fef791cea8 +peer0.org1.example.com | [29a 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [29b 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer0.org1.example.com | [29c 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e1853bb4-6a7a-4287-bbec-89c604c23806] +peer1.org1.example.com | [1e4 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [1e5 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [1ad 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org1.example.com | [29d 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [273 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org1.example.com | [1e6 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [1ae 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d02c0fdb0e4246a32c386c37a50a81f989cee8204d26a34fa31fd61c70252458 +peer0.org1.example.com | [29e 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [84dfd666-8d81-417c-b6d2-04668eae53a9] +peer0.org2.example.com | [274 01-14 11:45:33.59 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3af7d983]Init get response status: 200 +peer0.org2.example.com | [275 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3af7d983]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [276 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3af7d983]Move state message COMPLETED +peer0.org2.example.com | [277 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3af7d983]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [278 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3af7d983]send state message COMPLETED +peer0.org2.example.com | [279 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3af7d983]Received message COMPLETED from shim +peer0.org2.example.com | [27a 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3af7d983]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [27b 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3af7d983-0148-4920-b3cf-5383c90d0b20]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [27c 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3af7d983-0148-4920-b3cf-5383c90d0b20 +peer1.org2.example.com | [1af 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d02c0fdb0e4246a32c386c37a50a81f989cee8204d26a34fa31fd61c70252458 channel id: +peer1.org1.example.com | [1e7 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [29f 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=21230186-8728-487d-8580-94adb281be2a,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer1.org2.example.com | [1b0 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d02c0fdb0e4246a32c386c37a50a81f989cee8204d26a34fa31fd61c70252458 channel id: version: 1.0.2 +peer0.org2.example.com | [27d 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [1e8 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [1b1 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=d02c0fdb0e4246a32c386c37a50a81f989cee8204d26a34fa31fd61c70252458,syscc=true,proposal=0xc4215b50e0,canname=cscc:1.0.2 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [27e 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | [2a0 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer1.org2.example.com | [1b2 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org1.example.com | [1e9 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [27f 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [82ef30ad-2706-4c42-8184-8e08d42130dd] +peer1.org2.example.com | [1b3 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [2a1 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer1.org1.example.com | [1ea 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [1b4 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [2a2 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer0.org1.example.com | [2a3 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [21230186]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [280 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [1eb 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [1b5 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d02c0fdb]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [281 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4c173df8-6325-4d11-affd-37f097c3a966] +peer1.org2.example.com | [1b6 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer1.org1.example.com | [1ec 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [2a4 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [1b7 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [282 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=fa9bbcf7-d5ed-4a8b-84dd-cae00f16c251,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [1ed 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [2a5 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [21230186]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [1b8 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d02c0fdb]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [283 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [1b9 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d02c0fdb]Move state message TRANSACTION +peer1.org1.example.com | [1ee 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [1ba 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d02c0fdb]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [2a6 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21230186]Move state message INIT +peer0.org2.example.com | [284 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer1.org2.example.com | [1bb 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [1ef 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [2a7 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [21230186]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [285 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [1bc 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d02c0fdb]sending state message TRANSACTION +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org1.example.com | [1f0 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [1bd 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d02c0fdb]Received message TRANSACTION from shim +peer0.org1.example.com | [2a8 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [286 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa9bbcf7]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [1be 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d02c0fdb]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org1.example.com | [1f1 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [2a9 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21230186]sending state message INIT +peer1.org2.example.com | [1bf 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d02c0fdb]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [287 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [1f2 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [2aa 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]Received message INIT from shim +peer1.org2.example.com | [1c0 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org1.example.com | [2ab 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21230186]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [288 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [fa9bbcf7]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-14 11:45:32.440 UTC [msp] Validate -> DEBU 151 MSP OrdererMSP validating identity +peer1.org1.example.com | [1f3 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [1c1 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org1.example.com | [2ac 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [289 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa9bbcf7]Move state message INIT +orderer.example.com | 2018-01-14 11:45:32.440 UTC [common/config] Validate -> DEBU 152 Anchor peers for org Org1MSP are +peer1.org2.example.com | [1c2 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org1.example.com | [2ad 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [21230186]Received INIT, initializing chaincode +peer1.org2.example.com | [1c3 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +orderer.example.com | 2018-01-14 11:45:32.440 UTC [common/config] validateMSP -> DEBU 153 Setting up MSP for org Org1MSP +peer0.org2.example.com | [28a 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa9bbcf7]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [2ae 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [1f4 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [1c4 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +peer0.org1.example.com | [2af 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]Init get response status: 200 +orderer.example.com | 2018-01-14 11:45:32.440 UTC [msp] NewBccspMsp -> DEBU 154 Creating BCCSP-based MSP instance +peer1.org1.example.com | [1f5 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [28b 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [2b0 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [1c5 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer1.org1.example.com | [1f6 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [2b1 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.440 UTC [msp] Setup -> DEBU 155 Setting up MSP instance Org1MSP +peer0.org2.example.com | [28c 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa9bbcf7]sending state message INIT +peer0.org1.example.com | [2b2 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21230186]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [1f7 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [2b3 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]send state message COMPLETED +peer1.org2.example.com | [1c6 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org2.example.com | [28d 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa9bbcf7]Received message INIT from shim +peer0.org1.example.com | [2b4 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21230186]Received message COMPLETED from shim +peer1.org1.example.com | [1f8 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:32.440 UTC [msp/identity] newIdentity -> DEBU 156 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [2b5 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [21230186]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [28e 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa9bbcf7]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [1f9 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [1c7 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +peer0.org1.example.com | [2b6 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [21230186-8728-487d-8580-94adb281be2a]HandleMessage- COMPLETED. Notify +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [28f 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [1c8 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +peer0.org1.example.com | [2b7 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:21230186-8728-487d-8580-94adb281be2a +peer1.org1.example.com | [1fa 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [290 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [fa9bbcf7]Received INIT, initializing chaincode +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [2b8 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [1fb 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [1c9 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [2b9 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer0.org2.example.com | [291 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa9bbcf7]Init get response status: 200 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [2ba 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [84dfd666-8d81-417c-b6d2-04668eae53a9] +peer1.org1.example.com | [1fc 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [292 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa9bbcf7]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [2bb 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [1ca 01-14 11:45:33.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421515740), Data:(*common.BlockData)(0xc4216ccc40), Metadata:(*common.BlockMetadata)(0xc4216ccc80)}, doMVCCValidation=true +peer1.org1.example.com | [1fd 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [2bc 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | [293 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa9bbcf7]Move state message COMPLETED +peer0.org1.example.com | [2bd 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [1fe 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [1cb 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [2be 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [294 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fa9bbcf7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [1cc 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [2bf 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [1ff 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [1cd 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0xc4, 0xf6, 0xef, 0x6e, 0xea, 0xc7, 0xd1, 0xa2, 0x1, 0xa, 0x48, 0x37, 0x3d, 0xf9, 0x14, 0x71, 0x13, 0xd2, 0x9, 0x4f, 0x96, 0x3b, 0x2c, 0xc3, 0xaf, 0xef, 0x96, 0xc4, 0x7b, 0xba, 0x6d} txOffsets= +peer0.org1.example.com | [2c0 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [295 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fa9bbcf7]send state message COMPLETED +peer1.org1.example.com | [200 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [2c1 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=11890 +peer0.org2.example.com | [296 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fa9bbcf7]Received message COMPLETED from shim +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +peer0.org1.example.com | [2c2 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1973ce8a]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [201 01-14 11:45:33.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | ] +peer1.org1.example.com | [202 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org2.example.com | [297 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa9bbcf7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [1ce 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index +peer0.org1.example.com | [2c3 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1973ce8a]Move state message COMPLETED +peer1.org1.example.com | [203 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer0.org1.example.com | [2c4 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1973ce8a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [298 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fa9bbcf7-d5ed-4a8b-84dd-cae00f16c251]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [204 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [1cf 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [2c5 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1973ce8a]send state message COMPLETED +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +peer0.org1.example.com | [2c6 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1973ce8a]Received message COMPLETED from shim +peer0.org2.example.com | [299 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fa9bbcf7-d5ed-4a8b-84dd-cae00f16c251 +peer1.org2.example.com | [1d0 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.441 UTC [msp/identity] newIdentity -> DEBU 157 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [205 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [2c7 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1973ce8a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [23d 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]send state message COMPLETED -peer0.org1.example.com | [23e 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74d27789]Received message COMPLETED from shim -peer0.org1.example.com | [23f 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74d27789]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [240 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74d27789-347b-470c-ab30-0362e00de8f1]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [241 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74d27789-347b-470c-ab30-0362e00de8f1 -peer0.org2.example.com | [1de 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [20a 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [2d0 01-04 01:51:04.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -peer0.org1.example.com | [242 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [1df 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [1e0 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [1e1 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [243 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [2c8 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [29a 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [1d1 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [20b 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [2d1 01-04 01:51:04.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org1.example.com | [244 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [76932619-2d69-4d22-b887-a6cd62b3ac52] -peer0.org2.example.com | [1e2 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [206 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [2c9 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2 orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org1.example.com | [20c 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [2d2 01-04 01:51:04.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer0.org1.example.com | [245 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [20d 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [1d2 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [29b 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org2.example.com | [1e3 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [2d3 01-04 01:51:04.22 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer0.org1.example.com | [246 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [27d68993-c622-43a3-bb40-cb91bacf1f32] -peer1.org1.example.com | [20e 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [2ca 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [1d3 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [207 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | [1e4 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [247 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=e3b8971e-7aa8-47a0-a318-995308db154d,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org1.example.com | [20f 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [210 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [211 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [248 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org2.example.com | [29c 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4c173df8-6325-4d11-affd-37f097c3a966] orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org2.example.com | [1e5 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [2d4 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer0.org1.example.com | [249 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [24a 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [24b 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e3b8971e]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [1e6 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [24c 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [212 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1d4 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [208 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [24d 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e3b8971e]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [24e 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3b8971e]Move state message INIT -peer0.org1.example.com | [24f 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3b8971e]Fabric side Handling ChaincodeMessage of type: INIT in state ready orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [1e7 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [2d5 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer1.org1.example.com | [213 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [250 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2d6 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | 2018-01-04 01:50:57.152 UTC [msp/identity] newIdentity -> DEBU 158 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [251 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3b8971e]sending state message INIT -peer0.org2.example.com | [1e8 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [214 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [252 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]Received message INIT from shim -peer1.org2.example.com | [2d7 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [1e9 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [1ea 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [253 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e3b8971e]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [215 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.442 UTC [msp/identity] newIdentity -> DEBU 158 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [254 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [1eb 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [255 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e3b8971e]Received INIT, initializing chaincode -peer1.org2.example.com | [2d8 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [2d9 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421a080c0 -peer1.org2.example.com | [2da 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -peer1.org2.example.com | [2db 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [256 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]Init get response status: 200 -peer1.org1.example.com | [216 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [1ec 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [1ed 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [257 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [217 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [258 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]Move state message COMPLETED -peer1.org1.example.com | [218 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [1ee 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [259 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e3b8971e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [25a 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]send state message COMPLETED -peer0.org1.example.com | [25b 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3b8971e]Received message COMPLETED from shim -peer0.org1.example.com | [25c 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3b8971e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [25d 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3b8971e-7aa8-47a0-a318-995308db154d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [25e 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e3b8971e-7aa8-47a0-a318-995308db154d -peer0.org1.example.com | [25f 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [260 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org1.example.com | [219 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [2dc 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [261 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [27d68993-c622-43a3-bb40-cb91bacf1f32] -peer0.org1.example.com | [262 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [21a 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [1ef 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [2dd 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer1.org2.example.com | [2de 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [263 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6b7db544-cefd-4b96-b586-e313e265f61a] -peer0.org1.example.com | [264 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=965133c5-e342-49c4-b7cc-6a99782405ef,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org1.example.com | [265 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org2.example.com | [1f0 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [1f1 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [21b 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [2df 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer0.org1.example.com | [266 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [267 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [268 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [965133c5]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [269 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [26a 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [965133c5]sendExecuteMsg trigger event INIT orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [21c 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [1f2 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [26b 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [965133c5]Move state message INIT -peer0.org2.example.com | [1f3 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [1f4 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [1f5 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [26c 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [965133c5]Fabric side Handling ChaincodeMessage of type: INIT in state ready orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org1.example.com | [21d 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [21e 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [26d 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2e0 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [1f6 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [1f7 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [26e 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [965133c5]sending state message INIT -peer1.org1.example.com | [21f 01-04 01:50:57.91 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [2e1 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421a12000, header channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -peer0.org2.example.com | [1f8 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [26f 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]Received message INIT from shim orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [220 01-04 01:50:57.92 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [270 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [965133c5]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [1f9 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [2e2 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [271 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [221 01-04 01:50:57.92 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:57.153 UTC [msp] Validate -> DEBU 159 MSP Org1MSP validating identity -peer0.org2.example.com | [1fa 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [272 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [965133c5]Received INIT, initializing chaincode -peer1.org1.example.com | [222 01-04 01:50:57.92 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [223 01-04 01:50:57.92 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [224 01-04 01:50:57.92 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [225 01-04 01:50:57.92 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [226 01-04 01:50:57.92 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [227 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org1.example.com | [228 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -orderer.example.com | 2018-01-04 01:50:57.153 UTC [common/config] Validate -> DEBU 15a Anchor peers for org Org2MSP are -peer0.org2.example.com | [1fb 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [273 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer0.org1.example.com | [274 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]Init get response status: 200 -peer0.org1.example.com | [275 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [276 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]Move state message COMPLETED -peer0.org2.example.com | [1fc 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org2.example.com | [1fd 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-04 01:50:57.160 UTC [common/config] validateMSP -> DEBU 15b Setting up MSP for org Org2MSP -peer1.org1.example.com | [229 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [22a 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [314243c4-b2df-435f-bd93-6674cf98bee7] -peer1.org1.example.com | [22b 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=698b99ad-00de-4b9d-bea0-cad08e3957c0,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org2.example.com | [1fe 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-04 01:50:57.160 UTC [msp] NewBccspMsp -> DEBU 15c Creating BCCSP-based MSP instance -peer1.org2.example.com | [2e3 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [2e4 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [22c 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer1.org1.example.com | [22d 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [22e 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org2.example.com | [1ff 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-04 01:50:57.160 UTC [msp] Setup -> DEBU 15d Setting up MSP instance Org2MSP -peer1.org1.example.com | [22f 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [698b99ad]Inside sendExecuteMessage. Message INIT -orderer.example.com | 2018-01-04 01:50:57.161 UTC [msp/identity] newIdentity -> DEBU 15e Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [200 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [277 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [965133c5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [278 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]send state message COMPLETED -peer1.org1.example.com | [230 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [201 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [202 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [203 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [231 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [698b99ad]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-14 11:45:32.442 UTC [msp] Validate -> DEBU 159 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.443 UTC [common/config] Validate -> DEBU 15a Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:32.443 UTC [common/config] validateMSP -> DEBU 15b Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:32.443 UTC [msp] NewBccspMsp -> DEBU 15c Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.443 UTC [msp] Setup -> DEBU 15d Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:32.444 UTC [msp/identity] newIdentity -> DEBU 15e Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [2cb 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [2cc 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [2cd 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [2ce 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [2cf 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4216c4180 +peer0.org1.example.com | [2d0 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [2d1 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [29d 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [29e 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a0ccd8c2-e345-46c6-b31e-fdd3624d5462] +peer0.org2.example.com | [29f 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=03681da4-661f-4a68-a092-2a15ce6f2098,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer0.org2.example.com | [2a0 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer0.org1.example.com | [2d2 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [209 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [1d5 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [2a1 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [2a2 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer0.org2.example.com | [2a3 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [03681da4]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [2a4 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [2d3 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [20a 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [2a5 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [03681da4]sendExecuteMsg trigger event INIT orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +peer1.org2.example.com | [1d6 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [2d4 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [20b 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [2a6 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [03681da4]Move state message INIT orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [1d7 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org1.example.com | [2d5 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219aa0a0, header 0xc4216c41e0 +peer1.org1.example.com | [20c 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [2a7 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [03681da4]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [2a8 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [2a9 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [03681da4]sending state message INIT +peer1.org2.example.com | [1d8 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [2d6 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [2d7 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a +peer0.org1.example.com | [2d8 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a channel id: +peer1.org1.example.com | [20d 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [2aa 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03681da4]Received message INIT from shim +peer1.org2.example.com | [1d9 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [204 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [232 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [698b99ad]Move state message INIT -peer1.org1.example.com | [233 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [698b99ad]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [234 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [235 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [698b99ad]sending state message INIT -peer1.org1.example.com | [236 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [698b99ad]Received message INIT from shim -peer1.org1.example.com | [237 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [698b99ad]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [238 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [239 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [698b99ad]Received INIT, initializing chaincode orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ @@ -3380,38 +3331,136 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [205 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [206 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [207 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [208 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:57.161 UTC [msp/identity] newIdentity -> DEBU 15f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [23a 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [279 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [965133c5]Received message COMPLETED from shim -peer0.org2.example.com | [209 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [20a 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [23b 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [698b99ad]Init get response status: 200 -peer0.org1.example.com | [27a 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [965133c5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2e5 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [20b 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [23c 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [698b99ad]Init succeeded. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.445 UTC [msp/identity] newIdentity -> DEBU 15f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [2d9 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a channel id: version: 1.0.2 +peer1.org1.example.com | [20e 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2ab 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [03681da4]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [1da 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [20f 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org2.example.com | [2ac 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [1db 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org1.example.com | [2da 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a,syscc=true,proposal=0xc4219aa0a0,canname=lscc:1.0.2 +peer1.org1.example.com | [210 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1dc 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer1.org1.example.com | [211 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2ad 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [03681da4]Received INIT, initializing chaincode +peer1.org2.example.com | [1dd 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [2db 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [2dc 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [2dd 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [2de 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b4a560b]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [2df 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [212 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [2ae 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org2.example.com | [1de 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [1df 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [2e0 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [213 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2af 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03681da4]Init get response status: 200 +peer1.org1.example.com | [214 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1e0 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | [2b0 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03681da4]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [2b1 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03681da4]Move state message COMPLETED +peer1.org1.example.com | [215 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1e1 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [1e2 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [1e3 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [1e4 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1e5 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [1e6 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [1e7 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [1e8 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [1e9 01-14 11:45:33.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [1ea 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [1eb 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [1ec 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [1ed 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [1ee 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [1ef 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [2e1 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b4a560b]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [2b2 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [03681da4]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [2b3 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [03681da4]send state message COMPLETED +peer0.org2.example.com | [2b4 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [03681da4]Received message COMPLETED from shim +peer0.org2.example.com | [2b5 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [03681da4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [2b6 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [03681da4-661f-4a68-a092-2a15ce6f2098]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2b7 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:03681da4-661f-4a68-a092-2a15ce6f2098 +peer0.org2.example.com | [2b8 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2b9 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org1.example.com | [216 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [1f0 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [2ba 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a0ccd8c2-e345-46c6-b31e-fdd3624d5462] +peer0.org1.example.com | [2e2 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b4a560b]Move state message TRANSACTION +peer0.org1.example.com | [2e3 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b4a560b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [2e4 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [2e5 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b4a560b]sending state message TRANSACTION +peer0.org1.example.com | [2e6 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b4a560b]Received message TRANSACTION from shim +peer0.org1.example.com | [2e7 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b4a560b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [2e8 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3b4a560b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [2e9 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b4a560b]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [217 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1f1 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [1f2 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [1f3 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [1f4 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [1f5 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [2ea 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b4a560b]Move state message COMPLETED +peer0.org1.example.com | [2eb 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b4a560b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2ec 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b4a560b]send state message COMPLETED +peer0.org1.example.com | [2ed 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b4a560b]Received message COMPLETED from shim +peer0.org2.example.com | [2bb 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [1f6 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org1.example.com | [2ee 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b4a560b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [2bc 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer1.org2.example.com | [1f7 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [218 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org1.example.com | [2ef 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2bd 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [1f8 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [219 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [2f0 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a +peer0.org2.example.com | [2be 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [2bf 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [2c0 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [2c1 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [2c2 01-14 11:45:33.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9c1e8d09]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [1f9 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [1fa 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [21a 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [21b 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [21c 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [21d 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [21e 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [2c3 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9c1e8d09]Move state message COMPLETED +peer0.org1.example.com | [2f1 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [1fb 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer1.org1.example.com | [21f 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [2c4 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9c1e8d09]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [2f2 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [1fc 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [220 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [221 01-14 11:45:33.35 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [222 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [223 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [2c5 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9c1e8d09]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.445 UTC [msp/identity] newIdentity -> DEBU 160 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [20c 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [2e6 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [23d 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [698b99ad]Move state message COMPLETED -peer0.org1.example.com | [27b 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [965133c5-e342-49c4-b7cc-6a99782405ef]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [20d 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [20e 01-04 01:50:58.03 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [23e 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [698b99ad]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [23f 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [698b99ad]send state message COMPLETED -peer0.org2.example.com | [20f 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [27c 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:965133c5-e342-49c4-b7cc-6a99782405ef -peer0.org1.example.com | [27d 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [210 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [240 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [698b99ad]Received message COMPLETED from shim orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G @@ -3419,7202 +3468,7167 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org1.example.com | [2f3 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [1fd 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [224 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [2c6 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9c1e8d09]Received message COMPLETED from shim orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.163 UTC [msp/identity] newIdentity -> DEBU 160 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [211 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [241 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [698b99ad]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [242 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [698b99ad-00de-4b9d-bea0-cad08e3957c0]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | [243 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:698b99ad-00de-4b9d-bea0-cad08e3957c0 -peer1.org1.example.com | [244 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [245 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [246 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [314243c4-b2df-435f-bd93-6674cf98bee7] -peer1.org1.example.com | [247 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [212 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [248 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [51bb3cfe-dcfd-480a-ac7a-5075460a97c6] -peer0.org2.example.com | [213 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [27e 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org2.example.com | [2e7 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org2.example.com | [214 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [249 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=d1df25fd-00b0-489c-8fcc-3baf00bfa132,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer1.org1.example.com | [24a 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org2.example.com | [215 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org2.example.com | [216 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [24b 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [2e8 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [217 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org1.example.com | [24c 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [27f 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6b7db544-cefd-4b96-b586-e313e265f61a] -peer0.org2.example.com | [218 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer1.org2.example.com | [2e9 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [24d 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d1df25fd]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [219 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [2ea 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [280 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [281 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [abad93e6-557e-46a2-8f24-9e948ba854c4] -peer0.org2.example.com | [21a 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [21b 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [2eb 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:57.164 UTC [msp] Validate -> DEBU 161 MSP Org2MSP validating identity -peer0.org1.example.com | [282 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=111b7097-2aea-4658-8a02-66c16d064bba,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [24e 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [21c 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-04 01:50:57.164 UTC [msp] Setup -> DEBU 162 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.165 UTC [msp] Setup -> DEBU 163 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 164 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] CommitProposals -> DEBU 165 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 166 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] CommitProposals -> DEBU 167 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 168 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] CommitProposals -> DEBU 169 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16a Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16b Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16c Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16d Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16e Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.165 UTC [policies] CommitProposals -> DEBU 16f In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 170 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 171 In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 172 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 173 In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 174 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 175 In commit adding relative sub-policy Org2MSP/Readers to Application -peer0.org2.example.com | [21d 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [21e 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [24f 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [d1df25fd]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [250 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d1df25fd]Move state message INIT -peer1.org1.example.com | [251 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d1df25fd]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [252 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 176 Returning policy Writers for evaluation -peer0.org2.example.com | [21f 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [220 01-04 01:50:58.04 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [221 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [222 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [223 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [224 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [225 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org2.example.com | [226 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -peer0.org2.example.com | [227 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [228 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5ea07b63-0c08-4594-a467-4db4b56f15c3] -peer0.org2.example.com | [229 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=7c3d415d-c2cf-4dba-b070-5babf425ffb0,syscc=true,proposal=0x0,canname=cscc:1.0.2 -peer0.org2.example.com | [22a 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -peer0.org2.example.com | [22b 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [22c 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -peer0.org2.example.com | [22d 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7c3d415d]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [253 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d1df25fd]sending state message INIT -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 177 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 178 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 179 In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 17a Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 17b Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 17c Returning policy OrdererOrg/Readers for evaluation -peer0.org2.example.com | [22e 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [254 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d1df25fd]Received message INIT from shim -peer1.org1.example.com | [255 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d1df25fd]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [256 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [257 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [d1df25fd]Received INIT, initializing chaincode -peer1.org1.example.com | [258 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d1df25fd]Init get response status: 200 -peer1.org1.example.com | [259 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d1df25fd]Init succeeded. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 17d In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 17e Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 17f In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 180 Returning policy Admins for evaluation -peer1.org1.example.com | [25a 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d1df25fd]Move state message COMPLETED -peer0.org2.example.com | [22f 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7c3d415d]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [2ec 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [283 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 181 In commit adding relative sub-policy Orderer/Admins to Channel -peer1.org1.example.com | [25b 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d1df25fd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [230 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c3d415d]Move state message INIT -peer0.org1.example.com | [284 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 182 Returning policy BlockValidation for evaluation -peer1.org1.example.com | [25c 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d1df25fd]send state message COMPLETED -peer0.org1.example.com | [285 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [286 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [111b7097]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [287 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 183 In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer1.org2.example.com | [2ed 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [231 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c3d415d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [25d 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d1df25fd]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 184 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 185 In commit adding relative sub-policy Orderer/Readers to Channel -peer1.org2.example.com | [2ee 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [232 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [233 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c3d415d]sending state message INIT -peer0.org2.example.com | [234 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c3d415d]Received message INIT from shim -peer0.org2.example.com | [235 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c3d415d]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 186 Returning policy OrdererOrg/Writers for evaluation -peer1.org1.example.com | [25e 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d1df25fd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [288 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [111b7097]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [289 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [111b7097]Move state message INIT -peer0.org1.example.com | [28a 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [111b7097]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [236 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 187 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 188 Returning policy OrdererOrg/Admins for evaluation -peer1.org1.example.com | [25f 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d1df25fd-00b0-489c-8fcc-3baf00bfa132]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [28b 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [2ef 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [237 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7c3d415d]Received INIT, initializing chaincode -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 189 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer1.org2.example.com | [2f0 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [260 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d1df25fd-00b0-489c-8fcc-3baf00bfa132 -peer0.org1.example.com | [28c 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [111b7097]sending state message INIT -peer0.org2.example.com | [238 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [2f1 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 18a Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [28d 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]Received message INIT from shim -peer0.org2.example.com | [239 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c3d415d]Init get response status: 200 -peer1.org2.example.com | [2f2 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [28e 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [111b7097]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 18b In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer1.org1.example.com | [261 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [23a 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c3d415d]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [2f3 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [2f4 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [2f5 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 18c Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 18d In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer0.org2.example.com | [23b 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c3d415d]Move state message COMPLETED -peer1.org1.example.com | [262 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [263 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [51bb3cfe-dcfd-480a-ac7a-5075460a97c6] -peer0.org1.example.com | [28f 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 18e Returning policy Org1MSP/Admins for evaluation -peer0.org2.example.com | [23c 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c3d415d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [23d 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c3d415d]send state message COMPLETED -peer1.org1.example.com | [264 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [2f6 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 18f In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org2.example.com | [23e 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c3d415d]Received message COMPLETED from shim -peer0.org2.example.com | [23f 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c3d415d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [265 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [693415d6-0365-491e-87d5-f2bdc97a6859] -peer1.org2.example.com | [2f7 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [2f8 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [290 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [111b7097]Received INIT, initializing chaincode -peer1.org1.example.com | [266 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=de59b074-7019-4245-8a1a-3fd30ffeaa5d,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org2.example.com | [240 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c3d415d-c2cf-4dba-b070-5babf425ffb0]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [241 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7c3d415d-c2cf-4dba-b070-5babf425ffb0 -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 190 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 191 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 192 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 193 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer1.org1.example.com | [267 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org2.example.com | [242 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [243 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [291 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]Init get response status: 200 -orderer.example.com | 2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 194 Returning policy Org2MSP/Writers for evaluation -peer1.org1.example.com | [268 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [269 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org1.example.com | [26a 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [de59b074]Inside sendExecuteMessage. Message INIT -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] CommitProposals -> DEBU 195 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 196 Returning policy Org2MSP/Admins for evaluation -peer1.org1.example.com | [26b 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [26c 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [de59b074]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [26d 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de59b074]Move state message INIT -peer0.org2.example.com | [244 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5ea07b63-0c08-4594-a467-4db4b56f15c3] -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] CommitProposals -> DEBU 197 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 198 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 199 Returning dummy reject all policy because Readers could not be found in /Application/Readers -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 19a Returning dummy reject all policy because Writers could not be found in /Application/Writers -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 19b Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 19c Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 19d Returning dummy reject all policy because Admins could not be found in /Application/Admins -orderer.example.com | 2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 19e Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 19f Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 1a0 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [26e 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de59b074]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [2f9 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [2fa 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 1a1 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 1a2 Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [26f 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [270 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de59b074]sending state message INIT -peer1.org1.example.com | [271 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de59b074]Received message INIT from shim -peer1.org1.example.com | [272 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de59b074]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [273 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [245 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 1a3 Adding to config map: [Groups] /Channel -peer0.org1.example.com | [292 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [246 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b340f87d-88b2-4dea-9e35-9c4aeb79afe3] -peer0.org2.example.com | [247 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=692c6d73-f351-4dd0-9c65-5658715768ba,syscc=true,proposal=0x0,canname=lscc:1.0.2 -peer0.org2.example.com | [248 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org2.example.com | [249 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [24a 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org2.example.com | [24b 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [692c6d73]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [274 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [de59b074]Received INIT, initializing chaincode -peer1.org1.example.com | [275 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -orderer.example.com | 2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a4 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a5 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [2fb 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [2fc 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [2fd 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [24c 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [24d 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [692c6d73]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [24e 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [692c6d73]Move state message INIT -peer0.org2.example.com | [24f 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [692c6d73]Fabric side Handling ChaincodeMessage of type: INIT in state ready -orderer.example.com | 2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a6 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [2fe 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [2ff 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [300 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [301 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [302 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org2.example.com | [303 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [276 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de59b074]Init get response status: 200 -peer0.org2.example.com | [250 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a7 Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [293 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]Move state message COMPLETED -peer1.org1.example.com | [277 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de59b074]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [251 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [692c6d73]sending state message INIT -peer0.org2.example.com | [252 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [692c6d73]Received message INIT from shim -peer0.org2.example.com | [253 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [692c6d73]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [254 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [255 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [692c6d73]Received INIT, initializing chaincode -orderer.example.com | 2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a8 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a9 Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [256 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [692c6d73]Init get response status: 200 -peer1.org1.example.com | [278 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de59b074]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1aa Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [304 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [305 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [306 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [307 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [308 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [279 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [de59b074]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [27a 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [de59b074]send state message COMPLETED -peer0.org2.example.com | [257 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [692c6d73]Init succeeded. Sending COMPLETED -peer1.org2.example.com | [30a 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org1.example.com | [294 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [111b7097]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [295 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]send state message COMPLETED -peer1.org1.example.com | [27b 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [de59b074]Received message COMPLETED from shim -peer1.org1.example.com | [27c 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de59b074]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [309 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.169 UTC [policies] GetPolicy -> DEBU 1ab Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [296 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [111b7097]Received message COMPLETED from shim -peer0.org1.example.com | [297 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [111b7097]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [298 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [111b7097-2aea-4658-8a02-66c16d064bba]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [299 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:111b7097-2aea-4658-8a02-66c16d064bba -peer0.org1.example.com | [29a 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [258 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [692c6d73]Move state message COMPLETED -peer0.org2.example.com | [259 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [692c6d73]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [25a 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [692c6d73]send state message COMPLETED -peer1.org1.example.com | [27d 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [de59b074-7019-4245-8a1a-3fd30ffeaa5d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [29b 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org1.example.com | [29c 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [abad93e6-557e-46a2-8f24-9e948ba854c4] -peer0.org1.example.com | [29d 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [29e 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e6a1dab2-0fe6-4096-9ef3-51204ec23906] -orderer.example.com | 2018-01-04 01:50:57.169 UTC [cauthdsl] func1 -> DEBU 1ac 0xc420026918 gate 1515030657169780600 evaluation starts -peer1.org1.example.com | [27e 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:de59b074-7019-4245-8a1a-3fd30ffeaa5d -orderer.example.com | 2018-01-04 01:50:57.169 UTC [cauthdsl] func2 -> DEBU 1ad 0xc420026918 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [27f 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [280 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [281 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [693415d6-0365-491e-87d5-f2bdc97a6859] -peer1.org1.example.com | [282 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [283 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e74cde03-24c3-4469-8763-4ff8371262ec] -peer1.org1.example.com | [284 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=c1b1efe8-416f-478c-b580-c6f0ff0c33c3,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [285 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org1.example.com | [286 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [287 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [288 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c1b1efe8]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [289 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [28a 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [c1b1efe8]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [28b 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1b1efe8]Move state message INIT -orderer.example.com | 2018-01-04 01:50:57.169 UTC [cauthdsl] func2 -> DEBU 1ae 0xc420026918 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org2.example.com | [25b 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [692c6d73]Received message COMPLETED from shim -peer0.org2.example.com | [25c 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [692c6d73]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [25d 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [692c6d73-f351-4dd0-9c65-5658715768ba]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [25e 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:692c6d73-f351-4dd0-9c65-5658715768ba -peer0.org2.example.com | [25f 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [260 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [28c 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c1b1efe8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [28d 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [28e 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1b1efe8]sending state message INIT -orderer.example.com | 2018-01-04 01:50:57.170 UTC [msp/identity] newIdentity -> DEBU 1af Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [29f 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=77489167-29ec-4681-8c1a-432ee033de79,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer0.org2.example.com | [261 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b340f87d-88b2-4dea-9e35-9c4aeb79afe3] -peer1.org2.example.com | [30b 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [28f 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1b1efe8]Received message INIT from shim -peer1.org1.example.com | [290 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1b1efe8]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [262 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [2a0 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -peer1.org1.example.com | [291 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [2f4 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [1fe 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [225 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [226 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org2.example.com | [2c7 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9c1e8d09]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.446 UTC [msp] Validate -> DEBU 161 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.447 UTC [msp] Setup -> DEBU 162 Setting up the MSP manager (3 msps) +peer1.org1.example.com | [227 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer0.org1.example.com | [2f5 01-14 11:45:39.15 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +peer1.org2.example.com | [1ff 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [2c8 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9c1e8d090b668dcb9fa5d4c7cfeb6e01188d3b4cf024469bc4df17609423f3b7]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.447 UTC [msp] Setup -> DEBU 163 MSP manager setup complete, setup 3 msps +peer1.org1.example.com | [228 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2f6 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer1.org2.example.com | [200 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [2c9 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9c1e8d090b668dcb9fa5d4c7cfeb6e01188d3b4cf024469bc4df17609423f3b7 +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 164 Returning policy Readers for evaluation +peer1.org1.example.com | [229 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [122f786f-f1e6-47ab-ab83-cea468f5e198] +peer0.org1.example.com | [2f7 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +peer1.org2.example.com | [201 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [2ca 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 165 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org1.example.com | [22a 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=1f79bee7-655a-49c0-b447-7756d2cdef61,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer1.org2.example.com | [202 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +peer0.org1.example.com | [2f8 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer0.org2.example.com | [2cb 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 166 Returning policy Writers for evaluation +peer1.org1.example.com | [22b 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer1.org1.example.com | [22c 01-14 11:45:33.36 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [22d 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer1.org1.example.com | [22e 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1f79bee7]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [22f 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [230 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [1f79bee7]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [231 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f79bee7]Move state message INIT +peer1.org1.example.com | [232 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f79bee7]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org2.example.com | [2cc 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [203 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [204 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [205 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [206 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [2cd 01-14 11:45:33.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [233 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [234 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f79bee7]sending state message INIT +peer1.org1.example.com | [235 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f79bee7]Received message INIT from shim +peer1.org2.example.com | [207 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [208 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [209 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [20a 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [2ce 01-14 11:45:39.59 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +peer0.org1.example.com | [2f9 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +peer0.org1.example.com | [2fa 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer0.org1.example.com | [2fb 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +peer0.org1.example.com | [2fc 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +peer0.org1.example.com | [2fd 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [2fe 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [236 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f79bee7]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [237 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org1.example.com | [238 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [1f79bee7]Received INIT, initializing chaincode +peer1.org1.example.com | [239 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [23a 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f79bee7]Init get response status: 200 +peer1.org1.example.com | [23b 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f79bee7]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [20b 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [2cf 01-14 11:45:39.60 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer0.org1.example.com | [2ff 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [23c 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f79bee7]Move state message COMPLETED +peer1.org1.example.com | [23d 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f79bee7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [2d0 01-14 11:45:39.60 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +peer0.org2.example.com | [2d1 01-14 11:45:39.60 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer0.org2.example.com | [2d2 01-14 11:45:39.60 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +peer0.org2.example.com | [2d3 01-14 11:45:39.61 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer1.org2.example.com | [20c 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [23e 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f79bee7]send state message COMPLETED +peer1.org1.example.com | [23f 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f79bee7]Received message COMPLETED from shim +peer1.org1.example.com | [240 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f79bee7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [241 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f79bee7-655a-49c0-b447-7756d2cdef61]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2d4 01-14 11:45:39.61 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +peer1.org2.example.com | [20d 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [300 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421791c50 +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 167 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org1.example.com | [242 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1f79bee7-655a-49c0-b447-7756d2cdef61 +peer0.org2.example.com | [2d5 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +peer1.org2.example.com | [20e 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 168 Returning policy Admins for evaluation +peer1.org1.example.com | [243 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [301 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +peer0.org2.example.com | [2d6 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [20f 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 169 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer1.org1.example.com | [244 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [302 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [303 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [2d7 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [245 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [122f786f-f1e6-47ab-ab83-cea468f5e198] +peer1.org1.example.com | [246 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [247 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0d49845c-57dc-444b-a392-a525c59311a3] +peer1.org1.example.com | [248 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=57eed494-5671-44ab-99e5-040729d57122,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer1.org1.example.com | [249 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org1.example.com | [24a 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [24b 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [210 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [211 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [304 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16a Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16b Returning policy Writers for evaluation +peer1.org1.example.com | [24c 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [57eed494]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [212 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [305 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [306 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [24d 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16c Returning policy Admins for evaluation +peer0.org2.example.com | [2d8 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [307 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42032f000, header channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +peer1.org2.example.com | [213 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [214 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [24e 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [57eed494]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16d Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16e Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 16f In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 170 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 171 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 172 Returning policy Writers for evaluation +peer0.org2.example.com | [2d9 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421564000 +peer0.org2.example.com | [2da 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +peer0.org1.example.com | [308 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [24f 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57eed494]Move state message INIT +peer1.org2.example.com | [215 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [2db 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [309 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [250 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57eed494]Fabric side Handling ChaincodeMessage of type: INIT in state ready +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 173 In commit adding relative sub-policy Org1MSP/Writers to Application +peer1.org2.example.com | [216 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2dc 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [30a 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [30b 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [30c 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [30d 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [30e 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [30f 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [251 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [2dd 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 174 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 175 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 176 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 177 In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org2.example.com | [2de 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [252 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57eed494]sending state message INIT +peer1.org2.example.com | [217 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [310 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 178 Returning policy Readers for evaluation +peer0.org2.example.com | [2df 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [2e0 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421666000, header channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +peer1.org1.example.com | [253 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57eed494]Received message INIT from shim +peer0.org1.example.com | [311 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 179 In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 17a Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 17b Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 17c Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 17d In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org2.example.com | [218 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2e1 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [254 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57eed494]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [255 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [312 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [219 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [2e2 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 17e Returning policy Writers for evaluation +peer1.org1.example.com | [256 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [57eed494]Received INIT, initializing chaincode +peer1.org1.example.com | [257 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57eed494]Init get response status: 200 +peer0.org1.example.com | [313 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [2e3 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 17f In commit adding relative sub-policy Orderer/Writers to Channel +peer1.org2.example.com | [21a 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [258 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57eed494]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [314 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [2e4 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 180 Returning policy Admins for evaluation +peer1.org2.example.com | [21b 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [259 01-14 11:45:33.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57eed494]Move state message COMPLETED +peer0.org2.example.com | [2e5 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 181 In commit adding relative sub-policy Orderer/Admins to Channel +peer1.org2.example.com | [21c 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [315 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [2e6 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 182 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 183 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 184 Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 185 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 186 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 187 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 188 Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 189 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 18a Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 18b In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 18c Returning policy ChannelCreationPolicy for evaluation +peer0.org1.example.com | [316 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [21d 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [25a 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57eed494]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [2e7 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 18d In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer1.org2.example.com | [21e 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [25b 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57eed494]send state message COMPLETED +peer1.org1.example.com | [25c 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57eed494]Received message COMPLETED from shim +peer1.org1.example.com | [25d 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57eed494]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [25e 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57eed494-5671-44ab-99e5-040729d57122]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [25f 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:57eed494-5671-44ab-99e5-040729d57122 +peer1.org1.example.com | [260 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [2e8 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [317 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [21f 01-14 11:45:33.75 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 18e Returning policy Org1MSP/Admins for evaluation +peer1.org1.example.com | [261 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [318 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [2e9 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [220 01-14 11:45:33.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [262 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [0d49845c-57dc-444b-a392-a525c59311a3] +peer1.org1.example.com | [263 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [264 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [20124941-db31-4754-adbe-1c572741b021] +peer1.org1.example.com | [265 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=b57b2d4f-c59c-4e03-9f01-b30c746c0c7a,syscc=true,proposal=0x0,canname=escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 18f In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer1.org1.example.com | [266 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org2.example.com | [2ea 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [2eb 01-14 11:45:39.62 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [319 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org1.example.com | [267 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [221 01-14 11:45:33.76 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [2ec 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [2ed 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [2ee 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [2ef 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [2f0 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [2f1 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [2f2 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [2f3 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [2f4 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 190 Returning policy Org1MSP/Readers for evaluation +peer0.org1.example.com | [31a 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [31b 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [31c 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [31d 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [31e 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [222 01-14 11:45:33.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [223 01-14 11:45:33.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [268 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [31f 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [224 01-14 11:45:33.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] CommitProposals -> DEBU 191 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer1.org1.example.com | [269 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b57b2d4f]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [2f5 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [320 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [225 01-14 11:45:33.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 192 Returning policy Org1MSP/Writers for evaluation +peer1.org1.example.com | [26a 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [2f6 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [226 01-14 11:45:33.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [26b 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b57b2d4f]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [321 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [227 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +peer0.org2.example.com | [2f7 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] CommitProposals -> DEBU 193 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer1.org1.example.com | [26c 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b57b2d4f]Move state message INIT +peer0.org1.example.com | [322 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [323 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [228 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +peer1.org2.example.com | [229 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [22a 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [9a191a32-a79a-4a21-8fc1-1ff38457dd35] +peer1.org2.example.com | [22b 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=47e24c7b-9035-42cd-bf54-8424a3beaaf9,syscc=true,proposal=0x0,canname=cscc:1.0.2 +peer1.org2.example.com | [22c 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +peer1.org2.example.com | [22d 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [22e 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +peer1.org2.example.com | [22f 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [47e24c7b]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [230 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [231 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [47e24c7b]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [232 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47e24c7b]Move state message INIT +peer1.org2.example.com | [233 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [47e24c7b]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [234 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [235 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47e24c7b]sending state message INIT +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 194 Returning policy Org2MSP/Writers for evaluation +peer1.org1.example.com | [26d 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b57b2d4f]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [26e 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [26f 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b57b2d4f]sending state message INIT +peer1.org1.example.com | [270 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b57b2d4f]Received message INIT from shim +peer1.org1.example.com | [271 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b57b2d4f]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [272 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] CommitProposals -> DEBU 195 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer0.org1.example.com | [324 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [236 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e24c7b]Received message INIT from shim +peer1.org2.example.com | [237 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [47e24c7b]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [238 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [239 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [47e24c7b]Received INIT, initializing chaincode +peer1.org2.example.com | [23a 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | [23b 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e24c7b]Init get response status: 200 +peer1.org2.example.com | [23c 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e24c7b]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [23d 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e24c7b]Move state message COMPLETED +peer1.org2.example.com | [23e 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [47e24c7b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [23f 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [47e24c7b]send state message COMPLETED +peer1.org2.example.com | [240 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [47e24c7b]Received message COMPLETED from shim +peer1.org2.example.com | [241 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [47e24c7b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [2f8 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [325 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [273 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b57b2d4f]Received INIT, initializing chaincode +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 196 Returning policy Org2MSP/Admins for evaluation +peer1.org2.example.com | [242 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [47e24c7b-9035-42cd-bf54-8424a3beaaf9]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [2f9 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [326 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] CommitProposals -> DEBU 197 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 198 Returning policy Readers for evaluation +peer1.org1.example.com | [274 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org1.example.com | [275 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b57b2d4f]Init get response status: 200 +peer1.org1.example.com | [276 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b57b2d4f]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [277 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b57b2d4f]Move state message COMPLETED +peer1.org1.example.com | [278 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b57b2d4f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [279 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b57b2d4f]send state message COMPLETED +peer0.org1.example.com | [327 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 199 Returning dummy reject all policy because Readers could not be found in /Application/Readers +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 19a Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 19b Returning dummy reject all policy because Writers could not be found in /Application/Writers +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 19c Returning policy Admins for evaluation +peer1.org2.example.com | [243 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:47e24c7b-9035-42cd-bf54-8424a3beaaf9 +peer0.org2.example.com | [2fa 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [2fb 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [2fc 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [27a 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b57b2d4f]Received message COMPLETED from shim +peer1.org1.example.com | [27b 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b57b2d4f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [2fd 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [244 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 19d Returning dummy reject all policy because Admins could not be found in /Application/Admins +peer1.org1.example.com | [27c 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b57b2d4f-c59c-4e03-9f01-b30c746c0c7a]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [27d 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b57b2d4f-c59c-4e03-9f01-b30c746c0c7a +peer0.org1.example.com | [328 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org2.example.com | [245 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | 2018-01-14 11:45:32.450 UTC [common/configtx] addToMap -> DEBU 19e Adding to config map: [Groups] /Channel +peer0.org2.example.com | [2fe 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [2ff 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [329 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.450 UTC [common/configtx] addToMap -> DEBU 19f Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.450 UTC [common/configtx] addToMap -> DEBU 1a0 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [27e 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [246 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [9a191a32-a79a-4a21-8fc1-1ff38457dd35] +peer0.org2.example.com | [300 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [32a 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [32b 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [32c 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [32d 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [32e 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.450 UTC [common/configtx] addToMap -> DEBU 1a1 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a2 Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [301 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org1.example.com | [27f 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | [32f 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [247 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a3 Adding to config map: [Groups] /Channel +peer0.org2.example.com | [302 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [303 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [304 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [305 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [330 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a4 Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [280 01-14 11:45:33.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [20124941-db31-4754-adbe-1c572741b021] +peer1.org2.example.com | [248 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7ba76790-ad0c-4d1a-a722-3c6b8346be4c] +peer0.org2.example.com | [306 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [331 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a5 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [281 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [249 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=4986e3c5-2666-4c10-a3c4-b634975db0eb,syscc=true,proposal=0x0,canname=lscc:1.0.2 +peer0.org2.example.com | [307 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [332 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a6 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a7 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a8 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:32.452 UTC [common/configtx] addToMap -> DEBU 1a9 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:32.452 UTC [common/configtx] addToMap -> DEBU 1aa Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.452 UTC [policies] GetPolicy -> DEBU 1ab Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | 2018-01-14 11:45:32.452 UTC [cauthdsl] func1 -> DEBU 1ac 0xc420150db8 gate 1515930332452367864 evaluation starts +peer1.org1.example.com | [282 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [84fe55bd-8f0d-4daf-be1e-b5d65d18cab4] +peer0.org1.example.com | [333 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [308 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [309 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [30a 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [30b 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [24a 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [24b 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [334 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [335 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [283 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=58aa2280-7971-438d-bb4e-74bcdbdd8242,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [30c 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.452 UTC [cauthdsl] func2 -> DEBU 1ad 0xc420150db8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [24c 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [24d 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4986e3c5]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [336 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.452 UTC [cauthdsl] func2 -> DEBU 1ae 0xc420150db8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer1.org1.example.com | [284 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [24e 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [30d 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [337 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.452 UTC [msp/identity] newIdentity -> DEBU 1af Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [285 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [24f 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4986e3c5]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [30e 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [338 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [286 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [250 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4986e3c5]Move state message INIT +peer0.org2.example.com | [30f 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [310 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [311 01-14 11:45:39.63 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [312 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [314 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer0.org2.example.com | [315 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +peer0.org1.example.com | [339 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [33a 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [251 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4986e3c5]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [252 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [33b 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [33c 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [33d 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [33e 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [33f 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [340 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [341 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [342 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [343 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [344 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [345 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [263 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [71ef85e5-0a46-41db-bbd6-9665099760be] -peer1.org2.example.com | [30c 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [2a1 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer1.org2.example.com | [253 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4986e3c5]sending state message INIT +peer0.org1.example.com | [346 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [347 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [348 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [349 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [34a 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org1.example.com | [287 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [58aa2280]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [288 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [289 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [58aa2280]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [313 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [34b 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer1.org2.example.com | [254 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4986e3c5]Received message INIT from shim +peer0.org1.example.com | [34c 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [316 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.453 UTC [cauthdsl] func2 -> DEBU 1b0 0xc420150db8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +peer1.org1.example.com | [28a 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [58aa2280]Move state message INIT +peer1.org2.example.com | [255 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4986e3c5]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-14 11:45:32.453 UTC [cauthdsl] func2 -> DEBU 1b1 0xc420150db8 principal evaluation fails +peer0.org1.example.com | [34d 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [34e 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [28b 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [58aa2280]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [256 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-14 11:45:32.453 UTC [cauthdsl] func1 -> DEBU 1b2 0xc420150db8 gate 1515930332452367864 evaluation fails +peer0.org2.example.com | [317 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [257 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4986e3c5]Received INIT, initializing chaincode +peer0.org1.example.com | [34f 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.453 UTC [cauthdsl] func1 -> DEBU 1b3 0xc420150dc8 gate 1515930332453641064 evaluation starts +peer0.org2.example.com | [318 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [28c 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [28d 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [58aa2280]sending state message INIT +peer1.org1.example.com | [28e 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58aa2280]Received message INIT from shim +peer0.org2.example.com | [319 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.453 UTC [cauthdsl] func2 -> DEBU 1b4 0xc420150dc8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [258 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4986e3c5]Init get response status: 200 +peer0.org1.example.com | [350 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [28f 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [58aa2280]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [290 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [31a 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [351 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [259 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4986e3c5]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [31b 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.453 UTC [cauthdsl] func2 -> DEBU 1b5 0xc420150dc8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:32.454 UTC [msp/identity] newIdentity -> DEBU 1b6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [352 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [25a 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4986e3c5]Move state message COMPLETED +peer0.org2.example.com | [31c 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [291 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [58aa2280]Received INIT, initializing chaincode +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [31d 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [292 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58aa2280]Init get response status: 200 +peer1.org1.example.com | [293 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58aa2280]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [353 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [25b 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4986e3c5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [25c 01-14 11:45:33.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4986e3c5]send state message COMPLETED +peer1.org2.example.com | [25d 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4986e3c5]Received message COMPLETED from shim +peer1.org2.example.com | [25e 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4986e3c5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [31e 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [354 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [294 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58aa2280]Move state message COMPLETED +peer1.org2.example.com | [25f 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4986e3c5-2666-4c10-a3c4-b634975db0eb]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [31f 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [355 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [295 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [58aa2280]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [320 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [356 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [260 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4986e3c5-2666-4c10-a3c4-b634975db0eb +peer1.org2.example.com | [261 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | [296 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [58aa2280]send state message COMPLETED +peer0.org2.example.com | [321 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [357 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [262 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [297 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [58aa2280]Received message COMPLETED from shim +peer1.org1.example.com | [298 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [58aa2280]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [299 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [58aa2280-7971-438d-bb4e-74bcdbdd8242]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [358 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [263 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [7ba76790-ad0c-4d1a-a722-3c6b8346be4c] +peer0.org2.example.com | [322 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [359 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [29a 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:58aa2280-7971-438d-bb4e-74bcdbdd8242 +peer0.org2.example.com | [323 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [35a 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer1.org2.example.com | [264 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [324 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.170 UTC [msp] SatisfiesPrincipal -> DEBU 1b0 Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.170 UTC [cauthdsl] func2 -> DEBU 1b1 0xc420026918 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:57.170 UTC [msp/identity] Verify -> DEBU 1b2 Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -orderer.example.com | 00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -peer0.org2.example.com | [264 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f2e90fd0-104f-4c66-b6d1-58e6633b50f3,syscc=true,proposal=0x0,canname=escc:1.0.2 -peer0.org2.example.com | [265 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org2.example.com | [266 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [267 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org2.example.com | [268 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f2e90fd0]Inside sendExecuteMessage. Message INIT -peer1.org1.example.com | [292 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [c1b1efe8]Received INIT, initializing chaincode -orderer.example.com | 2018-01-04 01:50:57.170 UTC [msp/identity] Verify -> DEBU 1b3 Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -orderer.example.com | 00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -orderer.example.com | 00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -orderer.example.com | 00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -orderer.example.com | 00000040 de 20 dd a7 3b f5 |. ..;.| -orderer.example.com | 2018-01-04 01:50:57.170 UTC [cauthdsl] func2 -> DEBU 1b4 0xc420026918 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [269 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [26a 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [f2e90fd0]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [26b 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f2e90fd0]Move state message INIT -peer0.org2.example.com | [26c 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f2e90fd0]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org2.example.com | [26d 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [26e 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f2e90fd0]sending state message INIT -peer0.org2.example.com | [26f 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2e90fd0]Received message INIT from shim -peer0.org2.example.com | [270 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f2e90fd0]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [271 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org2.example.com | [272 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [f2e90fd0]Received INIT, initializing chaincode -peer0.org2.example.com | [273 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -peer1.org1.example.com | [293 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1b1efe8]Init get response status: 200 -orderer.example.com | 2018-01-04 01:50:57.171 UTC [cauthdsl] func1 -> DEBU 1b5 0xc420026918 gate 1515030657169780600 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1b6 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [274 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2e90fd0]Init get response status: 200 -peer0.org2.example.com | [275 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2e90fd0]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [276 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2e90fd0]Move state message COMPLETED -peer0.org2.example.com | [277 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f2e90fd0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [278 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2e90fd0]send state message COMPLETED -peer0.org2.example.com | [279 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f2e90fd0]Received message COMPLETED from shim -peer0.org2.example.com | [27a 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f2e90fd0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [27b 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f2e90fd0-104f-4c66-b6d1-58e6633b50f3]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [27c 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f2e90fd0-104f-4c66-b6d1-58e6633b50f3 -peer0.org2.example.com | [27d 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [27e 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -peer1.org1.example.com | [294 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1b1efe8]Init succeeded. Sending COMPLETED -peer1.org1.example.com | [295 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1b1efe8]Move state message COMPLETED -peer1.org2.example.com | [30d 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [30e 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [30f 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [27f 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [71ef85e5-0a46-41db-bbd6-9665099760be] -peer1.org1.example.com | [296 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c1b1efe8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [297 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c1b1efe8]send state message COMPLETED -peer1.org1.example.com | [298 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c1b1efe8]Received message COMPLETED from shim -peer1.org1.example.com | [299 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c1b1efe8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [29a 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c1b1efe8-416f-478c-b580-c6f0ff0c33c3]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [29b 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c1b1efe8-416f-478c-b580-c6f0ff0c33c3 -peer1.org1.example.com | [29c 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1b7 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1b8 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [29d 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer0.org2.example.com | [280 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [2a2 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer0.org1.example.com | [2a3 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [77489167]Inside sendExecuteMessage. Message INIT -peer0.org1.example.com | [2a4 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1b9 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [29e 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e74cde03-24c3-4469-8763-4ff8371262ec] -peer1.org1.example.com | [29f 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2a0 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [dad99a0b-687e-4946-b881-7b27d6db0c7c] -peer1.org1.example.com | [2a1 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=82f23b06-5b14-4350-8703-9b21fef77113,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer1.org1.example.com | [2a2 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -peer0.org2.example.com | [281 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [852c72e2-af80-4160-83b2-0d5c476e5086] -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1ba Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [282 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=0418129d-0231-4899-9439-d4c60c7cacd3,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org2.example.com | [283 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org2.example.com | [284 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [285 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org2.example.com | [286 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0418129d]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [287 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [288 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0418129d]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [2a3 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1bb Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [310 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [2a4 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1bc Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [289 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0418129d]Move state message INIT -peer0.org1.example.com | [2a5 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [77489167]sendExecuteMsg trigger event INIT -peer1.org2.example.com | [311 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [2a5 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [82f23b06]Inside sendExecuteMessage. Message INIT -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1bd Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2a6 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77489167]Move state message INIT -peer0.org2.example.com | [28a 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0418129d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [312 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [2a6 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [2a7 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [82f23b06]sendExecuteMsg trigger event INIT -peer1.org1.example.com | [2a8 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82f23b06]Move state message INIT -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1be Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1bf Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c0 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c1 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c2 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c3 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c4 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c5 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c6 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c7 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [28b 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c8 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/configtx] processConfig -> DEBU 1c9 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/config] NewStandardValues -> DEBU 1ca Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [2a9 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82f23b06]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [2aa 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [2ab 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82f23b06]sending state message INIT -peer1.org1.example.com | [2ac 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82f23b06]Received message INIT from shim -peer1.org1.example.com | [2ad 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82f23b06]Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [2ae 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2af 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [82f23b06]Received INIT, initializing chaincode -peer1.org1.example.com | [2b0 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [28c 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0418129d]sending state message INIT -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/config] initializeProtosStruct -> DEBU 1cb Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/config] initializeProtosStruct -> DEBU 1cc Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/config] initializeProtosStruct -> DEBU 1cd Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/config] initializeProtosStruct -> DEBU 1ce Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.172 UTC [policies] ProposePolicy -> DEBU 1cf Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:57.172 UTC [policies] ProposePolicy -> DEBU 1d0 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:57.172 UTC [policies] ProposePolicy -> DEBU 1d1 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:57.172 UTC [common/config] NewStandardValues -> DEBU 1d2 Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [2b1 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82f23b06]Init get response status: 200 -peer0.org2.example.com | [28d 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0418129d]Received message INIT from shim -peer0.org1.example.com | [2a7 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77489167]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2a8 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d3 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d4 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d5 Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d6 Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d7 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1d8 Proposed new policy Writers for Orderer -peer1.org1.example.com | [2b2 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82f23b06]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [28e 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0418129d]Handling ChaincodeMessage of type: INIT(state:ready) -orderer.example.com | 2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1d9 Proposed new policy Admins for Orderer -peer1.org1.example.com | [2b3 01-04 01:50:57.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82f23b06]Move state message COMPLETED -peer1.org2.example.com | [313 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [2a9 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77489167]sending state message INIT -peer0.org1.example.com | [2aa 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]Received message INIT from shim -orderer.example.com | 2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1da Proposed new policy BlockValidation for Orderer -peer0.org2.example.com | [28f 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [2ab 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [77489167]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [2ac 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer1.org1.example.com | [2b4 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82f23b06]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1db Proposed new policy Readers for Orderer -peer1.org2.example.com | [314 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [2ad 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [77489167]Received INIT, initializing chaincode -peer0.org2.example.com | [290 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0418129d]Received INIT, initializing chaincode -peer1.org1.example.com | [2b5 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82f23b06]send state message COMPLETED -peer0.org1.example.com | [2ae 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [2b6 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [82f23b06]Received message COMPLETED from shim -peer0.org1.example.com | [2af 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]Init get response status: 200 -peer0.org1.example.com | [2b0 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [2b1 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]Move state message COMPLETED -peer1.org2.example.com | [315 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [291 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0418129d]Init get response status: 200 -peer0.org1.example.com | [2b2 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [77489167]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [2b7 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82f23b06]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.173 UTC [common/config] NewStandardValues -> DEBU 1dc Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [316 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [2b3 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1dd Processing field: MSP -peer1.org1.example.com | [2b8 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [82f23b06-5b14-4350-8703-9b21fef77113]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1de Proposed new policy Writers for OrdererOrg -peer0.org2.example.com | [292 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0418129d]Init succeeded. Sending COMPLETED -peer0.org1.example.com | [2b4 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77489167]Received message COMPLETED from shim -peer1.org2.example.com | [317 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [2b9 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:82f23b06-5b14-4350-8703-9b21fef77113 -peer0.org1.example.com | [2b5 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77489167]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1df Proposed new policy Admins for OrdererOrg -peer1.org1.example.com | [2ba 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [293 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0418129d]Move state message COMPLETED -peer1.org2.example.com | [318 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [319 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [31a 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2b6 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77489167-29ec-4681-8c1a-432ee033de79]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [294 01-04 01:50:58.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0418129d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [31b 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [31c 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [31d 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2b7 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:77489167-29ec-4681-8c1a-432ee033de79 -peer1.org1.example.com | [2bb 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org1.example.com | [2b8 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [31e 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1e0 Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [2b9 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [295 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0418129d]send state message COMPLETED -peer1.org2.example.com | [31f 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [2bc 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [dad99a0b-687e-4946-b881-7b27d6db0c7c] -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1e1 Initializing protos for *struct {} -peer0.org2.example.com | [296 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0418129d]Received message COMPLETED from shim -peer0.org1.example.com | [2ba 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e6a1dab2-0fe6-4096-9ef3-51204ec23906] -peer1.org2.example.com | [320 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [2bd 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1e2 Proposed new policy Writers for Application -peer1.org2.example.com | [321 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [2bb 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [297 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0418129d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2be 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -orderer.example.com | 2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1e3 Proposed new policy Readers for Application -peer1.org2.example.com | [322 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2bf 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1e4 Proposed new policy Admins for Application -peer0.org1.example.com | [2bc 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer1.org2.example.com | [323 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [298 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0418129d-0231-4899-9439-d4c60c7cacd3]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2c0 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [324 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2bd 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [299 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0418129d-0231-4899-9439-d4c60c7cacd3 -peer0.org2.example.com | [29a 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [325 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2c1 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1e5 Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [326 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2c2 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [2be 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [327 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1e6 Processing field: MSP -peer0.org2.example.com | [29b 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -peer1.org2.example.com | [328 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2c3 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [2bf 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [29c 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [852c72e2-af80-4160-83b2-0d5c476e5086] -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1e7 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1e8 Processing field: AnchorPeers -peer1.org2.example.com | [329 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [29d 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2c4 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f5aff63]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1e9 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2c0 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [32a 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [29e 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [76d6385c-7385-4609-b54b-a0947b610dde] -peer1.org1.example.com | [2c5 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f5aff63]Move state message COMPLETED -peer1.org2.example.com | [32b 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1ea Processing field: MSP -peer0.org1.example.com | [2c1 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [29f 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=4ef62d9b-39cb-4610-b344-9702dd17e2bd,syscc=true,proposal=0x0,canname=qscc:1.0.2 -peer1.org1.example.com | [2c6 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f5aff63]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [32c 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1eb Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1ec Proposed new policy Admins for Org1MSP -peer0.org1.example.com | [2c2 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f63cc98]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [2c7 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f5aff63]send state message COMPLETED -peer1.org1.example.com | [2c8 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f5aff63]Received message COMPLETED from shim -peer0.org1.example.com | [2c3 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f63cc98]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1ed Proposed new policy Readers for Org1MSP -peer1.org1.example.com | [2c9 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f5aff63]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2a0 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -peer1.org2.example.com | [32d 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [2c4 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f63cc98]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [2c5 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f63cc98]send state message COMPLETED -peer0.org1.example.com | [2c6 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f63cc98]Received message COMPLETED from shim -peer0.org1.example.com | [2c7 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f63cc98]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2c8 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2c9 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e -peer0.org1.example.com | [2ca 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [2cb 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [32e 01-04 01:51:04.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [2a1 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2a2 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer1.org1.example.com | [2ca 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f5aff632fde11f2d37cf4dfbc16ca554b5e0fd28be660fa40c24d3eb30b11a9]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2cb 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5f5aff632fde11f2d37cf4dfbc16ca554b5e0fd28be660fa40c24d3eb30b11a9 -peer1.org1.example.com | [2cc 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1ee Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [32f 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [2cc 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [2cd 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [2a3 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4ef62d9b]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [2a4 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [2a5 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4ef62d9b]sendExecuteMsg trigger event INIT -peer0.org1.example.com | [2cd 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [2ce 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [330 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1ef Processing field: MSP -peer0.org2.example.com | [2a6 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4ef62d9b]Move state message INIT -peer0.org2.example.com | [2a7 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4ef62d9b]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer0.org1.example.com | [2ce 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [331 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [2cf 01-04 01:50:57.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [2a8 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [332 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1f0 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1f1 Processing field: AnchorPeers -peer0.org1.example.com | [2cf 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4202e2d80 -peer0.org1.example.com | [2d0 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [333 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [2d0 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org1.example.com | [2d1 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421414a80 -peer1.org2.example.com | [334 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [335 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [336 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [337 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [2d1 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [2d2 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | 2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1f2 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.175 UTC [common/config] initializeProtosStruct -> DEBU 1f3 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.175 UTC [policies] ProposePolicy -> DEBU 1f4 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.175 UTC [policies] ProposePolicy -> DEBU 1f5 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.175 UTC [policies] ProposePolicy -> DEBU 1f6 Proposed new policy Writers for Org2MSP -peer1.org2.example.com | [338 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [339 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [2d3 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-04 01:50:57.175 UTC [common/config] validateMSP -> DEBU 1f7 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.175 UTC [msp] NewBccspMsp -> DEBU 1f8 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.175 UTC [msp] Setup -> DEBU 1f9 Setting up MSP instance OrdererMSP -peer1.org2.example.com | [33a 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [33b 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [33c 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [2d4 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [2d2 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [2a9 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4ef62d9b]sending state message INIT -peer1.org2.example.com | [33d 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [2d5 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202caa00, header 0xc4202e2db0 -peer0.org1.example.com | [2d6 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [2d7 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5 -peer0.org1.example.com | [2d8 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5 channel id: -peer0.org1.example.com | [2d9 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5 channel id: version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.175 UTC [msp/identity] newIdentity -> DEBU 1fa Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [33e 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2d3 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [2aa 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ef62d9b]Received message INIT from shim -peer0.org1.example.com | [2da 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5,syscc=true,proposal=0xc4202caa00,canname=lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.454 UTC [msp] SatisfiesPrincipal -> DEBU 1b7 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.454 UTC [cauthdsl] func2 -> DEBU 1b8 0xc420150dc8 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:32.454 UTC [msp/identity] Verify -> DEBU 1b9 Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +orderer.example.com | 00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +orderer.example.com | 2018-01-14 11:45:32.454 UTC [msp/identity] Verify -> DEBU 1ba Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +orderer.example.com | 00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +orderer.example.com | 00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +peer0.org1.example.com | [35b 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [325 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [326 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +orderer.example.com | 00000040 12 a6 8e 7f 16 50 |.....P| +peer1.org1.example.com | [29b 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.455 UTC [cauthdsl] func2 -> DEBU 1bb 0xc420150dc8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [35c 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [327 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [328 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [329 01-14 11:45:39.64 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [32a 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [32b 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [29c 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +peer1.org2.example.com | [265 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [9db6a62e-c532-4958-bdcd-5a21520fca27] +peer1.org2.example.com | [266 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=44a61d8a-21ea-4541-bc27-fb722761917f,syscc=true,proposal=0x0,canname=escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.455 UTC [cauthdsl] func1 -> DEBU 1bc 0xc420150dc8 gate 1515930332453641064 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1bd Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1be Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1bf Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1c0 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1c1 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c2 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [35d 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [35e 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [35f 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [32c 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [32d 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [32e 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [29d 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [84fe55bd-8f0d-4daf-be1e-b5d65d18cab4] +peer1.org1.example.com | [29e 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [267 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org2.example.com | [32f 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c3 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c4 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [360 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [268 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [330 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [331 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [332 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c5 Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [29f 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d3a20b02-f821-40a3-9aee-501098045e64] +peer0.org1.example.com | [361 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [2a0 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=e6a0c41d-4c97-4757-b519-1f663a98609f,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer1.org1.example.com | [2a1 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer1.org1.example.com | [2a2 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [269 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [362 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [363 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [2a3 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer0.org2.example.com | [333 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [26a 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [44a61d8a]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [26b 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c6 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2a4 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e6a0c41d]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [334 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [364 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [365 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [366 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [367 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c7 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c8 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1c9 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [335 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [2a5 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [2a6 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e6a0c41d]sendExecuteMsg trigger event INIT +peer1.org1.example.com | [2a7 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e6a0c41d]Move state message INIT +peer1.org1.example.com | [2a8 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e6a0c41d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [368 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1ca Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [26c 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [44a61d8a]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [336 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [337 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [369 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [36a 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [36b 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [36c 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [36d 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [36f 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [370 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1cb Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1cc Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1cd Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1ce Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [26d 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a61d8a]Move state message INIT +peer0.org1.example.com | [36e 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer1.org1.example.com | [2a9 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [2aa 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e6a0c41d]sending state message INIT +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1cf Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [26e 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [44a61d8a]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [371 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +peer0.org2.example.com | [338 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [2ab 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6a0c41d]Received message INIT from shim +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/configtx] processConfig -> DEBU 1d0 Beginning new config for channel businesschannel +peer1.org2.example.com | [26f 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [372 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [339 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org1.example.com | [2ac 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e6a0c41d]Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/config] NewStandardValues -> DEBU 1d1 Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [270 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a61d8a]sending state message INIT +peer0.org1.example.com | [373 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [33a 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [2ad 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/config] initializeProtosStruct -> DEBU 1d2 Processing field: HashingAlgorithm +peer1.org2.example.com | [271 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a61d8a]Received message INIT from shim +peer1.org2.example.com | [272 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a61d8a]Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [2ae 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e6a0c41d]Received INIT, initializing chaincode +peer1.org1.example.com | [2af 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/config] initializeProtosStruct -> DEBU 1d3 Processing field: BlockDataHashingStructure +peer0.org1.example.com | [374 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [375 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [33b 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [273 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer1.org2.example.com | [274 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [44a61d8a]Received INIT, initializing chaincode +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/config] initializeProtosStruct -> DEBU 1d4 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.457 UTC [common/config] initializeProtosStruct -> DEBU 1d5 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.457 UTC [policies] ProposePolicy -> DEBU 1d6 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1d7 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1d8 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:32.458 UTC [common/config] NewStandardValues -> DEBU 1d9 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1da Processing field: ConsensusType +peer1.org1.example.com | [2b0 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6a0c41d]Init get response status: 200 +peer1.org1.example.com | [2b1 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6a0c41d]Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2b2 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6a0c41d]Move state message COMPLETED +peer1.org1.example.com | [2b3 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e6a0c41d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1db Processing field: BatchSize +peer0.org2.example.com | [33c 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [2b4 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e6a0c41d]send state message COMPLETED +peer1.org2.example.com | [275 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +peer1.org2.example.com | [276 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a61d8a]Init get response status: 200 +orderer.example.com | 2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1dc Processing field: BatchTimeout +peer0.org2.example.com | [33d 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [2b5 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e6a0c41d]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1dd Processing field: KafkaBrokers +peer1.org2.example.com | [277 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a61d8a]Init succeeded. Sending COMPLETED +peer1.org2.example.com | [278 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a61d8a]Move state message COMPLETED +peer1.org2.example.com | [279 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44a61d8a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [27a 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44a61d8a]send state message COMPLETED +peer1.org2.example.com | [27b 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44a61d8a]Received message COMPLETED from shim +peer0.org2.example.com | [33e 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [33f 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [340 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [376 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [377 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [378 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [379 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +orderer.example.com | 2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1de Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1df Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1e0 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1e1 Proposed new policy Readers for Orderer +peer0.org2.example.com | [341 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [37a 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [27c 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [44a61d8a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1e2 Proposed new policy Writers for Orderer +peer0.org2.example.com | [342 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [343 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [37b 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421595dc0), Data:(*common.BlockData)(0xc4219d02e0), Metadata:(*common.BlockMetadata)(0xc4219d0320)}, doMVCCValidation=true +peer1.org2.example.com | [27d 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [44a61d8a-21ea-4541-bc27-fb722761917f]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.459 UTC [common/config] NewStandardValues -> DEBU 1e3 Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [2b6 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e6a0c41d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [344 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [37c 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [27e 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:44a61d8a-21ea-4541-bc27-fb722761917f +peer0.org2.example.com | [345 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [346 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [347 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [348 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [349 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [34a 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [34b 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [34c 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [34d 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [34e 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [34f 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [27f 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [2b7 01-14 11:45:33.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e6a0c41d-4c97-4757-b519-1f663a98609f]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [37d 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +orderer.example.com | 2018-01-14 11:45:32.459 UTC [common/config] initializeProtosStruct -> DEBU 1e4 Processing field: MSP +peer0.org2.example.com | [350 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [351 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [352 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [280 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +peer0.org1.example.com | [37e 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6b, 0x28, 0x9a, 0xc6, 0x29, 0x57, 0x67, 0x99, 0x80, 0xcd, 0x5a, 0xa4, 0xc6, 0x31, 0xbb, 0xad, 0x21, 0x5a, 0x5e, 0x1b, 0xfa, 0x80, 0xe7, 0x68, 0xf1, 0x60, 0x5b, 0xdd, 0x90, 0x2, 0x8c, 0xbd} txOffsets= +orderer.example.com | 2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1e5 Proposed new policy Admins for OrdererOrg +peer1.org1.example.com | [2b8 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e6a0c41d-4c97-4757-b519-1f663a98609f +peer1.org1.example.com | [2b9 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1e6 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1e7 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.459 UTC [common/config] NewStandardValues -> DEBU 1e8 Initializing protos for *struct {} +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11913 +peer1.org2.example.com | [281 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [9db6a62e-c532-4958-bdcd-5a21520fca27] +peer0.org2.example.com | [353 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [2ba 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +orderer.example.com | 2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1e9 Proposed new policy Admins for Application +peer0.org1.example.com | ] +peer1.org2.example.com | [282 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [283 01-14 11:45:33.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [1f0d6029-4096-43fb-a5d7-f78c27206df1] +peer1.org2.example.com | [284 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=0665e9d2-ce2d-48dc-8a2a-092c87d633d6,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [2bb 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [d3a20b02-f821-40a3-9aee-501098045e64] +peer1.org1.example.com | [2bc 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [2bd 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer1.org2.example.com | [285 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [286 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [37f 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index +peer0.org2.example.com | [354 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42019c9c0), Data:(*common.BlockData)(0xc4216369e0), Metadata:(*common.BlockMetadata)(0xc421636a20)}, doMVCCValidation=true +orderer.example.com | 2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1ea Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1eb Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:32.460 UTC [common/config] NewStandardValues -> DEBU 1ec Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [2be 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [2bf 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [380 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [287 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.460 UTC [common/config] initializeProtosStruct -> DEBU 1ed Processing field: MSP +peer0.org2.example.com | [355 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [2c0 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [381 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org2.example.com | [288 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0665e9d2]Inside sendExecuteMessage. Message INIT +peer1.org1.example.com | [2c1 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.460 UTC [common/config] NewStandardValues -> DEBU 1ee Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [289 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.460 UTC [common/config] initializeProtosStruct -> DEBU 1ef Processing field: AnchorPeers +peer1.org2.example.com | [28a 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0665e9d2]sendExecuteMsg trigger event INIT +orderer.example.com | 2018-01-14 11:45:32.460 UTC [common/config] NewStandardValues -> DEBU 1f0 Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [356 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [28b 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0665e9d2]Move state message INIT +peer1.org2.example.com | [28c 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0665e9d2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org1.example.com | [2c2 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [2c3 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f28abc7]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [357 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6b, 0x28, 0x9a, 0xc6, 0x29, 0x57, 0x67, 0x99, 0x80, 0xcd, 0x5a, 0xa4, 0xc6, 0x31, 0xbb, 0xad, 0x21, 0x5a, 0x5e, 0x1b, 0xfa, 0x80, 0xe7, 0x68, 0xf1, 0x60, 0x5b, 0xdd, 0x90, 0x2, 0x8c, 0xbd} txOffsets= +orderer.example.com | 2018-01-14 11:45:32.460 UTC [common/config] initializeProtosStruct -> DEBU 1f1 Processing field: MSP +peer0.org1.example.com | [382 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer1.org2.example.com | [28d 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [28e 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0665e9d2]sending state message INIT +peer1.org1.example.com | [2c4 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f28abc7]Move state message COMPLETED +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11913 +orderer.example.com | 2018-01-14 11:45:32.460 UTC [policies] ProposePolicy -> DEBU 1f2 Proposed new policy Admins for Org1MSP +peer0.org1.example.com | [383 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [28f 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0665e9d2]Received message INIT from shim +peer1.org2.example.com | [290 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0665e9d2]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | ] +peer0.org1.example.com | [384 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | 2018-01-14 11:45:32.460 UTC [policies] ProposePolicy -> DEBU 1f3 Proposed new policy Readers for Org1MSP +peer1.org1.example.com | [2c5 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f28abc7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [2c6 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f28abc7]send state message COMPLETED +peer0.org2.example.com | [358 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index +peer0.org1.example.com | [385 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | 2018-01-14 11:45:32.460 UTC [policies] ProposePolicy -> DEBU 1f4 Proposed new policy Writers for Org1MSP +peer1.org2.example.com | [291 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org2.example.com | [359 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | 2018-01-14 11:45:32.460 UTC [common/config] NewStandardValues -> DEBU 1f5 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [292 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0665e9d2]Received INIT, initializing chaincode +peer1.org1.example.com | [2c7 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f28abc7]Received message COMPLETED from shim +peer1.org1.example.com | [2c8 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f28abc7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [35a 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | 2018-01-14 11:45:32.460 UTC [common/config] initializeProtosStruct -> DEBU 1f6 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.461 UTC [common/config] NewStandardValues -> DEBU 1f7 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.461 UTC [common/config] initializeProtosStruct -> DEBU 1f8 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.461 UTC [common/config] NewStandardValues -> DEBU 1f9 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.461 UTC [common/config] initializeProtosStruct -> DEBU 1fa Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.461 UTC [policies] ProposePolicy -> DEBU 1fb Proposed new policy Writers for Org2MSP +peer0.org2.example.com | [35b 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer1.org2.example.com | [293 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0665e9d2]Init get response status: 200 +peer1.org1.example.com | [2c9 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f28abc7d77f8fdfa86d2ecc4e953ec7d4b7970fe47485bc11193ac3a6df396c]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2ca 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5f28abc7d77f8fdfa86d2ecc4e953ec7d4b7970fe47485bc11193ac3a6df396c +orderer.example.com | 2018-01-14 11:45:32.461 UTC [policies] ProposePolicy -> DEBU 1fc Proposed new policy Admins for Org2MSP +peer0.org2.example.com | [35c 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [35d 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [386 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org1.example.com | [387 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +orderer.example.com | 2018-01-14 11:45:32.461 UTC [policies] ProposePolicy -> DEBU 1fd Proposed new policy Readers for Org2MSP +peer1.org2.example.com | [294 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0665e9d2]Init succeeded. Sending COMPLETED +peer0.org2.example.com | [35e 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [2cb 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.461 UTC [common/config] validateMSP -> DEBU 1fe Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.461 UTC [msp] NewBccspMsp -> DEBU 1ff Creating BCCSP-based MSP instance +peer0.org2.example.com | [35f 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer1.org2.example.com | [295 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0665e9d2]Move state message COMPLETED +peer1.org2.example.com | [296 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0665e9d2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [297 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0665e9d2]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.461 UTC [msp] Setup -> DEBU 200 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:32.462 UTC [msp/identity] newIdentity -> DEBU 201 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [360 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [2cc 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [388 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org1.example.com | [389 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [298 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0665e9d2]Received message COMPLETED from shim +peer0.org2.example.com | [361 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org2.example.com | [362 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [2d4 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [33f 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [2ab 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4ef62d9b]Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [2ac 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -peer0.org1.example.com | [2db 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [2dc 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [2dd 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [2de 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b95f3b5e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [2df 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [2e0 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [340 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [2d5 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [2cd 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [363 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [2ad 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4ef62d9b]Received INIT, initializing chaincode -peer0.org1.example.com | [2e1 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b95f3b5e]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [2e2 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95f3b5e]Move state message TRANSACTION -peer1.org2.example.com | [341 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [342 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [343 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [344 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [345 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [346 01-04 01:51:04.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [2e3 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b95f3b5e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [2d6 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [299 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0665e9d2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [38a 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer0.org2.example.com | [364 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [29a 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0665e9d2-ce2d-48dc-8a2a-092c87d633d6]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [2ce 01-14 11:45:33.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [2cf 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [365 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +peer1.org2.example.com | [29b 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0665e9d2-ce2d-48dc-8a2a-092c87d633d6 +peer0.org1.example.com | [38b 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [2d0 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | [29c 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [366 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [38c 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [2d1 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [367 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [29d 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [2e4 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [347 01-04 01:51:04.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [348 01-04 01:51:04.31 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [368 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [29e 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [1f0d6029-4096-43fb-a5d7-f78c27206df1] +peer1.org2.example.com | [29f 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org1.example.com | [2d7 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42148d860, header 0xc421414ab0 -peer0.org1.example.com | [2e5 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95f3b5e]sending state message TRANSACTION -peer1.org1.example.com | [2d8 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [349 01-04 01:51:04.32 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [2e6 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95f3b5e]Received message TRANSACTION from shim -peer1.org1.example.com | [2d9 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: af6def615abfa32544646d35d469e4f54150a654ab9c8adc629046b23cebc329 -peer1.org1.example.com | [2da 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: af6def615abfa32544646d35d469e4f54150a654ab9c8adc629046b23cebc329 channel id: -peer1.org1.example.com | [2db 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: af6def615abfa32544646d35d469e4f54150a654ab9c8adc629046b23cebc329 channel id: version: 1.0.2 -peer1.org1.example.com | [2dc 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=af6def615abfa32544646d35d469e4f54150a654ab9c8adc629046b23cebc329,syscc=true,proposal=0xc42148d860,canname=lscc:1.0.2 -peer1.org2.example.com | [34a 01-04 01:51:04.32 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [369 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [2d2 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42190e840 +peer1.org1.example.com | [2d3 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +peer0.org2.example.com | [36a 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer1.org1.example.com | [2dd 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [2e7 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b95f3b5e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [2ae 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [34b 01-04 01:51:04.32 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [38d 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2d4 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [2d5 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [2d6 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [2de 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [2af 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ef62d9b]Init get response status: 200 -peer0.org1.example.com | [2e8 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b95f3b5e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [2e9 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95f3b5e]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2ea 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95f3b5e]Move state message COMPLETED -peer0.org1.example.com | [2eb 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b95f3b5e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2b0 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ef62d9b]Init succeeded. Sending COMPLETED -peer0.org2.example.com | [2b1 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ef62d9b]Move state message COMPLETED -peer0.org2.example.com | [2b2 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4ef62d9b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [2b3 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4ef62d9b]send state message COMPLETED -peer0.org2.example.com | [2b4 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4ef62d9b]Received message COMPLETED from shim -peer0.org2.example.com | [2b5 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4ef62d9b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2b6 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4ef62d9b-39cb-4610-b344-9702dd17e2bd]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [2b7 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4ef62d9b-39cb-4610-b344-9702dd17e2bd -peer0.org2.example.com | [2b8 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [2b9 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -peer0.org2.example.com | [2ba 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [76d6385c-7385-4609-b54b-a0947b610dde] -peer0.org2.example.com | [2bb 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [2bc 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -peer1.org2.example.com | [34c 01-04 01:51:04.33 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [2ec 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95f3b5e]send state message COMPLETED orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org2.example.com | [36b 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [2a0 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f425fc67-6c6a-4058-8eca-b1662cb8cfe9] +peer0.org2.example.com | [36c 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421d33b60 orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer1.org2.example.com | [34d 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [2bd 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [2be 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [2bf 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [34e 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [2ed 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95f3b5e]Received message COMPLETED from shim -peer1.org1.example.com | [2df 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [2a1 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=694b8fee-4ef3-4951-81f6-f7c63ee76e27,syscc=true,proposal=0x0,canname=qscc:1.0.2 +peer1.org1.example.com | [2d7 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [2d8 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [2a2 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer0.org2.example.com | [2c0 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [34f 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [2ee 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b95f3b5e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2ef 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2f0 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5 -peer0.org1.example.com | [2f1 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [350 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [2e0 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [af6def61]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [36d 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +peer0.org1.example.com | [38e 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [2d9 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4216e9000, header channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +peer1.org2.example.com | [2a3 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [36e 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [2c1 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [351 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [2e1 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.176 UTC [msp/identity] newIdentity -> DEBU 1fb Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [2f2 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [2c2 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ca6af631]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [38f 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [2da 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [2db 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [36f 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.463 UTC [msp/identity] newIdentity -> DEBU 202 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [390 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [2a4 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +peer1.org2.example.com | [2a5 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [694b8fee]Inside sendExecuteMessage. Message INIT +peer0.org2.example.com | [370 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [352 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [2e2 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [2f3 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [371 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [2c3 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ca6af631]Move state message COMPLETED -peer1.org1.example.com | [2e3 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [af6def61]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [2e4 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af6def61]Move state message TRANSACTION -peer1.org2.example.com | [353 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [2f4 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [2c4 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ca6af631]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2a6 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [2dc 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [391 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org2.example.com | [372 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [2e5 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [af6def61]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [2dd 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [2a7 01-14 11:45:33.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [694b8fee]sendExecuteMsg trigger event INIT +peer0.org2.example.com | [373 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421bdb000, header channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +peer0.org1.example.com | [392 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [2f5 01-04 01:51:03.76 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer0.org2.example.com | [2c5 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ca6af631]send state message COMPLETED -peer0.org2.example.com | [2c6 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ca6af631]Received message COMPLETED from shim -peer1.org2.example.com | [354 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421942680), Data:(*common.BlockData)(0xc4219fe260), Metadata:(*common.BlockMetadata)(0xc4219fe2a0)}, doMVCCValidation=true +peer1.org1.example.com | [2de 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [2a8 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [694b8fee]Move state message INIT +peer0.org2.example.com | [374 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [375 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [2f6 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org1.example.com | [2e6 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [2c7 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ca6af631]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [393 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c261b0 +peer1.org2.example.com | [2a9 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [694b8fee]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [2aa 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [2ab 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [694b8fee]sending state message INIT orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [355 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [2f7 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -peer0.org2.example.com | [2c8 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ca6af6311f967b831cccccecedbd7a0c223671b7dfcb9ffcec6a16aa44f26b4e]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [2e7 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af6def61]sending state message TRANSACTION +peer0.org2.example.com | [376 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [377 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [378 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [379 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [37a 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer1.org2.example.com | [356 01-04 01:51:04.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org1.example.com | [2f8 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [2e8 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af6def61]Received message TRANSACTION from shim -peer0.org2.example.com | [2c9 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ca6af6311f967b831cccccecedbd7a0c223671b7dfcb9ffcec6a16aa44f26b4e orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer1.org1.example.com | [2e9 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [af6def61]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [357 01-04 01:51:04.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x54, 0xbe, 0xd6, 0x3f, 0x54, 0x86, 0x6a, 0x3b, 0xfd, 0x9a, 0xdc, 0xb9, 0xfc, 0x15, 0x9e, 0x26, 0x4, 0x89, 0xff, 0xaa, 0x1a, 0x85, 0x5a, 0x81, 0x49, 0x6b, 0x26, 0x91, 0xff, 0x54, 0x5c, 0xb5} txOffsets= -peer0.org1.example.com | [2f9 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org2.example.com | [2ca 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer0.org1.example.com | [2fa 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org1.example.com | [2ea 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [af6def61]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [2fb 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -peer1.org1.example.com | [2eb 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af6def61]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [2cb 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.176 UTC [msp/identity] newIdentity -> DEBU 1fc Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | ] -peer0.org1.example.com | [2fd 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [2ec 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af6def61]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.463 UTC [msp/identity] newIdentity -> DEBU 203 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [2cc 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [37b 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [2df 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [2e0 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [2e1 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [2ac 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [694b8fee]Received message INIT from shim orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [358 01-04 01:51:04.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index -peer0.org1.example.com | [2fe 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [2ed 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [af6def61]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [37c 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [394 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +peer1.org2.example.com | [2ad 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [694b8fee]Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [37d 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [37e 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [37f 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [359 01-04 01:51:04.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [2cd 01-04 01:50:58.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [2fc 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -peer1.org1.example.com | [2ee 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [af6def61]send state message COMPLETED -peer1.org1.example.com | [2ef 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [af6def61]Received message COMPLETED from shim -peer1.org2.example.com | [35a 01-04 01:51:04.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25667], isChainEmpty=[false], lastBlockNumber=[1] orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org2.example.com | [2ce 01-04 01:51:04.05 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer1.org1.example.com | [2f0 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [af6def61]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2f1 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [af6def615abfa32544646d35d469e4f54150a654ab9c8adc629046b23cebc329]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [2ff 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [300 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420310fc0 -peer0.org1.example.com | [301 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -peer0.org1.example.com | [302 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [35b 01-04 01:51:04.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer0.org1.example.com | [303 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [304 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer0.org1.example.com | [305 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer1.org2.example.com | [35c 01-04 01:51:04.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [2cf 01-04 01:51:04.06 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer0.org2.example.com | [2d0 01-04 01:51:04.06 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -peer1.org1.example.com | [2f2 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:af6def615abfa32544646d35d469e4f54150a654ab9c8adc629046b23cebc329 -peer0.org1.example.com | [306 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [2d1 01-04 01:51:04.06 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org2.example.com | [2d2 01-04 01:51:04.06 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer1.org2.example.com | [35d 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer1.org1.example.com | [2f3 01-04 01:51:03.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [307 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4213ce000, header channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -peer1.org2.example.com | [35e 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org1.example.com | [2f4 01-04 01:51:03.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [2d3 01-04 01:51:04.06 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org2.example.com | [35f 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org2.example.com | [2d4 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer1.org1.example.com | [2f5 01-04 01:51:03.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [360 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [308 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [2d5 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer1.org2.example.com | [361 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -orderer.example.com | 2018-01-04 01:50:57.177 UTC [msp] Validate -> DEBU 1fd MSP OrdererMSP validating identity -peer1.org1.example.com | [2f6 01-04 01:51:03.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [309 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.177 UTC [common/config] Validate -> DEBU 1fe Anchor peers for org Org1MSP are -peer0.org2.example.com | [2d6 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [2d7 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [362 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.177 UTC [common/config] validateMSP -> DEBU 1ff Setting up MSP for org Org1MSP -peer1.org1.example.com | [2f7 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [2d8 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [30a 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-04 01:50:57.177 UTC [msp] NewBccspMsp -> DEBU 200 Creating BCCSP-based MSP instance -peer1.org2.example.com | [363 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer1.org1.example.com | [2f8 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-04 01:50:57.177 UTC [msp] Setup -> DEBU 201 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:57.177 UTC [msp/identity] newIdentity -> DEBU 202 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.464 UTC [msp] Validate -> DEBU 204 MSP OrdererMSP validating identity +peer0.org2.example.com | [380 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [381 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [382 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [383 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [384 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:32.464 UTC [common/config] Validate -> DEBU 205 Anchor peers for org Org1MSP are +peer1.org1.example.com | [2e2 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [2e3 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [2e4 01-14 11:45:39.21 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [2e5 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.465 UTC [common/config] validateMSP -> DEBU 206 Setting up MSP for org Org1MSP +peer0.org2.example.com | [385 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [386 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [387 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [388 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.465 UTC [msp] NewBccspMsp -> DEBU 207 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.465 UTC [msp] Setup -> DEBU 208 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:32.465 UTC [msp/identity] newIdentity -> DEBU 209 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [389 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [38a 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [38b 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [38c 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [38d 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [2e6 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [2ae 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +peer0.org1.example.com | [395 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [38e 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [38f 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [390 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [391 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [392 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [393 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [394 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [395 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [396 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [397 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [398 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [399 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [39a 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [39b 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [39c 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [39d 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [39e 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [39f 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3a0 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [3a1 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [3a2 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | [3a3 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [3a4 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [3a5 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [3a6 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [3a7 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | [2e7 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [3a8 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3a9 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [3aa 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer1.org2.example.com | [364 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [30b 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [30c 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [30d 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer1.org2.example.com | [365 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [2d9 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420010960 -peer0.org2.example.com | [2da 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -peer0.org2.example.com | [2db 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [30e 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org2.example.com | [3ab 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2af 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [694b8fee]Received INIT, initializing chaincode orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer1.org1.example.com | [2e8 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [2e9 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [3ac 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [396 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer1.org2.example.com | [366 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [367 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [368 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [369 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [30f 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [310 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [311 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [312 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [313 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [314 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [36a 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [2f9 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [2dc 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer0.org1.example.com | [315 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [36b 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [2fa 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4214d31d0 -peer1.org1.example.com | [2fb 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -peer0.org1.example.com | [316 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [317 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [36c 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4215f6e10 -peer1.org2.example.com | [36d 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -peer1.org2.example.com | [36e 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [36f 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [370 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer0.org1.example.com | [318 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [319 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [31a 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [31b 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [371 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [3ad 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [2ea 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins orderer.example.com | H7n8z1pj5w== -peer1.org1.example.com | [2fc 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [2fd 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [372 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [31c 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [3ae 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3af 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3b0 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.178 UTC [msp/identity] newIdentity -> DEBU 203 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [2dd 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer0.org2.example.com | [2de 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [2df 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [2e0 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4213fc000, header channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -peer1.org2.example.com | [373 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc420349000, header channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" +orderer.example.com | 2018-01-14 11:45:32.466 UTC [msp/identity] newIdentity -> DEBU 20a Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [2eb 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org2.example.com | [2b0 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org2.example.com | [3b1 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [31d 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [2fe 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer1.org1.example.com | [2ff 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [374 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [2ec 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [397 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer1.org2.example.com | [2b1 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [694b8fee]Init get response status: 200 orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [3b2 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [2ed 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [2ee 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [2ef 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [2f0 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [3b3 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [3b4 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3b5 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3b6 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [31e 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [375 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [2e1 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [300 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [2b2 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [694b8fee]Init succeeded. Sending COMPLETED +peer0.org1.example.com | [398 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [399 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [2f1 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [31f 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [376 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [2e2 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [301 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42142b000, header channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [320 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [377 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [2e3 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [2e4 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [321 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [322 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [323 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [325 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [378 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [3b7 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org2.example.com | [3b8 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2f2 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [2b3 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [694b8fee]Move state message COMPLETED +peer1.org2.example.com | [2b4 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [694b8fee]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [2b5 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [694b8fee]send state message COMPLETED +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org2.example.com | [3b9 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3ba 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3bb 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3bc 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2f3 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org2.example.com | [2b6 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [694b8fee]Received message COMPLETED from shim +peer0.org1.example.com | [39a 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c32000, header channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +peer0.org2.example.com | [3bd 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org2.example.com | [3be 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [39b 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org1.example.com | [2f4 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [3bf 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [2b7 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [694b8fee]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [2f5 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [3c0 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [2b8 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [694b8fee-4ef3-4951-81f6-f7c63ee76e27]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.466 UTC [msp/identity] newIdentity -> DEBU 20b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [3c1 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [2f6 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [2b9 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:694b8fee-4ef3-4951-81f6-f7c63ee76e27 +peer1.org2.example.com | [2ba 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [39c 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [3c2 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [3c3 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [2bb 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +peer1.org2.example.com | [2bc 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f425fc67-6c6a-4058-8eca-b1662cb8cfe9] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [3c4 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [3c5 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [2f7 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [39d 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [2bd 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [3c6 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org1.example.com | [302 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [324 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -peer1.org2.example.com | [379 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [37a 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [37b 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [326 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [2e5 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [2e6 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [2e7 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [2e8 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [37c 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [327 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org2.example.com | [37d 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [37e 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [37f 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [303 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [304 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [305 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [328 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [329 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [32a 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -peer1.org2.example.com | [380 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [32b 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [381 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [2e9 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [3c7 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [3c8 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [3c9 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [2f8 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [39e 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.178 UTC [msp/identity] newIdentity -> DEBU 204 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [32c 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [32d 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [382 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [306 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | [2ea 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [2eb 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [2ec 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [2ed 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [32e 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [32f 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [307 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [2ee 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [383 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [330 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | [308 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [309 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [30a 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [30b 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [30c 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [30d 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [384 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [331 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [2ef 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [30e 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [30f 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [310 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [311 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [385 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [332 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [2f0 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [386 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [333 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | [2f1 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [312 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [387 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [334 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org2.example.com | [2f2 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [335 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org1.example.com | [313 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [388 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [2f4 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer0.org2.example.com | [2f5 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org1.example.com | [336 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org1.example.com | [314 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [2f3 01-04 01:51:04.08 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [337 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [389 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [315 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [338 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org2.example.com | [2f6 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [316 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [38a 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [2f7 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [339 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org2.example.com | [38b 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [33a 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [2f8 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [317 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [33b 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [38c 01-04 01:51:04.36 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [318 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [33c 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org2.example.com | [2f9 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [38d 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [319 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [2fa 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [33d 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [38e 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [31a 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [33e 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.179 UTC [msp] Validate -> DEBU 205 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.179 UTC [common/config] Validate -> DEBU 206 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:57.179 UTC [common/config] validateMSP -> DEBU 207 Setting up MSP for org Org2MSP -peer1.org1.example.com | [31b 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [33f 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [38f 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [2fb 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.179 UTC [msp] NewBccspMsp -> DEBU 208 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.179 UTC [msp] Setup -> DEBU 209 Setting up MSP instance Org2MSP -peer1.org2.example.com | [390 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [31c 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.179 UTC [msp/identity] newIdentity -> DEBU 20a Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [340 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2fc 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [31d 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [2fd 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [341 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [391 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [2be 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +peer0.org2.example.com | [3ca 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [2f9 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [2fa 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.467 UTC [msp] Validate -> DEBU 20c MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.467 UTC [common/config] Validate -> DEBU 20d Anchor peers for org Org2MSP are +peer0.org2.example.com | [3cb 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org1.example.com | [2fb 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org2.example.com | [2bf 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.467 UTC [common/config] validateMSP -> DEBU 20e Setting up MSP for org Org2MSP +peer0.org2.example.com | [3cc 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [39f 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [2fc 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [2fd 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [2fe 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:32.467 UTC [msp] NewBccspMsp -> DEBU 20f Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.468 UTC [msp] Setup -> DEBU 210 Setting up MSP instance Org2MSP +peer0.org2.example.com | [3cd 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3ce 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [3cf 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3d0 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [3d1 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3d2 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [3d3 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3d4 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org2.example.com | [3d5 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [3d6 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [3d7 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [3d8 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [3d9 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [3da 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [3db 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [3dc 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [3dd 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [2c0 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [3a0 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [3de 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [3df 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [3e0 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [3e1 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [3e2 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [3e3 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [3e4 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [2ff 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [300 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [301 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [302 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [3e5 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [2c1 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [3a1 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.468 UTC [msp/identity] newIdentity -> DEBU 211 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [342 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [31e 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [2fe 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [343 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [392 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [344 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2ff 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [393 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [31f 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [345 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [300 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [3e6 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a7e500), Data:(*common.BlockData)(0xc421e7d4a0), Metadata:(*common.BlockMetadata)(0xc421e7d4e0)}, doMVCCValidation=true +peer1.org1.example.com | [303 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [3a2 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [2c2 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [2c3 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [2c4 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d02c0fdb]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [3e7 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [3a3 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [3a4 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [304 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [3e8 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [2c5 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d02c0fdb]Move state message COMPLETED orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [394 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [320 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [346 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [3a5 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [3e9 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb9, 0x70, 0xfc, 0x86, 0xfa, 0x16, 0xa, 0x76, 0xc0, 0x74, 0xfe, 0xf4, 0x31, 0x60, 0x81, 0x1, 0x3f, 0x85, 0x4f, 0x9c, 0xcf, 0xe9, 0xaf, 0x6b, 0xf7, 0x1a, 0xbf, 0x6b, 0x65, 0x32, 0x5c, 0xd7} txOffsets= +peer1.org1.example.com | [305 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [2c6 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d02c0fdb]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer0.org2.example.com | [301 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [395 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [347 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [321 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [3a6 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [2c7 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d02c0fdb]send state message COMPLETED +peer1.org1.example.com | [306 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11973 +peer0.org1.example.com | [3a7 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [3a8 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [3a9 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [307 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org2.example.com | ] +peer1.org2.example.com | [2c8 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d02c0fdb]Received message COMPLETED from shim +peer1.org2.example.com | [2c9 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d02c0fdb]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [3aa 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [308 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [3ea 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx ID: [] to index orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [302 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [396 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [2ca 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d02c0fdb0e4246a32c386c37a50a81f989cee8204d26a34fa31fd61c70252458]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [3ab 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [3ac 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [3eb 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [309 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [30a 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [3ad 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org2.example.com | [3ec 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org2.example.com | [2cb 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d02c0fdb0e4246a32c386c37a50a81f989cee8204d26a34fa31fd61c70252458 orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | [322 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org2.example.com | [303 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [397 01-04 01:51:04.37 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [348 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [30b 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [3ae 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [3ed 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer1.org2.example.com | [2cc 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [2cd 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [3af 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [30c 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [3ee 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | [304 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [323 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [398 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [349 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [34a 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b0 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [3ef 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [2ce 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [30d 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +peer0.org1.example.com | [3b1 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [3f0 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [30e 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [2cf 01-14 11:45:33.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [3b2 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [3f1 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org1.example.com | [30f 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2d0 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer1.org2.example.com | [399 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [39a 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [324 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [325 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [326 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [327 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [328 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [329 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [32a 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [32b 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [32c 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [32d 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [32e 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [32f 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [330 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [305 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [331 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org1.example.com | [332 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [34b 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [39b 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [306 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [3b3 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [3f2 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [310 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [2d1 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer0.org1.example.com | [3b4 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [3f3 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org1.example.com | [311 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2d2 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer0.org1.example.com | [3b5 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [3f4 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [312 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [313 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [3b6 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [3f5 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +peer1.org2.example.com | [2d3 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219d0c00 orderer.example.com | SCjyRdD3aQ== -peer1.org1.example.com | [333 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [334 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [335 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [336 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [337 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [338 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [339 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [33a 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [33b 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [39c 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [39d 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [39e 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [39f 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [3a0 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [3a1 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [3a2 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [3a3 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [3a4 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [3a5 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [3a6 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3b7 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [3f6 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [314 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [3a7 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [3a8 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [3a9 01-04 01:51:04.38 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [3aa 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [33c 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [33d 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [33e 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [307 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [3ab 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3ac 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3ad 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3ae 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.179 UTC [msp/identity] newIdentity -> DEBU 20b Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [2d4 01-14 11:45:39.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +peer0.org1.example.com | [3b8 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [3f7 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [3b9 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [315 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.469 UTC [msp/identity] newIdentity -> DEBU 212 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [2d5 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [3f8 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org1.example.com | [3ba 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [316 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [3f9 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [2d6 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [3bb 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [317 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [2d7 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer0.org2.example.com | [3fa 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [3bc 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [318 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [3bd 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org2.example.com | [3fb 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [2d8 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [2d9 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [319 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3be 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [3fc 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422242000 +peer1.org1.example.com | [31a 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3bf 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [3fd 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [2da 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4216a9000, header channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +peer1.org2.example.com | [2db 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [2dc 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [31b 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [3fe 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [3c0 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | [33f 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [3af 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [34c 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [2dd 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [31c 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [3ff 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org1.example.com | [3c1 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | [340 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [3b0 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [34d 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [308 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [309 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [2de 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [2df 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3c2 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org1.example.com | [31d 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [2e0 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [400 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [3c3 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [31e 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2e1 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [2e2 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [31f 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [320 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [321 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [322 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [323 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [2e3 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [3c4 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org1.example.com | [341 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [30a 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org2.example.com | [30b 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [30c 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [30d 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [30e 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [30f 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [3b1 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [34e 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org1.example.com | [342 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [310 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [3b2 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [34f 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [350 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.180 UTC [msp/identity] newIdentity -> DEBU 20c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.469 UTC [msp/identity] newIdentity -> DEBU 213 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [2e4 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [2e5 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [2e6 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [2e7 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [2e8 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [2e9 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [2ea 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [2eb 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [3c5 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [324 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [2ec 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [3c6 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [3c7 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [3c8 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [325 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [401 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [3c9 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [2ed 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [343 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [326 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [402 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422232320, header 0xc422242030 +peer0.org2.example.com | [403 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org2.example.com | [404 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 64f095a85af23f60074f161832171e9f9469de77805eed03f2c916b5f6a94ce9 +peer0.org2.example.com | [405 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 64f095a85af23f60074f161832171e9f9469de77805eed03f2c916b5f6a94ce9 channel id: +peer0.org2.example.com | [406 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 64f095a85af23f60074f161832171e9f9469de77805eed03f2c916b5f6a94ce9 channel id: version: 1.0.2 +peer0.org1.example.com | [3ca 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [2ee 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [327 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [311 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [3b3 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [351 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [312 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org2.example.com | [313 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [314 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [3b4 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [3b5 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [3b6 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [344 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [315 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [316 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [317 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [352 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org1.example.com | [353 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [354 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3b7 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [318 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [319 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [31a 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [345 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3b8 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [3cb 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [328 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [407 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=64f095a85af23f60074f161832171e9f9469de77805eed03f2c916b5f6a94ce9,syscc=true,proposal=0xc422232320,canname=lscc:1.0.2 +peer1.org2.example.com | [2ef 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [355 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [31b 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [31c 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [31d 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [346 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [356 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [3cc 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [329 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [2f0 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [2f1 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [3cd 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [32a 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org2.example.com | [408 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [2f2 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [2f3 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [2f4 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [3ce 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [3cf 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [32b 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [409 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [2f5 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [3d0 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [32c 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [3b9 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3ba 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3bb 01-04 01:51:04.39 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3bc 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3bd 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org2.example.com | [3be 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [347 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [357 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [358 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [359 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [35a 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [31e 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2f6 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [2f7 01-14 11:45:39.66 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [32d 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [40a 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [348 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3bf 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3c0 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [3c1 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [3c2 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [3c3 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org2.example.com | [3c4 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [31f 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [3d1 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [2f8 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [32e 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [40b 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64f095a8]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [3d2 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [3d3 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [32f 01-14 11:45:39.24 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [330 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [2f9 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org1.example.com | [35b 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [349 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [34a 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [34b 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [40c 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [40d 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [331 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [332 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [333 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [334 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [335 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [336 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [337 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [338 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [339 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [33a 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [33b 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [33c 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [33d 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [2fa 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [3d4 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | [3c5 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [320 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [34c 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [34d 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [34e 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [34f 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [35c 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org2.example.com | [3c6 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [3c7 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [350 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [321 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [3c8 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [35d 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [351 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [352 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [353 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [3c9 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3ca 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3cb 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3cc 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [322 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.180 UTC [msp] Validate -> DEBU 20d MSP Org2MSP validating identity -peer0.org1.example.com | [35e 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [354 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [3cd 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [323 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [324 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [325 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [326 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.180 UTC [msp] Setup -> DEBU 20e Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.180 UTC [msp] Setup -> DEBU 20f MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:57.180 UTC [msp] GetLocalMSP -> DEBU 210 Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:57.180 UTC [msp] GetDefaultSigningIdentity -> DEBU 211 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:57.180 UTC [msp] GetLocalMSP -> DEBU 212 Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:57.180 UTC [msp] GetDefaultSigningIdentity -> DEBU 213 Obtaining default signing identity -peer0.org1.example.com | [35f 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [327 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [355 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [3ce 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp/identity] Sign -> DEBU 214 Sign: plaintext: 0AB7060A1B08011A06088191B6D20522...761B8EE0CEF06E7A016F0EFA6EF4C112 -peer0.org1.example.com | [360 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [361 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [362 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3cf 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [328 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [329 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [356 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp/identity] Sign -> DEBU 215 Sign: digest: 290B60ADF4E8CAEF2E8FD54679723A422F70BECF314A37D77CB303A607ADF783 -peer1.org2.example.com | [3d0 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [3d1 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [3d2 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [3d3 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [32a 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp] GetLocalMSP -> DEBU 216 Returning existing local MSP -peer0.org1.example.com | [363 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [364 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [365 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3d4 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [3d5 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [32b 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [32c 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [366 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [367 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp] GetDefaultSigningIdentity -> DEBU 217 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp] GetLocalMSP -> DEBU 218 Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp] GetDefaultSigningIdentity -> DEBU 219 Obtaining default signing identity -peer0.org2.example.com | [32d 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [357 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [358 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [368 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [369 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [3d6 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [359 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp/identity] Sign -> DEBU 21a Sign: plaintext: 0AB3060A1708041A06088191B6D20522...B3D14B8A87449ADFE31665CDD7613E64 -peer0.org1.example.com | [36a 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [32e 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [32f 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [330 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [331 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp/identity] Sign -> DEBU 21b Sign: digest: E9BB79C8670978A6F99A21CF62D26A9FA2611D8A7324146342B81F86BE8F3948 -orderer.example.com | 2018-01-04 01:50:57.181 UTC [orderer/common/broadcast] Handle -> DEBU 21c [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.181 UTC [policies] GetPolicy -> DEBU 21d Returning policy Writers for evaluation -peer0.org1.example.com | [36b 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [35a 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [332 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [333 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [334 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [335 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [336 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3d7 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.181 UTC [cauthdsl] func1 -> DEBU 21e 0xc420026dd8 gate 1515030657181709900 evaluation starts -orderer.example.com | 2018-01-04 01:50:57.181 UTC [cauthdsl] func2 -> DEBU 21f 0xc420026dd8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:57.181 UTC [cauthdsl] func2 -> DEBU 220 0xc420026dd8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:57.181 UTC [msp/identity] newIdentity -> DEBU 221 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.470 UTC [msp] Validate -> DEBU 214 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] Setup -> DEBU 215 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] Setup -> DEBU 216 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] GetLocalMSP -> DEBU 217 Returning existing local MSP +peer1.org1.example.com | [33e 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [40e 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [64f095a8]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [2fb 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer1.org2.example.com | [2fc 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [3d5 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [33f 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [2fd 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] GetDefaultSigningIdentity -> DEBU 218 Obtaining default signing identity +peer0.org2.example.com | [40f 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64f095a8]Move state message TRANSACTION +peer0.org2.example.com | [410 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64f095a8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [411 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [412 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64f095a8]sending state message TRANSACTION +peer0.org2.example.com | [413 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64f095a8]Received message TRANSACTION from shim +peer0.org2.example.com | [414 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64f095a8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [3d6 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] GetLocalMSP -> DEBU 219 Returning existing local MSP +peer1.org2.example.com | [2fe 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [3d7 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2ff 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [340 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [341 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [3d8 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [415 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [64f095a8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] GetDefaultSigningIdentity -> DEBU 21a Obtaining default signing identity +peer0.org1.example.com | [3d9 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [342 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [300 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [416 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64f095a8]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp/identity] Sign -> DEBU 21b Sign: plaintext: 0AB7060A1B08011A0608DC85EDD20522...2D5E850992EA8478C14E4C1DBF4422FF +peer1.org1.example.com | [343 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [301 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [302 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [303 01-14 11:45:39.67 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [304 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [305 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [306 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [307 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [3da 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [344 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [308 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer1.org2.example.com | [309 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [30a 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [30b 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [30c 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [30d 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [30e 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [3db 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [417 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64f095a8]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp/identity] Sign -> DEBU 21c Sign: digest: A357BF7A425EAC18D6CB0A7795D310494EAC3E338A27839ECD590E52FE3C7A63 +peer1.org2.example.com | [30f 01-14 11:45:39.68 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [345 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [3dc 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [310 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [346 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [418 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [64f095a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [3dd 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [347 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [348 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [349 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [34a 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [34b 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421503500), Data:(*common.BlockData)(0xc4215339a0), Metadata:(*common.BlockMetadata)(0xc4215339e0)}, doMVCCValidation=true +peer1.org1.example.com | [34c 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [311 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [312 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [313 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [314 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [315 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [34d 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [3de 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3df 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3e0 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [3e1 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [316 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [34e 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6b, 0x28, 0x9a, 0xc6, 0x29, 0x57, 0x67, 0x99, 0x80, 0xcd, 0x5a, 0xa4, 0xc6, 0x31, 0xbb, 0xad, 0x21, 0x5a, 0x5e, 0x1b, 0xfa, 0x80, 0xe7, 0x68, 0xf1, 0x60, 0x5b, 0xdd, 0x90, 0x2, 0x8c, 0xbd} txOffsets= +peer1.org2.example.com | [317 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [318 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [319 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3e2 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3e3 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11913 +peer1.org1.example.com | ] +peer1.org1.example.com | [34f 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] GetLocalMSP -> DEBU 21d Returning existing local MSP +peer0.org1.example.com | [3e4 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [350 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [351 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org1.example.com | [352 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer1.org2.example.com | [31a 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] GetDefaultSigningIdentity -> DEBU 21e Obtaining default signing identity +peer0.org1.example.com | [3e5 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [419 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [64f095a8]send state message COMPLETED +peer1.org1.example.com | [353 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [354 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [355 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [31b 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [31c 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [31d 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [31e 01-14 11:45:39.69 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [31f 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [320 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [321 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [322 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [323 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org2.example.com | [324 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [325 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [326 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [327 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [328 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [329 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer1.org2.example.com | [32a 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [32b 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [32c 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [32d 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [32e 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3e6 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [32f 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [356 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [41a 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [64f095a8]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.471 UTC [msp] GetLocalMSP -> DEBU 21f Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.472 UTC [msp] GetDefaultSigningIdentity -> DEBU 220 Obtaining default signing identity +peer0.org1.example.com | [3e7 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [330 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [357 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [41b 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64f095a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [41c 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [64f095a85af23f60074f161832171e9f9469de77805eed03f2c916b5f6a94ce9]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [41d 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:64f095a85af23f60074f161832171e9f9469de77805eed03f2c916b5f6a94ce9 +peer1.org2.example.com | [331 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [358 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer1.org1.example.com | [359 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [3e8 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [41e 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [41f 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [420 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [421 01-14 11:45:40.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [422 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [423 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b26000 +peer1.org2.example.com | [332 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [333 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [334 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [335 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [336 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [35a 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer1.org2.example.com | [337 01-14 11:45:39.70 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [338 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [339 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [33a 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [3e9 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [3ea 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [3eb 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3ec 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3ed 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [3ee 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [3ef 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3f0 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [35b 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [33b 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [35c 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [3f1 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [3f2 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.472 UTC [msp/identity] Sign -> DEBU 221 Sign: plaintext: 0AB3060A1708041A0608DC85EDD20522...C1A8B008C889A2F19C71C8DA46B37A93 +orderer.example.com | 2018-01-14 11:45:32.472 UTC [msp/identity] Sign -> DEBU 222 Sign: digest: 71D968A3EC699F0903EAAE321C1DFA88111FCB02B93451EF2AFB35341CA2EA3A +orderer.example.com | 2018-01-14 11:45:32.472 UTC [orderer/common/broadcast] Handle -> DEBU 223 [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.473 UTC [policies] GetPolicy -> DEBU 224 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.473 UTC [cauthdsl] func1 -> DEBU 225 0xc420151178 gate 1515930332473192864 evaluation starts +orderer.example.com | 2018-01-14 11:45:32.473 UTC [cauthdsl] func2 -> DEBU 226 0xc420151178 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [33c 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [35d 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [35e 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [35f 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [360 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [3f3 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [33d 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [361 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [3f4 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [424 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [425 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [426 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [427 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [428 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [429 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421531400, header 0xc421b26030 +peer1.org2.example.com | [33e 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [33f 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [340 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [362 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [363 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b51650 +peer1.org1.example.com | [364 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +peer1.org1.example.com | [365 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [366 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [3f5 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [341 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:32.473 UTC [cauthdsl] func2 -> DEBU 227 0xc420151178 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org2.example.com | [42a 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [367 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer0.org1.example.com | [3f6 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [342 01-14 11:45:39.71 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [343 01-14 11:45:39.72 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [344 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [345 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [3f7 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org1.example.com | [368 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 2018-01-14 11:45:32.474 UTC [msp/identity] newIdentity -> DEBU 228 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [42b 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +peer1.org2.example.com | [346 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [347 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [369 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [36c 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [36d 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [36e 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [35b 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [35c 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [36f 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [337 01-04 01:51:04.09 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3d8 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [3d9 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [3da 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [42c 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] +peer0.org1.example.com | [3f8 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [348 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [36a 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c1a000, header channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +peer1.org1.example.com | [36b 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [3f9 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [42d 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [349 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [36c 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [3fa 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [42e 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [70ffeb3a-30a7-49a4-a228-8a27c83aa18a] +peer1.org1.example.com | [36d 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org2.example.com | [34a 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [34b 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [34c 01-14 11:45:39.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421515fc0), Data:(*common.BlockData)(0xc4214b1e40), Metadata:(*common.BlockMetadata)(0xc4214b1e80)}, doMVCCValidation=true +peer1.org2.example.com | [34d 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [36e 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [36f 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [34e 01-14 11:45:39.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [34f 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6b, 0x28, 0x9a, 0xc6, 0x29, 0x57, 0x67, 0x99, 0x80, 0xcd, 0x5a, 0xa4, 0xc6, 0x31, 0xbb, 0xad, 0x21, 0x5a, 0x5e, 0x1b, 0xfa, 0x80, 0xe7, 0x68, 0xf1, 0x60, 0x5b, 0xdd, 0x90, 0x2, 0x8c, 0xbd} txOffsets= +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [3fb 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [3fc 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [370 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3fd 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11913 +peer1.org1.example.com | [371 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | ] +peer0.org2.example.com | [42f 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee channel id: businesschannel +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +peer0.org1.example.com | [3fe 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [372 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [350 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index +peer0.org2.example.com | [430 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [3ff 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org1.example.com | [373 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [351 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [431 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee,syscc=true,proposal=0xc421531400,canname=lscc:1.0.2 +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [400 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [432 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [352 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org1.example.com | [374 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer0.org1.example.com | [401 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [433 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [353 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +peer0.org1.example.com | [402 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [375 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +peer1.org1.example.com | [376 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [377 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [378 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [379 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [37a 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [37b 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [403 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [434 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [37c 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [435 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [73c65c24]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer0.org2.example.com | [436 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [37d 01-14 11:45:39.31 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [404 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [437 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [354 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +peer1.org1.example.com | [37e 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [438 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [73c65c24]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [405 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [355 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +peer1.org1.example.com | [37f 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [439 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Move state message TRANSACTION +peer0.org1.example.com | [406 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +peer1.org1.example.com | [380 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [356 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [43a 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [43b 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [407 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [381 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [357 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [43c 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]sending state message TRANSACTION +peer0.org1.example.com | [408 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [382 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:32.474 UTC [msp] SatisfiesPrincipal -> DEBU 229 Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org2.example.com | [43d 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]Received message TRANSACTION from shim +peer1.org2.example.com | [358 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [409 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [383 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [43e 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73c65c24]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.474 UTC [msp] Validate -> DEBU 22a MSP OrdererMSP validating identity +peer1.org2.example.com | [359 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org1.example.com | [40a 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [43f 01-14 11:46:00.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [73c65c24]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.474 UTC [cauthdsl] func2 -> DEBU 22b 0xc420151178 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:32.474 UTC [msp/identity] Verify -> DEBU 22c Verify: digest = 00000000 71 d9 68 a3 ec 69 9f 09 03 ea ae 32 1c 1d fa 88 |q.h..i.....2....| +peer0.org2.example.com | [440 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [73c65c24]Sending GET_STATE +orderer.example.com | 00000010 11 1f cb 02 b9 34 51 ef 2a fb 35 34 1c a2 ea 3a |.....4Q.*.54...:| +peer1.org2.example.com | [35a 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [441 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Received message GET_STATE from shim +peer0.org1.example.com | [40b 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [384 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [442 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [35b 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +peer0.org1.example.com | [40c 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [385 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org2.example.com | [35c 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.474 UTC [msp/identity] Verify -> DEBU 22d Verify: sig = 00000000 30 45 02 21 00 95 b5 76 17 9a 3d 5d c0 1c 6b 7f |0E.!...v..=]..k.| +peer0.org2.example.com | [443 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [73c65c24]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [386 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [40d 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219dcb00), Data:(*common.BlockData)(0xc42186a880), Metadata:(*common.BlockMetadata)(0xc42186a8c0)}, doMVCCValidation=true +peer0.org2.example.com | [444 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [387 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [35d 01-14 11:45:39.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [445 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [73c65c24] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [40e 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | 00000010 f9 6b 96 b2 f7 1e 6e da f2 3c 79 a3 ea b3 28 d7 |.k....n.. DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [388 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [40f 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [35e 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [447 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [73c65c24]No state associated with key: exp02. Sending RESPONSE with an empty payload +peer1.org2.example.com | [35f 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [410 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb9, 0x70, 0xfc, 0x86, 0xfa, 0x16, 0xa, 0x76, 0xc0, 0x74, 0xfe, 0xf4, 0x31, 0x60, 0x81, 0x1, 0x3f, 0x85, 0x4f, 0x9c, 0xcf, 0xe9, 0xaf, 0x6b, 0xf7, 0x1a, 0xbf, 0x6b, 0x65, 0x32, 0x5c, 0xd7} txOffsets= +orderer.example.com | 00000020 62 0f ab a3 00 02 20 15 7f 33 a1 7d 9b 11 1a 2f |b..... ..3.}.../| +peer1.org1.example.com | [389 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [448 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [73c65c24]handleGetState serial send RESPONSE +orderer.example.com | 00000030 13 7c 53 22 1a f5 12 66 ef f2 2f f4 e0 ae db a0 |.|S"...f../.....| +peer1.org2.example.com | [360 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11973 +peer1.org1.example.com | [38a 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [449 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]Received message RESPONSE from shim +orderer.example.com | 00000040 fc b0 31 5a dc 1d b7 |..1Z...| +peer1.org1.example.com | [38b 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | ] +peer1.org2.example.com | [361 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [44a 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73c65c24]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | 2018-01-14 11:45:32.475 UTC [cauthdsl] func2 -> DEBU 22e 0xc420151178 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [38c 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [411 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx ID: [] to index +peer1.org2.example.com | [362 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | 2018-01-14 11:45:32.475 UTC [cauthdsl] func1 -> DEBU 22f 0xc420151178 gate 1515930332473192864 evaluation succeeds +peer1.org1.example.com | [38d 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [412 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [363 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [38e 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [413 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | [44b 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [73c65c24]before send +peer1.org1.example.com | [38f 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [390 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [364 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c3f4a0 +peer0.org1.example.com | [414 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +orderer.example.com | 2018-01-14 11:45:32.475 UTC [orderer/common/sigfilter] Apply -> DEBU 230 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380c20 1 [0xc420150650]}) Writers]} +peer1.org1.example.com | [391 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [415 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [44c 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [73c65c24]after send +peer1.org2.example.com | [365 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +orderer.example.com | 2018-01-14 11:45:32.475 UTC [msp] GetLocalMSP -> DEBU 231 Returning existing local MSP +peer1.org1.example.com | [392 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [416 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [366 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +orderer.example.com | 2018-01-14 11:45:32.475 UTC [msp] GetDefaultSigningIdentity -> DEBU 232 Obtaining default signing identity +peer1.org1.example.com | [393 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [417 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [44d 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [73c65c24]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [367 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.475 UTC [msp] GetLocalMSP -> DEBU 233 Returning existing local MSP +peer1.org1.example.com | [394 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [418 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer0.org2.example.com | [44e 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [73c65c24]GetState received payload RESPONSE +orderer.example.com | 2018-01-14 11:45:32.475 UTC [msp] GetDefaultSigningIdentity -> DEBU 234 Obtaining default signing identity +peer0.org1.example.com | [419 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [368 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +peer1.org1.example.com | [395 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [44f 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [73c65c24]Inside putstate +orderer.example.com | 2018-01-14 11:45:32.476 UTC [msp/identity] Sign -> DEBU 235 Sign: plaintext: 0AB7060A1B08011A0608DC85EDD20522...41646D696E7310021A0641646D696E73 +peer0.org1.example.com | [41a 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org2.example.com | [369 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [396 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [41b 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.476 UTC [msp/identity] Sign -> DEBU 236 Sign: digest: 1851F67AFE49F54696152F7AF7DF1F4FA7AE4933EB845698A883F535860A18CB +peer1.org1.example.com | [397 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [41c 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +orderer.example.com | 2018-01-14 11:45:32.476 UTC [common/config] NewStandardValues -> DEBU 237 Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [450 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [73c65c24]Sending PUT_STATE +peer1.org2.example.com | [36a 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [41d 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [398 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.476 UTC [common/config] initializeProtosStruct -> DEBU 238 Processing field: HashingAlgorithm +peer0.org2.example.com | [451 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Received message PUT_STATE from shim +peer1.org2.example.com | [36b 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421cec000, header channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +peer0.org1.example.com | [41e 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [399 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.476 UTC [common/config] initializeProtosStruct -> DEBU 239 Processing field: BlockDataHashingStructure +peer0.org2.example.com | [452 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [41f 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [36c 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [39a 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.476 UTC [common/config] initializeProtosStruct -> DEBU 23a Processing field: OrdererAddresses +peer0.org1.example.com | [420 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.476 UTC [common/config] initializeProtosStruct -> DEBU 23b Processing field: Consortium +peer0.org1.example.com | [421 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [453 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [39b 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [36d 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +peer0.org1.example.com | [422 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [39c 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [423 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f5e4b0 +peer0.org1.example.com | [424 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [425 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [426 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org2.example.com | [36e 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.476 UTC [common/configtx] addToMap -> DEBU 23c Adding to config map: [Groups] /Channel +peer0.org1.example.com | [427 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [454 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [73c65c24]state is ready +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 23d Adding to config map: [Groups] /Channel/Orderer +peer1.org1.example.com | [39d 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [428 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [36f 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [39e 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [429 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422135810, header 0xc421f5e4e0 +peer0.org1.example.com | [42a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [370 01-14 11:45:39.92 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [39f 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 23e Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [455 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [73c65c24]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [42b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +peer1.org1.example.com | [3a0 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [42c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] +peer1.org2.example.com | [371 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [456 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [73c65c24]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [42d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 23f Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [457 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Move state message RESPONSE +peer1.org2.example.com | [372 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [3a1 01-14 11:45:39.32 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [42e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [03bbbed3-1493-4684-aac4-9bf6055bbb87] +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 240 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [3a2 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [373 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [458 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 241 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [42f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d channel id: businesschannel +peer1.org1.example.com | [3a3 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [374 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [459 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 242 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [430 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d channel id: businesschannel version: 1.0.2 +peer1.org1.example.com | [3a4 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [375 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [45a 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]sending state message RESPONSE +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 243 Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [3a5 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [431 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d,syscc=true,proposal=0xc422135810,canname=lscc:1.0.2 +peer0.org2.example.com | [45b 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]Received message RESPONSE from shim +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 244 Adding to config map: [Values] /Channel/Orderer/BatchSize +peer1.org1.example.com | [3a6 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [376 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [432 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 245 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [3a7 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [45c 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73c65c24]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [433 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [3a8 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 246 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [45d 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [73c65c24]before send +peer1.org2.example.com | [377 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [3a9 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [434 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [3aa 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [45e 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [73c65c24]after send +peer1.org2.example.com | [378 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.478 UTC [common/configtx] addToMap -> DEBU 247 Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [3ab 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [379 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [435 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [45f 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [73c65c24]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [3ac 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.482 UTC [common/configtx] addToMap -> DEBU 248 Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [37a 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [3ad 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [436 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.483 UTC [common/configtx] addToMap -> DEBU 249 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [460 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [73c65c24]Received RESPONSE. Successfully updated state +peer1.org2.example.com | [37b 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [3ae 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [437 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.483 UTC [common/configtx] addToMap -> DEBU 24a Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [3af 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [37c 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [3b0 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [438 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [461 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24b Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [3b1 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [439 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24c Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [3b2 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [37d 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [462 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]Move state message COMPLETED +peer0.org1.example.com | [43a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [3b3 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [37e 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +peer1.org1.example.com | [3b4 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +peer1.org1.example.com | [3b5 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [43b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [37f 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [463 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73c65c24]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24e Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [3b6 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [43c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message TRANSACTION +peer1.org2.example.com | [380 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [464 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]send state message COMPLETED +peer1.org1.example.com | [3b7 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [381 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [43d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 250 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [3b8 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [465 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Received message COMPLETED from shim +peer0.org1.example.com | [43e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [382 01-14 11:45:39.93 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [3b9 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 251 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [43f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [df774408]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [383 01-14 11:45:39.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [466 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [440 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [df774408]Sending GET_STATE +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 252 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [3ba 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [384 01-14 11:45:39.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [467 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 253 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [3bb 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [441 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message GET_STATE from shim +peer1.org2.example.com | [385 01-14 11:45:39.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [468 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 254 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [442 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [3bc 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 255 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [386 01-14 11:45:39.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org2.example.com | [469 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [3bd 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [443 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [df774408]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [387 01-14 11:45:39.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [46a 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee,syscc=false,proposal=0xc421531400,canname=exp02:1.0 +peer1.org1.example.com | [3be 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 256 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer1.org2.example.com | [388 01-14 11:45:39.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [46b 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system +peer0.org2.example.com | [46c 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +peer0.org2.example.com | [46d 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [3bf 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [444 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 257 Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org2.example.com | [46e 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] +peer1.org2.example.com | [389 01-14 11:45:39.94 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [445 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [3c0 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 258 Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [46f 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org2.example.com) +peer1.org2.example.com | [38a 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [3c1 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [38b 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 259 Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [446 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [470 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer1.org2.example.com | [38c 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org1.example.com | [3c2 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +peer0.org1.example.com | [447 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]No state associated with key: exp02. Sending RESPONSE with an empty payload +peer1.org2.example.com | [38d 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 25a Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [471 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org2.example.com | [38e 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [448 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [df774408]handleGetState serial send RESPONSE +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 25b Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer1.org1.example.com | [3c3 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [38f 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [449 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Received message RESPONSE from shim +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 25c Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [390 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [3c4 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [44a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org2.example.com | [391 01-14 11:45:39.95 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [3c5 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 25d Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [392 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer0.org1.example.com | [44b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [df774408]before send +peer1.org2.example.com | [393 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/configtx] processConfig -> DEBU 25e Beginning new config for channel businesschannel +peer0.org1.example.com | [44c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [df774408]after send +peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org1.example.com | [3c6 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [394 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [44d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [df774408]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [472 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-exp02-1.0) lock +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/config] NewStandardValues -> DEBU 25f Initializing protos for *config.ChannelProtos +peer1.org1.example.com | [3c7 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [395 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org2.example.com | [473 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-exp02-1.0) lock +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/config] initializeProtosStruct -> DEBU 260 Processing field: HashingAlgorithm +peer0.org1.example.com | [44e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [df774408]GetState received payload RESPONSE +peer1.org2.example.com | [396 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [3c8 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [474 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-exp02-1.0 +peer1.org2.example.com | [397 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [44f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [df774408]Inside putstate +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/config] initializeProtosStruct -> DEBU 261 Processing field: BlockDataHashingStructure +peer1.org1.example.com | [3c9 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [475 01-14 11:46:00.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-exp02-1.0(No such container: dev-peer0.org2.example.com-exp02-1.0) +peer1.org2.example.com | [398 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [3ca 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [450 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [df774408]Sending PUT_STATE +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/config] initializeProtosStruct -> DEBU 262 Processing field: OrdererAddresses +peer1.org2.example.com | [399 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [476 01-14 11:46:00.79 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) +peer0.org1.example.com | [451 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message PUT_STATE from shim +peer1.org2.example.com | [39a 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.485 UTC [common/config] initializeProtosStruct -> DEBU 263 Processing field: Consortium +peer1.org2.example.com | [39b 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +peer1.org1.example.com | [3cb 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [452 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [477 01-14 11:46:00.79 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) +peer1.org2.example.com | [39c 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 264 Proposed new policy Writers for Channel +peer1.org1.example.com | [3cc 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [453 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [478 01-14 11:46:00.79 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-exp02-1.0 +peer1.org2.example.com | [39d 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [3cd 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 265 Proposed new policy Admins for Channel +peer1.org2.example.com | [39e 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [454 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]state is ready +peer0.org2.example.com | [479 01-14 11:46:00.79 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 266 Proposed new policy Readers for Channel +peer1.org2.example.com | [39f 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [3ce 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3a0 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [455 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 267 Initializing protos for *config.OrdererProtos +peer0.org2.example.com | [47a 01-14 11:46:00.79 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 +peer1.org2.example.com | [3a1 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [3cf 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [456 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [df774408]enterBusyState trigger event RESPONSE +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 268 Processing field: ConsensusType +peer0.org2.example.com | [47b 01-14 11:46:00.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer1.org1.example.com | [3d0 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org2.example.com | [3a2 01-14 11:45:39.96 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [47c 01-14 11:46:00.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 269 Processing field: BatchSize +peer0.org1.example.com | [457 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message RESPONSE +peer1.org1.example.com | [3d1 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org2.example.com | [3a3 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [3a4 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [3a5 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | ADD binpackage.tar /usr/local/bin +peer0.org1.example.com | [458 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [459 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [3a6 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [3d2 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 26a Processing field: BatchTimeout +peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer0.org1.example.com | [45a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message RESPONSE +peer1.org2.example.com | [3a7 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3d3 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 26b Processing field: KafkaBrokers +peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org1.example.com | [45b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Received message RESPONSE from shim +peer1.org2.example.com | [3a8 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3d4 01-14 11:45:39.36 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 26c Processing field: ChannelRestrictions +peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org2.example.com | [3a9 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [45c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [3d5 01-14 11:45:39.37 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 26d Proposed new policy BlockValidation for Orderer +peer0.org2.example.com | org.hyperledger.fabric.version="1.0.2" \ +peer1.org2.example.com | [3aa 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [45d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [df774408]before send +peer0.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer1.org1.example.com | [3d6 01-14 11:45:39.37 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [3ab 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [45e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [df774408]after send +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 26e Proposed new policy Readers for Orderer +peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 +peer1.org2.example.com | [3ac 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [45f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [df774408]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 26f Proposed new policy Writers for Orderer +peer1.org1.example.com | [3d7 01-14 11:45:39.37 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [47d 01-14 11:46:00.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 270 Proposed new policy Admins for Orderer +peer1.org2.example.com | [3ad 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3d8 01-14 11:45:39.37 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [47e 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org1.example.com | [460 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [df774408]Received RESPONSE. Successfully updated state +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 271 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [3ae 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [3d9 01-14 11:45:39.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [47f 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer0.org1.example.com | [461 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 272 Processing field: MSP +peer0.org2.example.com | [480 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [3af 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [3da 01-14 11:45:39.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [481 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [462 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Move state message COMPLETED +peer1.org1.example.com | [3db 01-14 11:45:39.38 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 273 Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [3b0 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [482 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [463 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 274 Proposed new policy Admins for OrdererOrg +peer1.org1.example.com | [3dc 01-14 11:45:39.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [483 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4222432f0 +peer1.org2.example.com | [3b1 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 275 Proposed new policy Readers for OrdererOrg +peer0.org2.example.com | [484 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +peer1.org1.example.com | [3dd 01-14 11:45:39.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a0cc00), Data:(*common.BlockData)(0xc421c10080), Metadata:(*common.BlockMetadata)(0xc421c100c0)}, doMVCCValidation=true +peer0.org1.example.com | [464 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]send state message COMPLETED +peer1.org2.example.com | [3b2 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [485 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 276 Initializing protos for *struct {} +peer1.org1.example.com | [3de 01-14 11:45:39.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [3b3 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [486 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [465 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 277 Proposed new policy ChannelCreationPolicy for Application +peer1.org1.example.com | [3df 01-14 11:45:39.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer0.org1.example.com | [466 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [3b4 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [487 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [467 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 278 Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [3e0 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb9, 0x70, 0xfc, 0x86, 0xfa, 0x16, 0xa, 0x76, 0xc0, 0x74, 0xfe, 0xf4, 0x31, 0x60, 0x81, 0x1, 0x3f, 0x85, 0x4f, 0x9c, 0xcf, 0xe9, 0xaf, 0x6b, 0xf7, 0x1a, 0xbf, 0x6b, 0x65, 0x32, 0x5c, 0xd7} txOffsets= +peer0.org2.example.com | [488 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [3b5 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 279 Processing field: MSP +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11973 +peer0.org1.example.com | [468 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +peer0.org2.example.com | [489 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [3b6 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +peer1.org1.example.com | ] +peer0.org2.example.com | [48a 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a94a80, header channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 27a Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [469 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [3b7 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [48b 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 27b Processing field: AnchorPeers +peer0.org1.example.com | [46a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d,syscc=false,proposal=0xc422135810,canname=exp02:1.0 +peer1.org2.example.com | [3b8 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [3e1 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx ID: [] to index +peer0.org2.example.com | [48c 01-14 11:46:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [46b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system +peer0.org2.example.com | [48d 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [3b9 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 27c Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [3e2 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [48e 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [46c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +peer1.org2.example.com | [3ba 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [3e3 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | [48f 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] +orderer.example.com | 2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 27d Processing field: MSP +peer0.org2.example.com | [490 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [46d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org2.example.com | [3bb 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 27e Proposed new policy Readers for Org1MSP +peer0.org2.example.com | [491 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 27f Proposed new policy Writers for Org1MSP +peer1.org2.example.com | [3bc 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [46e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org2.example.com | [492 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cce2aeee-52cb-4264-b879-9b60966126fe] +peer1.org1.example.com | [3e4 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +peer1.org2.example.com | [3bd 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [46f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) +orderer.example.com | 2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 280 Proposed new policy Admins for Org1MSP +peer0.org2.example.com | [493 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=e40bd7e0-6c22-4f66-813a-6ba580b84a0e,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [3e5 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [470 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer1.org2.example.com | [3be 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [494 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d chaindID businesschannel +peer1.org1.example.com | [3e6 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | 2018-01-14 11:45:32.487 UTC [common/config] NewStandardValues -> DEBU 281 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [471 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer1.org1.example.com | [3e7 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [3e8 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org2.example.com | [3bf 01-14 11:45:39.97 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [3c0 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +orderer.example.com | 2018-01-14 11:45:32.487 UTC [common/config] initializeProtosStruct -> DEBU 282 Processing field: MSP +peer1.org1.example.com | [3e9 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [3c1 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [495 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.487 UTC [common/config] NewStandardValues -> DEBU 283 Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [3ea 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer0.org2.example.com | [496 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [3c2 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [3c3 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:32.487 UTC [common/config] initializeProtosStruct -> DEBU 284 Processing field: AnchorPeers +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer1.org1.example.com | [3eb 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [497 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [3c4 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | [3ec 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +orderer.example.com | 2018-01-14 11:45:32.487 UTC [common/config] NewStandardValues -> DEBU 285 Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [498 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e40bd7e0]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [3c5 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3ed 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org2.example.com | [499 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | 2018-01-14 11:45:32.487 UTC [common/config] initializeProtosStruct -> DEBU 286 Processing field: MSP +peer0.org2.example.com | [49a 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e40bd7e0]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [472 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock +peer0.org2.example.com | [49b 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40bd7e0]Move state message TRANSACTION +peer1.org2.example.com | [3c6 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 287 Proposed new policy Writers for Org2MSP +peer1.org1.example.com | [3ee 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [473 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock +peer0.org2.example.com | [49c 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e40bd7e0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [3c7 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [3ef 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 288 Proposed new policy Admins for Org2MSP +peer0.org2.example.com | [49d 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [474 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 +peer0.org1.example.com | [475 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-exp02-1.0(No such container: dev-peer0.org1.example.com-exp02-1.0) +peer0.org1.example.com | [476 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +peer1.org1.example.com | [3f0 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [49e 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40bd7e0]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 289 Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [477 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +peer1.org2.example.com | [3c8 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [3f1 01-14 11:45:39.40 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [49f 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40bd7e0]Received message TRANSACTION from shim +peer0.org1.example.com | [478 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 +peer1.org2.example.com | [3c9 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3f2 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.488 UTC [common/config] validateMSP -> DEBU 28a Setting up MSP for org OrdererOrg +peer0.org2.example.com | [4a0 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e40bd7e0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [479 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +peer1.org2.example.com | [3ca 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [4a1 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e40bd7e0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.488 UTC [msp] NewBccspMsp -> DEBU 28b Creating BCCSP-based MSP instance +peer0.org1.example.com | [47a 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +peer0.org2.example.com | [4a2 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [3cb 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [3f3 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b45b30 +orderer.example.com | 2018-01-14 11:45:32.488 UTC [msp] Setup -> DEBU 28c Setting up MSP instance OrdererMSP +peer0.org2.example.com | [4a3 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [47b 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer1.org2.example.com | [3cc 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.488 UTC [msp/identity] newIdentity -> DEBU 28d Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [3f4 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [47c 01-14 11:45:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org2.example.com | [4a4 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | [3cd 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer0.org2.example.com | [4a5 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [3f5 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [3f6 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org2.example.com | [4a6 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | ADD binpackage.tar /usr/local/bin +peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org1.example.com | [3f7 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [4a7 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer1.org2.example.com | [3ce 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [3f8 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [3f9 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b5d450, header 0xc421b45b60 +peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org1.example.com | org.hyperledger.fabric.version="1.0.2" \ +peer0.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer1.org1.example.com | [3fa 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 +peer0.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [3cf 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [4a8 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [47d 01-14 11:45:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +peer0.org2.example.com | [4a9 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [35eac4c5-afea-4012-8082-747da56b51a0] +peer1.org1.example.com | [3fb 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ce0f0d4ce290fb9ac5ee14c1e4c1187a52093960d7463c20d7a63ac6363d315e +peer1.org2.example.com | [3d0 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [4aa 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [47e 01-14 11:45:59.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +peer1.org1.example.com | [3fc 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ce0f0d4ce290fb9ac5ee14c1e4c1187a52093960d7463c20d7a63ac6363d315e channel id: +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer1.org2.example.com | [3d1 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [4ab 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [35eac4c5-afea-4012-8082-747da56b51a0] +peer0.org1.example.com | [47f 01-14 11:45:59.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer1.org1.example.com | [3fd 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ce0f0d4ce290fb9ac5ee14c1e4c1187a52093960d7463c20d7a63ac6363d315e channel id: version: 1.0.2 +peer0.org2.example.com | [4ac 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org2.example.com | [4ad 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer0.org2.example.com | [4ae 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [4af 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40bd7e0]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [4b0 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40bd7e0]Move state message COMPLETED +peer0.org2.example.com | [4b1 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e40bd7e0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer0.org1.example.com | [480 01-14 11:45:59.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +peer1.org1.example.com | [3fe 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=ce0f0d4ce290fb9ac5ee14c1e4c1187a52093960d7463c20d7a63ac6363d315e,syscc=true,proposal=0xc421b5d450,canname=lscc:1.0.2 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.489 UTC [msp/identity] newIdentity -> DEBU 28e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [3d2 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [4b2 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e40bd7e0]send state message COMPLETED +peer1.org1.example.com | [3ff 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [4b3 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e40bd7e0]Received message COMPLETED from shim +peer1.org1.example.com | [400 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [481 01-14 11:46:00.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +peer1.org2.example.com | [3d3 01-14 11:45:39.98 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [4b4 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e40bd7e0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [482 01-14 11:46:00.56 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 +peer1.org1.example.com | [401 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [3d4 01-14 11:45:39.99 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [4b5 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e40bd7e0-6c22-4f66-813a-6ba580b84a0e]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [483 01-14 11:46:00.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) +peer0.org1.example.com | [484 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer1.org2.example.com | [3d5 01-14 11:45:39.99 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [3d6 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [3d7 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [4b6 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e40bd7e0-6c22-4f66-813a-6ba580b84a0e +peer0.org2.example.com | [4b7 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [402 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ce0f0d4c]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [3d8 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [3d9 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org2.example.com | [4b8 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [cce2aeee-52cb-4264-b879-9b60966126fe] +peer1.org1.example.com | [403 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [485 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [4b9 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [4ba 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [486 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [404 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.490 UTC [msp/identity] newIdentity -> DEBU 28f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [3da 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [4bb 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422358340), Data:(*common.BlockData)(0xc42186ac60), Metadata:(*common.BlockMetadata)(0xc42186aca0)}, doMVCCValidation=true +peer0.org2.example.com | [4bc 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [405 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ce0f0d4c]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [3db 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [487 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [4bd 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [406 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce0f0d4c]Move state message TRANSACTION +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [4be 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] marked as valid by state validator +peer0.org1.example.com | [488 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org2.example.com | [3dc 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [407 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ce0f0d4c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [4bf 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xba, 0x24, 0x96, 0x98, 0xea, 0x83, 0xc, 0x88, 0x92, 0x2d, 0x8d, 0xe0, 0x99, 0x42, 0x2d, 0x3a, 0xe0, 0x84, 0xec, 0x46, 0x3c, 0xa6, 0xc, 0x6, 0xc2, 0x1e, 0xe1, 0x1a, 0x22, 0xb8, 0xa2, 0x6b} txOffsets= +peer0.org2.example.com | txId=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d locPointer=offset=70, bytesLength=3394 +peer0.org2.example.com | ] +peer0.org2.example.com | [4c0 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to index +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer1.org2.example.com | [3dd 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [408 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [409 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce0f0d4c]sending state message TRANSACTION +peer1.org1.example.com | [40a 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce0f0d4c]Received message TRANSACTION from shim +peer0.org2.example.com | [4c1 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx number:[0] ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to blockNumTranNum index +peer0.org1.example.com | [489 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org2.example.com | [3de 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a5d800), Data:(*common.BlockData)(0xc421c43800), Metadata:(*common.BlockMetadata)(0xc421c43840)}, doMVCCValidation=true +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org1.example.com | [40b 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ce0f0d4c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [4c2 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44676], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org2.example.com | [4c3 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer0.org2.example.com | [4c4 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org1.example.com | [40c 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ce0f0d4c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [48a 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [3df 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [4c5 01-14 11:46:17.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.491 UTC [msp] Validate -> DEBU 290 MSP OrdererMSP validating identity +peer0.org1.example.com | [48b 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer1.org2.example.com | [3e0 01-14 11:45:40.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +peer1.org2.example.com | [3e1 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb9, 0x70, 0xfc, 0x86, 0xfa, 0x16, 0xa, 0x76, 0xc0, 0x74, 0xfe, 0xf4, 0x31, 0x60, 0x81, 0x1, 0x3f, 0x85, 0x4f, 0x9c, 0xcf, 0xe9, 0xaf, 0x6b, 0xf7, 0x1a, 0xbf, 0x6b, 0x65, 0x32, 0x5c, 0xd7} txOffsets= +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11973 +peer1.org2.example.com | ] +peer0.org2.example.com | [4c6 01-14 11:46:17.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org1.example.com | [40d 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce0f0d4c]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.491 UTC [common/config] Validate -> DEBU 291 Anchor peers for org Org1MSP are +peer1.org2.example.com | [3e2 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx ID: [] to index +peer0.org2.example.com | [4c7 01-14 11:46:17.65 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 +peer0.org1.example.com | [48c 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +orderer.example.com | 2018-01-14 11:45:32.491 UTC [common/config] validateMSP -> DEBU 292 Setting up MSP for org Org1MSP +peer1.org2.example.com | [3e3 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [40e 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce0f0d4c]Move state message COMPLETED +peer0.org2.example.com | [4c8 01-14 11:46:17.78 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 +peer0.org2.example.com | [4c9 01-14 11:46:18.30 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-exp02-1.0 +peer0.org1.example.com | [48d 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [3e4 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org1.example.com | [40f 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ce0f0d4c]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.491 UTC [msp] NewBccspMsp -> DEBU 293 Creating BCCSP-based MSP instance +peer0.org1.example.com | [48e 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [48f 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message READY +peer0.org1.example.com | [490 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [491 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [df774408]Entered state ready +peer0.org1.example.com | [492 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +peer1.org2.example.com | [3e5 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +orderer.example.com | 2018-01-14 11:45:32.491 UTC [msp] Setup -> DEBU 294 Setting up MSP instance Org1MSP +peer0.org2.example.com | [4ca 01-14 11:46:18.30 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-exp02-1.0) +peer1.org1.example.com | [410 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ce0f0d4c]send state message COMPLETED +peer0.org1.example.com | [493 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message READY +peer1.org2.example.com | [3e6 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | 2018-01-14 11:45:32.491 UTC [msp/identity] newIdentity -> DEBU 295 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [4cb 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [4cc 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer0.org2.example.com | [4cd 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [4ce 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [4cf 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer0.org2.example.com | [4d0 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer0.org2.example.com | [4d1 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org2.example.com | [3e7 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [494 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [411 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ce0f0d4c]Received message COMPLETED from shim +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [3e8 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [495 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org2.example.com | [4d2 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | [4d3 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [412 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ce0f0d4c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [3e9 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer0.org1.example.com | [496 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [497 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org1.example.com | [498 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]Inside sendExecuteMessage. Message INIT +peer0.org1.example.com | [499 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [49a 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [49b 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]sendExecuteMsg trigger event INIT +peer0.org1.example.com | [49c 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message INIT +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer0.org2.example.com | [4d4 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [3ea 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [413 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ce0f0d4ce290fb9ac5ee14c1e4c1187a52093960d7463c20d7a63ac6363d315e]HandleMessage- COMPLETED. Notify +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +peer0.org2.example.com | [4d5 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [4d6 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Move state message READY +peer0.org2.example.com | [4d7 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [49d 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer0.org1.example.com | [49e 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [49f 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message INIT +peer1.org2.example.com | [3eb 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org1.example.com | [414 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ce0f0d4ce290fb9ac5ee14c1e4c1187a52093960d7463c20d7a63ac6363d315e +peer1.org1.example.com | [415 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [416 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [417 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [4a0 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message PUT_STATE from shim +peer0.org1.example.com | [4a1 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [4a2 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4a3 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]state is ready +peer1.org2.example.com | [3ec 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [418 01-14 11:45:39.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org1.example.com | [419 01-14 11:45:41.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �w0��o7��h���k��ldi� @�kNzK~�t message sent from /_��=�?P�`@[1e��W YW�/|�|p�{ +peer0.org1.example.com | [4a4 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [3ed 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +peer1.org1.example.com | [41a 01-14 11:45:41.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer �w0��o7��h���k��ldi� @�kNzK~�t message sent from C9|k�e{���r�%}�B��L ����qZ+�� +peer1.org1.example.com | [41b 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [3ee 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [4a5 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [df774408]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [4a6 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message RESPONSE +peer1.org1.example.com | [41c 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [41d 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [4d8 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [73c65c24]Entered state ready +peer0.org1.example.com | [4a7 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org2.example.com | [3ef 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [41e 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421750c60 +peer0.org2.example.com | [4d9 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +peer0.org1.example.com | [4a8 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.492 UTC [msp/identity] newIdentity -> DEBU 296 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [4a9 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message RESPONSE +peer0.org1.example.com | [4aa 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message PUT_STATE from shim +peer1.org2.example.com | [3f0 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.494 UTC [msp/identity] newIdentity -> DEBU 297 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org1.example.com | [41f 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +peer1.org2.example.com | [3f1 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [4ab 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [4da 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]sending state message READY +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [420 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [4ac 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4db 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [3f2 01-14 11:45:40.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [421 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [4ad 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]state is ready +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer1.org2.example.com | [3f3 01-14 11:45:40.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [422 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org2.example.com | [4dc 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org1.example.com | [4ae 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [423 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [3f4 01-14 11:45:40.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421744ff0 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org2.example.com | [4dd 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [424 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [4af 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [df774408]enterBusyState trigger event RESPONSE +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer1.org1.example.com | [425 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ebf500, header channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +peer1.org2.example.com | [3f5 01-14 11:45:40.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [4de 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer1.org1.example.com | [426 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [4df 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [73c65c24]Inside sendExecuteMessage. Message INIT +peer1.org2.example.com | [3f6 01-14 11:45:40.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [427 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [4b0 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message RESPONSE +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org1.example.com | [428 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [429 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [3f7 01-14 11:45:40.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org1.example.com | [4b1 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [42a 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] +peer0.org2.example.com | [4e0 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [3f8 01-14 11:45:40.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 2018-01-14 11:45:32.495 UTC [msp] Validate -> DEBU 298 MSP Org1MSP validating identity +peer0.org1.example.com | [4b2 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [4e1 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [42b 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | 2018-01-14 11:45:32.495 UTC [common/config] Validate -> DEBU 299 Anchor peers for org Org2MSP are +peer0.org2.example.com | [4e2 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [73c65c24]sendExecuteMsg trigger event INIT +peer1.org2.example.com | [3f9 01-14 11:45:40.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [4b3 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message RESPONSE +peer1.org1.example.com | [42c 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.495 UTC [common/config] validateMSP -> DEBU 29a Setting up MSP for org Org2MSP +peer0.org2.example.com | [4e3 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Move state message INIT +peer1.org2.example.com | [3fa 01-14 11:45:40.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42155e4b0, header 0xc421745020 +peer1.org2.example.com | [3fb 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | 2018-01-14 11:45:32.495 UTC [msp] NewBccspMsp -> DEBU 29b Creating BCCSP-based MSP instance +peer0.org1.example.com | [4b4 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message COMPLETED from shim +peer1.org1.example.com | [42d 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [c1254327-50ef-46e8-b3c8-d7ea8fc90468] +peer1.org2.example.com | [3fc 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 8e87f1045860637013c5fc1b902ae456d8fdf3edb24042982855edc0fb1507dd +peer1.org2.example.com | [3fd 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 8e87f1045860637013c5fc1b902ae456d8fdf3edb24042982855edc0fb1507dd channel id: +orderer.example.com | 2018-01-14 11:45:32.495 UTC [msp] Setup -> DEBU 29c Setting up MSP instance Org2MSP +peer0.org1.example.com | [4b5 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [42e 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=13b70d8f-1448-411f-a27b-ac73978ba28f,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [4e4 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: INIT in state ready +peer1.org2.example.com | [3fe 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 8e87f1045860637013c5fc1b902ae456d8fdf3edb24042982855edc0fb1507dd channel id: version: 1.0.2 +orderer.example.com | 2018-01-14 11:45:32.495 UTC [msp/identity] newIdentity -> DEBU 29d Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [42f 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d chaindID businesschannel +peer0.org2.example.com | [4e5 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4b6 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [3ff 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=8e87f1045860637013c5fc1b902ae456d8fdf3edb24042982855edc0fb1507dd,syscc=true,proposal=0xc42155e4b0,canname=lscc:1.0.2 +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [430 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [400 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [4b7 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +peer0.org2.example.com | [4e6 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]sending state message INIT +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [431 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [401 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [4b8 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [4e7 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Received message PUT_STATE from shim +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +peer1.org2.example.com | [402 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [4b9 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [432 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | [403 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8e87f104]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [4ba 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [433 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13b70d8f]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [4e8 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org2.example.com | [404 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [434 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [4bb 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [03bbbed3-1493-4684-aac4-9bf6055bbb87] +peer0.org1.example.com | [4bc 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [4bd 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d channel id: businesschannel chaincode id: name:"lscc" +peer1.org2.example.com | [405 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [435 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [13b70d8f]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [4e9 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +peer0.org1.example.com | [4be 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org2.example.com | [406 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8e87f104]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | [436 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13b70d8f]Move state message TRANSACTION +peer1.org2.example.com | [407 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e87f104]Move state message TRANSACTION +peer0.org2.example.com | [4ea 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [73c65c24]state is ready +peer0.org2.example.com | [4eb 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [73c65c24]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [4bf 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d channel id: businesschannel version: 1.0.2 +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer1.org2.example.com | [408 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8e87f104]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [4ec 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [73c65c24]enterBusyState trigger event RESPONSE +peer1.org1.example.com | [437 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13b70d8f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer1.org2.example.com | [409 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [4c0 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d,syscc=true,proposal=0xc422135810,canname=escc:1.0.2 +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer1.org2.example.com | [40a 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e87f104]sending state message TRANSACTION +orderer.example.com | SCjyRdD3aQ== +peer0.org2.example.com | [4ed 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Move state message RESPONSE +peer1.org2.example.com | [40b 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e87f104]Received message TRANSACTION from shim +peer1.org1.example.com | [438 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [4ee 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org2.example.com | [40c 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e87f104]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [4c1 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.495 UTC [msp/identity] newIdentity -> DEBU 29e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [4ef 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [439 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13b70d8f]sending state message TRANSACTION +peer1.org2.example.com | [40d 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8e87f104]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [4c2 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [4f0 01-14 11:46:18.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]sending state message RESPONSE +peer1.org2.example.com | [40e 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e87f104]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [4c3 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [43a 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13b70d8f]Received message TRANSACTION from shim +peer1.org2.example.com | [40f 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e87f104]Move state message COMPLETED +peer0.org2.example.com | [4f1 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Received message PUT_STATE from shim +peer0.org1.example.com | [4c4 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [410 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8e87f104]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [4c5 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [43b 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13b70d8f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [4f2 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org2.example.com | [411 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8e87f104]send state message COMPLETED +peer0.org1.example.com | [4c6 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [43c 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [13b70d8f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [412 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8e87f104]Received message COMPLETED from shim +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [4f3 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [413 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8e87f104]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [414 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8e87f1045860637013c5fc1b902ae456d8fdf3edb24042982855edc0fb1507dd]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [415 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8e87f1045860637013c5fc1b902ae456d8fdf3edb24042982855edc0fb1507dd +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [4f4 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [73c65c24]state is ready +peer1.org2.example.com | [416 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [417 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [43d 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [4f5 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [73c65c24]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org1.example.com | [4c7 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [418 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [4f6 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [73c65c24]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [4c8 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message TRANSACTION +peer1.org1.example.com | [43e 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer1.org2.example.com | [419 01-14 11:45:40.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [4c9 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [43f 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org2.example.com | [4f7 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Move state message RESPONSE +peer0.org1.example.com | [4ca 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer1.org2.example.com | [41a 01-14 11:45:41.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\324q\233o<\375\230\200\232\213]7.\260\342s\252\364\007\264\342\021\273\311\232\025\313\024\337\263\257" channel_MAC:"-Go\033\310\231\234\261\352\333H\374L%\320\370\036Z\352\036\023$B\355\311U\212\214\006\317\006\374" > , Envelope: 105 bytes, Signature: 71 bytes is found invalid: PKIID wasn't found +peer1.org1.example.com | [440 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [4cb 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message TRANSACTION +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org2.example.com | [4f8 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org2.example.com | [41b 01-14 11:45:41.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\324q\233o<\375\230\200\232\213]7.\260\342s\252\364\007\264\342\021\273\311\232\025\313\024\337\263\257" channel_MAC:"-Go\033\310\231\234\261\352\333H\374L%\320\370\036Z\352\036\023$B\355\311U\212\214\006\317\006\374" > , Envelope: 105 bytes, Signature: 71 bytes isn't valid +peer1.org1.example.com | [441 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [4cc 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Received message TRANSACTION from shim +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org2.example.com | [4f9 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [41c 01-14 11:45:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer )�q�o<�����]7.��s�����ɚ�߳� message sent from /_��=�?P�`@[1e��W YW�/|�|p�{ +peer1.org1.example.com | [442 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [4cd 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [41d 01-14 11:45:41.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer )�q�o<�����]7.��s�����ɚ�߳� message sent from C9|k�e{���r�%}�B��L ����qZ+�� +peer0.org2.example.com | [4fa 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]sending state message RESPONSE +orderer.example.com | 2018-01-14 11:45:32.496 UTC [msp/identity] newIdentity -> DEBU 29f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [443 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [4ce 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [df774408]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [41e 01-14 11:45:43.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +peer1.org1.example.com | [444 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [15446b19-63cc-428d-90a8-933aca9334c8] +peer0.org2.example.com | [4fb 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Received message COMPLETED from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [445 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [41f 01-14 11:45:43.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes isn't valid +peer0.org2.example.com | [4fc 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [446 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [15446b19-63cc-428d-90a8-933aca9334c8] +peer1.org2.example.com | [420 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [4cf 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [4fd 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee]HandleMessage- COMPLETED. Notify +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org1.example.com | [447 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org2.example.com | [421 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [4fe 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +peer0.org1.example.com | [4d0 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [4ff 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [422 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [448 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org1.example.com | [4d1 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [500 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer1.org1.example.com | [449 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [423 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421e87ec0 +peer0.org1.example.com | [4d2 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Move state message COMPLETED +peer0.org2.example.com | [501 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | [4d3 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [44a 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13b70d8f]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [424 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +peer0.org2.example.com | [502 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [70ffeb3a-30a7-49a4-a228-8a27c83aa18a] +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org1.example.com | [4d4 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]send state message COMPLETED +peer0.org2.example.com | [503 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer1.org2.example.com | [425 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [44b 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13b70d8f]Move state message COMPLETED +peer0.org2.example.com | [504 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org1.example.com | [4d5 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message COMPLETED from shim +peer1.org2.example.com | [426 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [4d6 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [505 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org2.example.com | [427 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [44c 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13b70d8f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.496 UTC [msp] Validate -> DEBU 2a0 MSP Org2MSP validating identity +peer0.org2.example.com | [506 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [4d7 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [4d8 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +orderer.example.com | 2018-01-14 11:45:32.497 UTC [msp] Setup -> DEBU 2a1 Setting up the MSP manager (3 msps) +peer1.org1.example.com | [44d 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13b70d8f]send state message COMPLETED +peer1.org2.example.com | [428 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [507 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee,syscc=true,proposal=0xc421531400,canname=escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.497 UTC [msp] Setup -> DEBU 2a2 MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [4d9 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [44e 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13b70d8f]Received message COMPLETED from shim +peer0.org2.example.com | [508 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2a3 Returning policy Readers for evaluation +peer1.org1.example.com | [44f 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13b70d8f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [450 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13b70d8f-1448-411f-a27b-ac73978ba28f]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [451 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:13b70d8f-1448-411f-a27b-ac73978ba28f +peer0.org1.example.com | [4da 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [509 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2a4 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org2.example.com | [429 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [452 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [50a 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2a5 Returning policy Writers for evaluation +peer1.org1.example.com | [453 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [c1254327-50ef-46e8-b3c8-d7ea8fc90468] +peer1.org2.example.com | [42a 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421f6c000, header channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +peer0.org1.example.com | [4db 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [50b 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [73c65c24]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2a6 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer1.org1.example.com | [454 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [42b 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [50c 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [4dc 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [03bbbed3-1493-4684-aac4-9bf6055bbb87] +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2a7 Returning policy Admins for evaluation +peer0.org2.example.com | [50d 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [42c 01-14 11:46:02.66 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2a8 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer1.org1.example.com | [455 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [50e 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [73c65c24]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2a9 Returning policy Writers for evaluation +peer1.org2.example.com | [42d 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [4dd 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [50f 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2aa Returning policy Readers for evaluation +peer1.org2.example.com | [42e 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [456 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421fb2480), Data:(*common.BlockData)(0xc421767ba0), Metadata:(*common.BlockMetadata)(0xc421767be0)}, doMVCCValidation=true +peer0.org1.example.com | [4de 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org2.example.com | [510 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2ab Returning policy Writers for evaluation +peer1.org2.example.com | [42f 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] +peer1.org1.example.com | [457 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2ac Returning policy Admins for evaluation +peer0.org1.example.com | [4df 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer1.org2.example.com | [430 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [511 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2ad Returning policy Writers for evaluation +peer1.org1.example.com | [458 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [431 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [512 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2ae In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org1.example.com | [4e0 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org1.example.com | [459 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] marked as valid by state validator +peer0.org2.example.com | [513 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [432 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [fda26537-fbdd-4f5f-bc80-c8c7b860482d] +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2af Returning policy Admins for evaluation +peer0.org2.example.com | [514 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [45a 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xba, 0x24, 0x96, 0x98, 0xea, 0x83, 0xc, 0x88, 0x92, 0x2d, 0x8d, 0xe0, 0x99, 0x42, 0x2d, 0x3a, 0xe0, 0x84, 0xec, 0x46, 0x3c, 0xa6, 0xc, 0x6, 0xc2, 0x1e, 0xe1, 0x1a, 0x22, 0xb8, 0xa2, 0x6b} txOffsets= +peer0.org1.example.com | [4e1 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [433 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=8a076b7a-784a-4407-93e3-c556487a32fc,syscc=true,proposal=0x0,canname=vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b0 In commit adding relative sub-policy Org2MSP/Admins to Application +peer0.org1.example.com | [4e2 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [515 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | txId=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d locPointer=offset=70, bytesLength=3394 +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b1 Returning policy Readers for evaluation +peer1.org2.example.com | [434 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d chaindID businesschannel +peer0.org2.example.com | [516 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer1.org1.example.com | ] +peer0.org2.example.com | [517 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b2 In commit adding relative sub-policy Org2MSP/Readers to Application +peer0.org1.example.com | [4e3 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421791920 +peer1.org2.example.com | [435 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [4e4 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +peer1.org1.example.com | [45b 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to index +peer0.org2.example.com | [518 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org2.example.com | [436 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b3 Returning policy Readers for evaluation +peer1.org1.example.com | [45c 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx number:[0] ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to blockNumTranNum index +peer0.org1.example.com | [4e5 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [437 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org1.example.com | [45d 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44676], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [4e6 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b4 In commit adding relative sub-policy Org1MSP/Readers to Application +peer0.org2.example.com | [519 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org2.example.com | [438 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a076b7a]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b5 Returning policy Writers for evaluation +peer1.org1.example.com | [45e 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer1.org1.example.com | [45f 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [439 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [4e7 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [4e8 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [4e9 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [460 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [43a 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [8a076b7a]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b6 In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org2.example.com | [51a 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]Received message TRANSACTION from shim +peer0.org1.example.com | [4ea 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c45500, header channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +peer1.org2.example.com | [43b 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a076b7a]Move state message TRANSACTION +peer1.org1.example.com | [461 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b7 Returning policy Admins for evaluation +peer0.org1.example.com | [4eb 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [51c 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73c65c24]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [43c 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a076b7a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b8 In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org1.example.com | [4ec 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [51d 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [73c65c24]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [462 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org2.example.com | [43d 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b9 Returning policy Admins for evaluation +peer0.org1.example.com | [4ed 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [463 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer1.org2.example.com | [43e 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a076b7a]sending state message TRANSACTION +peer0.org2.example.com | [51b 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [4ee 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2ba Returning policy Admins for evaluation +peer1.org1.example.com | [464 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [43f 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a076b7a]Received message TRANSACTION from shim +peer0.org2.example.com | [51f 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2bb Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [4ef 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] +peer0.org2.example.com | [51e 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org1.example.com | [465 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org2.example.com | [440 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a076b7a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [520 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2bc In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [4f0 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [466 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer0.org2.example.com | [521 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2bd Returning policy BlockValidation for evaluation +peer1.org2.example.com | [441 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [8a076b7a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [4f1 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [467 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2be In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer0.org2.example.com | [522 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [442 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [4f2 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cc9b60df-823a-4a76-b996-ae1133dd827d] +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2bf Returning policy Readers for evaluation +peer1.org1.example.com | [468 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +peer0.org2.example.com | [523 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [443 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [4f3 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=0f1aa104-a129-4edc-8308-a095fdbb096f,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [469 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c0 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c1 Returning policy Writers for evaluation +peer1.org1.example.com | [46a 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [4f4 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d chaindID businesschannel +peer1.org2.example.com | [444 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org2.example.com | [524 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c2 In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [4f5 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org2.example.com | [526 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [46b 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [4f6 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c3 Returning policy Admins for evaluation +peer1.org1.example.com | [46c 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [445 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c4 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c5 Returning policy OrdererOrg/Readers for evaluation +peer1.org1.example.com | [46d 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [4f7 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [4f8 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0f1aa104]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [446 01-14 11:46:02.67 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org2.example.com | [525 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org1.example.com | [46e 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c6 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +peer0.org1.example.com | [4f9 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [447 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c7 Returning policy OrdererOrg/Writers for evaluation +peer1.org1.example.com | [46f 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [4fa 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0f1aa104]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [527 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c8 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c9 Returning policy ChannelCreationPolicy for evaluation +peer1.org2.example.com | [448 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [4fb 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0f1aa104]Move state message TRANSACTION +peer1.org1.example.com | [470 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org1.example.com | [471 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2ca In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer1.org2.example.com | [449 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f53bc835-e57a-44ef-ba20-996c5a3b254d] +peer0.org1.example.com | [4fc 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0f1aa104]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [528 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2cb Returning policy Org2MSP/Writers for evaluation +peer1.org1.example.com | [472 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4221ea3f0 +peer0.org1.example.com | [4fd 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [44a 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2cc In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer1.org1.example.com | [473 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +peer0.org2.example.com | [529 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [73c65c24]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [4fe 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0f1aa104]sending state message TRANSACTION +peer1.org2.example.com | [44b 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f53bc835-e57a-44ef-ba20-996c5a3b254d] +peer1.org1.example.com | [474 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2cd Returning policy Org2MSP/Admins for evaluation +peer0.org2.example.com | [52a 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [73c65c24]send state message COMPLETED +peer0.org1.example.com | [4ff 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0f1aa104]Received message TRANSACTION from shim +peer1.org1.example.com | [475 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2ce In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +peer0.org2.example.com | [52b 01-14 11:46:18.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [73c65c24]Received message COMPLETED from shim +peer1.org2.example.com | [44c 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [500 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0f1aa104]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2cf Returning policy Org2MSP/Readers for evaluation +peer0.org2.example.com | [52c 01-14 11:46:18.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c24]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [476 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org1.example.com | [501 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0f1aa104]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2d0 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer1.org2.example.com | [44d 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer0.org2.example.com | [52d 01-14 11:46:18.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [477 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [502 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [52e 01-14 11:46:18.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +peer1.org2.example.com | [44e 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d1 Returning policy Org1MSP/Readers for evaluation +peer1.org1.example.com | [478 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [503 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [44f 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a076b7a]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2d2 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer1.org1.example.com | [479 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ebf500, header channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +peer0.org2.example.com | [52f 01-14 11:46:18.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [504 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d3 Returning policy Org1MSP/Writers for evaluation +peer1.org2.example.com | [450 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a076b7a]Move state message COMPLETED +peer1.org1.example.com | [47a 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [505 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2d4 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org2.example.com | [530 01-14 11:46:18.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [47b 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [451 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8a076b7a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d5 Returning policy Org1MSP/Admins for evaluation +peer0.org1.example.com | [506 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org1.example.com | [47c 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [452 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8a076b7a]send state message COMPLETED +peer0.org2.example.com | [531 01-14 11:46:18.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [507 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2d6 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer1.org2.example.com | [453 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8a076b7a]Received message COMPLETED from shim +peer1.org1.example.com | [47d 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [532 01-14 11:46:18.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [70ffeb3a-30a7-49a4-a228-8a27c83aa18a] +peer0.org1.example.com | [508 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org2.example.com | [454 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a076b7a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d7 Returning policy Writers for evaluation +peer1.org1.example.com | [47e 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] +peer0.org2.example.com | [533 01-14 11:46:18.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d8 Returning dummy reject all policy because Writers could not be found in /Application/Writers +peer0.org1.example.com | [509 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f534177d-e4e2-4fd1-b7ef-ca9c1243d12c] +peer1.org1.example.com | [47f 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [480 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [455 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [8a076b7a-784a-4407-93e3-c556487a32fc]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [534 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer0.org1.example.com | [50a 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [481 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [15672327-cdb4-4710-b0b7-9dc2eddfcc38] +peer1.org2.example.com | [456 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:8a076b7a-784a-4407-93e3-c556487a32fc +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d9 Returning policy Admins for evaluation +peer1.org1.example.com | [482 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=f846e6c8-20d1-4d1c-a148-8116947531e7,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [535 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +peer0.org1.example.com | [50b 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f534177d-e4e2-4fd1-b7ef-ca9c1243d12c] +peer1.org2.example.com | [457 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [483 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee chaindID businesschannel +peer1.org1.example.com | [484 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org1.example.com | [485 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [486 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [50c 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org2.example.com | [458 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [fda26537-fbdd-4f5f-bc80-c8c7b860482d] +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2da Returning dummy reject all policy because Admins could not be found in /Application/Admins +peer0.org2.example.com | [536 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [50d 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer1.org1.example.com | [487 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f846e6c8]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [459 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [50e 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [537 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2db Returning policy Readers for evaluation +peer0.org1.example.com | [50f 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0f1aa104]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [45a 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [488 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [538 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | 2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2dc Returning dummy reject all policy because Readers could not be found in /Application/Readers +peer0.org1.example.com | [510 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0f1aa104]Move state message COMPLETED +peer1.org2.example.com | [45b 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420141f40), Data:(*common.BlockData)(0xc42228ef40), Metadata:(*common.BlockMetadata)(0xc42228ef80)}, doMVCCValidation=true +peer1.org1.example.com | [489 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f846e6c8]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [539 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4218f4060 +peer0.org1.example.com | [511 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0f1aa104]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [48a 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f846e6c8]Move state message TRANSACTION +peer1.org2.example.com | [45c 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2dd Adding to config map: [Groups] /Channel +peer0.org1.example.com | [512 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0f1aa104]send state message COMPLETED +peer1.org1.example.com | [48b 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f846e6c8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [513 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0f1aa104]Received message COMPLETED from shim +peer1.org2.example.com | [45d 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [48c 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2de Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [53a 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +peer0.org1.example.com | [514 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0f1aa104]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [48d 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f846e6c8]sending state message TRANSACTION +peer0.org2.example.com | [53b 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [45e 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] marked as valid by state validator +peer0.org1.example.com | [515 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0f1aa104-a129-4edc-8308-a095fdbb096f]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [48e 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f846e6c8]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2df Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [48f 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f846e6c8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [45f 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xba, 0x24, 0x96, 0x98, 0xea, 0x83, 0xc, 0x88, 0x92, 0x2d, 0x8d, 0xe0, 0x99, 0x42, 0x2d, 0x3a, 0xe0, 0x84, 0xec, 0x46, 0x3c, 0xa6, 0xc, 0x6, 0xc2, 0x1e, 0xe1, 0x1a, 0x22, 0xb8, 0xa2, 0x6b} txOffsets= +peer0.org1.example.com | [516 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0f1aa104-a129-4edc-8308-a095fdbb096f +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e0 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org1.example.com | [490 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f846e6c8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [53c 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [517 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | txId=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d locPointer=offset=70, bytesLength=3394 +peer1.org1.example.com | [491 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [518 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [cc9b60df-823a-4a76-b996-ae1133dd827d] +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e1 Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [492 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [519 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [53d 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org1.example.com | [493 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [51a 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [51b 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421b9f340), Data:(*common.BlockData)(0xc421f10f80), Metadata:(*common.BlockMetadata)(0xc421f10fc0)}, doMVCCValidation=true +peer1.org2.example.com | ] +peer1.org1.example.com | [494 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e2 Adding to config map: [Groups] /Channel +peer0.org1.example.com | [51c 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [53e 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [495 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [51d 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [460 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to index +peer0.org2.example.com | [53f 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [51e 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] marked as valid by state validator +peer1.org1.example.com | [496 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e3 Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [51f 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xba, 0x24, 0x96, 0x98, 0xea, 0x83, 0xc, 0x88, 0x92, 0x2d, 0x8d, 0xe0, 0x99, 0x42, 0x2d, 0x3a, 0xe0, 0x84, 0xec, 0x46, 0x3c, 0xa6, 0xc, 0x6, 0xc2, 0x1e, 0xe1, 0x1a, 0x22, 0xb8, 0xa2, 0x6b} txOffsets= +peer1.org1.example.com | [497 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e4 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org2.example.com | [540 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4217b7500, header channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +peer1.org2.example.com | [461 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx number:[0] ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to blockNumTranNum index +peer0.org1.example.com | txId=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d locPointer=offset=70, bytesLength=3394 +peer1.org1.example.com | [498 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [43c43e79-f9b5-4034-bcf4-060544fb5d69] +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e5 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e6 Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [462 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44676], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org1.example.com | [499 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | ] +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e7 Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [541 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [49a 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [43c43e79-f9b5-4034-bcf4-060544fb5d69] +peer1.org2.example.com | [463 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer0.org1.example.com | [520 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to index +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e8 Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [49b 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [521 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx number:[0] ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to blockNumTranNum index +peer1.org1.example.com | [49c 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +orderer.example.com | 2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e9 Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [464 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [542 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [522 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44676], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org1.example.com | [49d 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +orderer.example.com | 2018-01-14 11:45:32.500 UTC [policies] GetPolicy -> DEBU 2ea Returning policy ChannelCreationPolicy for evaluation +peer0.org1.example.com | [523 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +peer1.org1.example.com | [49e 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f846e6c8]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [543 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [524 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [49f 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f846e6c8]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.500 UTC [cauthdsl] func1 -> DEBU 2eb 0xc420150df8 gate 1515930332500099064 evaluation starts +peer1.org1.example.com | [4a0 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f846e6c8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [525 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [544 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [465 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [4a1 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f846e6c8]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.500 UTC [cauthdsl] func2 -> DEBU 2ec 0xc420150df8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [526 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [4a2 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f846e6c8]Received message COMPLETED from shim +peer0.org2.example.com | [545 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] +peer1.org2.example.com | [466 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [527 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | 2018-01-14 11:45:32.500 UTC [cauthdsl] func2 -> DEBU 2ed 0xc420150df8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer1.org1.example.com | [4a3 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f846e6c8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [546 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [528 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer1.org2.example.com | [467 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | 2018-01-14 11:45:32.500 UTC [msp/identity] newIdentity -> DEBU 2ee Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [4a4 01-14 11:46:20.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f846e6c8-20d1-4d1c-a148-8116947531e7]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [547 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [468 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [4a5 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f846e6c8-20d1-4d1c-a148-8116947531e7 +peer0.org1.example.com | [529 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [548 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6c6005cf-56b5-440e-b9a4-5eaf4c51e3ed] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [469 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [52a 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org1.example.com | [4a6 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [549 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=44c7dab7-6b9f-499f-b393-dbcefc40220a,syscc=true,proposal=0x0,canname=vscc:1.0.2 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [52b 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org2.example.com | [46a 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer0.org2.example.com | [54a 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee chaindID businesschannel +peer0.org2.example.com | [54b 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org1.example.com | [4a7 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee, error Chaincode exp02 is already instantiated +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [52c 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [54c 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [46b 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org2.example.com | [46c 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org2.example.com | [54d 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [52d 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +peer1.org2.example.com | [46d 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +peer1.org1.example.com | [4a8 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [15672327-cdb4-4710-b0b7-9dc2eddfcc38] +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org1.example.com | [52e 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer0.org2.example.com | [54e 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44c7dab7]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [46e 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +peer1.org1.example.com | [4a9 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee returned error Chaincode exp02 is already instantiated +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | [52f 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [46f 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [4aa 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [530 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [54f 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [531 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [4ab 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [4ac 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4220a2300), Data:(*common.BlockData)(0xc421c6c4a0), Metadata:(*common.BlockMetadata)(0xc421c6c4e0)}, doMVCCValidation=true +peer1.org2.example.com | [470 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [532 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer1.org1.example.com | [4ad 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [550 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [44c7dab7]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [533 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [471 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [4ae 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer0.org2.example.com | [551 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44c7dab7]Move state message TRANSACTION +peer0.org1.example.com | [534 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org2.example.com | [472 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [552 01-14 11:46:20.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [44c7dab7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [4af 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x3e, 0xa5, 0xb9, 0x9c, 0xb8, 0xc5, 0x29, 0x6f, 0xda, 0xd3, 0xfd, 0xc3, 0x49, 0x31, 0x1d, 0xc8, 0xf5, 0x6d, 0xce, 0x76, 0x5e, 0x7f, 0x6e, 0x5c, 0xf0, 0x98, 0xb6, 0x7b, 0x85, 0xb8, 0x9, 0x2b} txOffsets= +peer0.org1.example.com | [535 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [553 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [473 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | txId=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee locPointer=offset=70, bytesLength=3395 +peer0.org2.example.com | [554 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44c7dab7]sending state message TRANSACTION +peer0.org1.example.com | [536 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | 2018-01-14 11:45:32.500 UTC [msp] SatisfiesPrincipal -> DEBU 2ef Checking if identity satisfies ADMIN role for Org1MSP +peer0.org2.example.com | [555 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44c7dab7]Received message TRANSACTION from shim +peer1.org2.example.com | [474 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [537 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | 2018-01-14 11:45:32.500 UTC [cauthdsl] func2 -> DEBU 2f0 0xc420150df8 principal matched by identity 0 +peer1.org1.example.com | ] +peer0.org1.example.com | [538 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org2.example.com | [556 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44c7dab7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [475 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42225ce70 +orderer.example.com | 2018-01-14 11:45:32.500 UTC [msp/identity] Verify -> DEBU 2f1 Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +peer0.org1.example.com | [539 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ffc360 +peer1.org1.example.com | [4b0 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to index +peer1.org2.example.com | [476 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [557 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [44c7dab7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [53a 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +orderer.example.com | 00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +peer1.org2.example.com | [477 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [53b 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [558 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [478 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org1.example.com | [53c 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [4b1 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx number:[0] ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to blockNumTranNum index +orderer.example.com | 2018-01-14 11:45:32.500 UTC [msp/identity] Verify -> DEBU 2f2 Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +peer1.org2.example.com | [479 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [53d 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [559 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [47a 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [4b2 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49893], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org1.example.com | [53e 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [47b 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421843d10, header 0xc42225cea0 +orderer.example.com | 00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +peer0.org2.example.com | [55a 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [53f 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [47c 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org2.example.com | [47d 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 +peer1.org1.example.com | [4b3 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +orderer.example.com | 00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +peer0.org1.example.com | [540 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421f3b500, header channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +peer0.org2.example.com | [55b 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [47e 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2] +orderer.example.com | 00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +peer1.org2.example.com | [47f 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [55c 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org1.example.com | [541 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [4b4 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [480 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [2fa4b2b3-4ec2-42f8-91eb-cbd2bf2fa407] +peer0.org1.example.com | [542 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [55d 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org1.example.com | [4b5 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [481 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 channel id: businesschannel +orderer.example.com | 00000040 12 a6 8e 7f 16 50 |.....P| +peer0.org1.example.com | [543 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [55e 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org2.example.com | [482 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2,syscc=true,proposal=0xc421843d10,canname=lscc:1.0.2 +peer1.org1.example.com | [4b6 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [483 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [544 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [484 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [55f 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [7311771a-6be3-4a61-ab9f-d9e81de9ba1c] +peer0.org2.example.com | [560 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [485 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.501 UTC [cauthdsl] func2 -> DEBU 2f3 0xc420150df8 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [4b7 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org1.example.com | [545 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] +peer1.org2.example.com | [486 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34c84dd7]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [561 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [7311771a-6be3-4a61-ab9f-d9e81de9ba1c] +peer1.org1.example.com | [4b8 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org1.example.com | [546 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | 2018-01-14 11:45:32.501 UTC [cauthdsl] func1 -> DEBU 2f4 0xc420150df8 gate 1515930332500099064 evaluation succeeds +peer1.org2.example.com | [487 01-14 11:46:18.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [4b9 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org2.example.com | [562 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [547 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [563 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer1.org2.example.com | [488 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [4ba 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [548 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [64d8c4d5-046a-4296-a4bf-82e38277468a] +peer0.org2.example.com | [564 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f5 Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [489 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34c84dd7]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f6 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [565 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44c7dab7]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [549 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=a6bff49a-3678-4c1c-8248-045119d5c177,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [4bb 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +peer0.org2.example.com | [566 01-14 11:46:20.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44c7dab7]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f7 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [48a 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Move state message TRANSACTION +peer0.org1.example.com | [54a 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee chaindID businesschannel +peer0.org2.example.com | [567 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [44c7dab7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [4bc 01-14 11:46:20.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer1.org2.example.com | [48b 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [54b 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f8 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [568 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [44c7dab7]send state message COMPLETED +peer1.org1.example.com | [4bd 01-14 11:46:20.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [48c 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [569 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [44c7dab7]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f9 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [54c 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [48d 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]sending state message TRANSACTION +peer1.org1.example.com | [4be 01-14 11:46:20.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [56a 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [44c7dab7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [54d 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fa Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [48e 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Received message TRANSACTION from shim +peer0.org2.example.com | [56b 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [44c7dab7-6b9f-499f-b393-dbcefc40220a]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [4bf 01-14 11:46:20.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fb Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [56c 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:44c7dab7-6b9f-499f-b393-dbcefc40220a +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fc Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [54e 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a6bff49a]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [4c0 01-14 11:46:20.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [48f 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34c84dd7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fd Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [54f 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [56d 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [4c1 01-14 11:46:20.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org1.example.com | [550 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a6bff49a]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fe Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [490 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [34c84dd7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [56e 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee, error Chaincode exp02 is already instantiated +peer1.org1.example.com | [4c2 01-14 11:46:39.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [551 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6bff49a]Move state message TRANSACTION +peer1.org2.example.com | [491 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [34c84dd7]Sending GET_STATE +peer0.org2.example.com | [56f 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6c6005cf-56b5-440e-b9a4-5eaf4c51e3ed] +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2ff Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [4c3 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421ef30b0 +peer1.org2.example.com | [492 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Received message GET_STATE from shim +peer0.org2.example.com | [570 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee returned error Chaincode exp02 is already instantiated +peer0.org1.example.com | [552 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6bff49a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 300 Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [4c4 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [553 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [493 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [571 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [4c5 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [554 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6bff49a]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 301 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [494 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [34c84dd7]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [4c6 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org2.example.com | [572 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 302 Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [495 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [555 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6bff49a]Received message TRANSACTION from shim +peer1.org1.example.com | [4c7 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [573 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4223f1ac0), Data:(*common.BlockData)(0xc4218e9bc0), Metadata:(*common.BlockMetadata)(0xc4218e9c00)}, doMVCCValidation=true +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 303 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [496 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [34c84dd7] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [4c8 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [556 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6bff49a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 304 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [574 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [497 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [4c9 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421b74a50, header 0xc421ef30e0 +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 305 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [557 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a6bff49a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [575 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer0.org1.example.com | [558 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [498 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [34c84dd7]Got state. Sending RESPONSE +peer1.org1.example.com | [4ca 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 306 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [559 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [576 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x3e, 0xa5, 0xb9, 0x9c, 0xb8, 0xc5, 0x29, 0x6f, 0xda, 0xd3, 0xfd, 0xc3, 0x49, 0x31, 0x1d, 0xc8, 0xf5, 0x6d, 0xce, 0x76, 0x5e, 0x7f, 0x6e, 0x5c, 0xf0, 0x98, 0xb6, 0x7b, 0x85, 0xb8, 0x9, 0x2b} txOffsets= +peer1.org1.example.com | [4cb 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da +peer1.org2.example.com | [499 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [34c84dd7]handleGetState serial send RESPONSE +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 307 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [55a 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org2.example.com | txId=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee locPointer=offset=70, bytesLength=3395 +peer0.org2.example.com | ] +peer0.org2.example.com | [577 01-14 11:46:20.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to index +peer0.org2.example.com | [578 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx number:[0] ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to blockNumTranNum index +peer1.org1.example.com | [4cc 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da] +peer0.org1.example.com | [55b 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [49a 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Received message RESPONSE from shim +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/configtx] processConfig -> DEBU 308 Beginning new config for channel businesschannel +peer0.org2.example.com | [579 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49893], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org1.example.com | [55c 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org1.example.com | [4cd 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [49b 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34c84dd7]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [57a 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/config] NewStandardValues -> DEBU 309 Initializing protos for *config.ChannelProtos +peer0.org2.example.com | [57b 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [49c 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [34c84dd7]before send +peer1.org1.example.com | [4ce 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [86ee3ea4-c574-4f77-bcc0-fcdf3a86cc97] +peer0.org1.example.com | [55d 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org2.example.com | [57c 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/config] initializeProtosStruct -> DEBU 30a Processing field: HashingAlgorithm +peer1.org2.example.com | [49d 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [34c84dd7]after send +peer0.org2.example.com | [57d 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [4cf 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da channel id: businesschannel +peer0.org2.example.com | [57e 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org1.example.com | [55e 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/config] initializeProtosStruct -> DEBU 30b Processing field: BlockDataHashingStructure +peer0.org2.example.com | [57f 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer1.org1.example.com | [4d0 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da,syscc=true,proposal=0xc421b74a50,canname=lscc:1.0.2 +peer0.org1.example.com | [55f 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [3ddf7dd3-0702-453e-bcd0-74474986ad38] +peer1.org2.example.com | [49f 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [34c84dd7]Received RESPONSE, communicated (state:ready) +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/config] initializeProtosStruct -> DEBU 30c Processing field: OrdererAddresses +peer0.org2.example.com | [580 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer1.org1.example.com | [4d1 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org2.example.com | [581 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [560 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/config] initializeProtosStruct -> DEBU 30d Processing field: Consortium +peer1.org2.example.com | [49e 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [34c84dd7]GetState received payload RESPONSE +peer0.org2.example.com | [582 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +peer1.org1.example.com | [4d2 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 30e Proposed new policy Readers for Channel +peer0.org1.example.com | [561 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [3ddf7dd3-0702-453e-bcd0-74474986ad38] +peer1.org2.example.com | [4a0 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [583 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer1.org1.example.com | [4d3 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 30f Proposed new policy Writers for Channel +peer0.org2.example.com | [584 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [562 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org2.example.com | [4a1 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Move state message COMPLETED +peer0.org2.example.com | [585 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [4d4 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b54090]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 310 Proposed new policy Admins for Channel +peer1.org2.example.com | [4a2 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34c84dd7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [563 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer0.org2.example.com | [586 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [4d5 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.502 UTC [common/config] NewStandardValues -> DEBU 311 Initializing protos for *struct {} +peer1.org2.example.com | [4a3 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]send state message COMPLETED +peer0.org2.example.com | [587 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [564 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer0.org2.example.com | [588 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org1.example.com | [4d6 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [4a4 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 312 Proposed new policy Writers for Application +peer0.org1.example.com | [565 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6bff49a]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [589 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer1.org1.example.com | [4d7 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b54090]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [4a5 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [58b 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org2.example.com | [58c 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [566 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6bff49a]Move state message COMPLETED +peer1.org1.example.com | [4d8 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Move state message TRANSACTION +peer1.org2.example.com | [4a6 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 313 Proposed new policy Readers for Application +peer0.org2.example.com | [58d 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org1.example.com | [4d9 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 314 Proposed new policy Admins for Application +peer0.org2.example.com | [58e 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421f0adb0 +peer0.org1.example.com | [567 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6bff49a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [4a7 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 +peer1.org1.example.com | [4da 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [58f 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 315 Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [4db 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]sending state message TRANSACTION +peer0.org2.example.com | [590 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 316 Processing field: MSP +peer0.org1.example.com | [568 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6bff49a]send state message COMPLETED +peer0.org2.example.com | [591 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [4dc 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 317 Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [569 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6bff49a]Received message COMPLETED from shim +peer0.org2.example.com | [592 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org2.example.com | [4a8 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 318 Processing field: AnchorPeers +peer1.org1.example.com | [4dd 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b54090]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [56a 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6bff49a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [593 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [4a9 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [4de 01-14 11:46:39.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d6b54090]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 319 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [56b 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6bff49a-3678-4c1c-8248-045119d5c177]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [594 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [4df 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d6b54090]Sending GET_STATE +peer1.org2.example.com | [4aa 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 channel id: businesschannel version: 1.0 +peer0.org1.example.com | [56c 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a6bff49a-3678-4c1c-8248-045119d5c177 +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 31a Processing field: MSP +peer0.org2.example.com | [595 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421cc3800, header channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +peer1.org1.example.com | [4e0 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Received message GET_STATE from shim +peer1.org2.example.com | [4ab 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2,syscc=false,proposal=0xc421843d10,canname=exp02:1.0 +peer0.org1.example.com | [56d 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 31b Proposed new policy Readers for Org2MSP +peer1.org1.example.com | [4e1 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [4ac 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2,syscc=true,proposal=0xc421843d10,canname=lscc:1.0.2 +peer0.org2.example.com | [596 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 31c Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [56e 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee, error Chaincode exp02 is already instantiated +peer1.org1.example.com | [4e2 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d6b54090]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [4ad 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 31d Proposed new policy Admins for Org2MSP +peer0.org2.example.com | [597 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [56f 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [64d8c4d5-046a-4296-a4bf-82e38277468a] +peer1.org1.example.com | [4e3 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [570 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee returned error Chaincode exp02 is already instantiated +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 31e Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [4ae 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [4e4 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d6b54090] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 31f Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 320 Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [4af 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [571 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [598 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [4b0 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34c84dd7]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [4e5 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [572 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 321 Processing field: AnchorPeers +peer1.org1.example.com | [4e6 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d6b54090]Got state. Sending RESPONSE +peer0.org2.example.com | [58a 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer1.org2.example.com | [4b1 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 322 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [573 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219ddac0), Data:(*common.BlockData)(0xc422244ba0), Metadata:(*common.BlockMetadata)(0xc422244be0)}, doMVCCValidation=true +peer1.org2.example.com | [4b2 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [4e7 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d6b54090]handleGetState serial send RESPONSE +peer0.org2.example.com | [599 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 323 Processing field: MSP +peer0.org1.example.com | [574 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org2.example.com | [4b3 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34c84dd7]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [4e8 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Received message RESPONSE from shim +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 324 Proposed new policy Readers for Org1MSP +peer0.org2.example.com | [59a 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] +peer0.org1.example.com | [575 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +peer1.org2.example.com | [4b4 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Move state message TRANSACTION +peer0.org2.example.com | [59b 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [4e9 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b54090]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [576 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x3e, 0xa5, 0xb9, 0x9c, 0xb8, 0xc5, 0x29, 0x6f, 0xda, 0xd3, 0xfd, 0xc3, 0x49, 0x31, 0x1d, 0xc8, 0xf5, 0x6d, 0xce, 0x76, 0x5e, 0x7f, 0x6e, 0x5c, 0xf0, 0x98, 0xb6, 0x7b, 0x85, 0xb8, 0x9, 0x2b} txOffsets= +peer1.org2.example.com | [4b5 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 325 Proposed new policy Writers for Org1MSP +peer0.org2.example.com | [59c 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [c24dbf3f-628d-48b2-9510-1db5b017ab0a] +peer0.org1.example.com | txId=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee locPointer=offset=70, bytesLength=3395 +peer1.org1.example.com | [4ea 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d6b54090]before send +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 326 Proposed new policy Admins for Org1MSP +peer0.org2.example.com | [59d 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [4b6 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | ] +peer1.org1.example.com | [4eb 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d6b54090]after send +peer0.org2.example.com | [59e 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c24dbf3f-628d-48b2-9510-1db5b017ab0a] +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 327 Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [4b7 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]sending state message TRANSACTION +peer0.org1.example.com | [577 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to index +peer0.org2.example.com | [59f 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [4ec 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d6b54090]Received RESPONSE, communicated (state:ready) +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 328 Processing field: ConsensusType +peer0.org1.example.com | [578 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx number:[0] ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to blockNumTranNum index +peer1.org1.example.com | [4ed 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d6b54090]GetState received payload RESPONSE +peer0.org2.example.com | [5a0 01-14 11:46:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b3cdf833-1415-4ce0-b22a-51f0be6e5e2f] +peer1.org2.example.com | [4b8 01-14 11:46:18.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 329 Processing field: BatchSize +peer1.org1.example.com | [4ee 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [579 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49893], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org2.example.com | [5a1 01-14 11:46:41.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=4095b5e2-40a1-42f5-8613-bc16400d8b57,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [4b9 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34c84dd7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [4ef 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 32a Processing field: BatchTimeout +peer0.org2.example.com | [5a2 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 chaindID businesschannel +peer0.org1.example.com | [57a 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer1.org1.example.com | [4f0 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b54090]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 32b Processing field: KafkaBrokers +peer1.org2.example.com | [4ba 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [34c84dd7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [5a3 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org1.example.com | [4f1 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]send state message COMPLETED +peer0.org1.example.com | [57b 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [4bb 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [34c84dd7]Sending GET_STATE +peer0.org2.example.com | [5a4 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [4f2 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 32c Processing field: ChannelRestrictions +peer0.org1.example.com | [57c 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [4bc 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Received message GET_STATE from shim +peer1.org1.example.com | [4f3 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [5a5 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org1.example.com | [4f4 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 32d Proposed new policy Admins for Orderer +peer1.org2.example.com | [4bd 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [57d 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [4f5 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 32e Proposed new policy BlockValidation for Orderer +peer0.org2.example.com | [5a6 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4095b5e2]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [4f6 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [57e 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org1.example.com | [57f 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org1.example.com | [580 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org1.example.com | [581 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [4be 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [34c84dd7]Received GET_STATE, invoking get state from ledger +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 32f Proposed new policy Readers for Orderer +peer1.org1.example.com | [4f7 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org2.example.com | [5a7 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [582 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +peer1.org1.example.com | [4f8 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da channel id: businesschannel version: 1.0 +peer1.org2.example.com | [4bf 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 330 Proposed new policy Writers for Orderer +peer1.org1.example.com | [4f9 01-14 11:46:39.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da,syscc=false,proposal=0xc421b74a50,canname=exp02:1.0 +peer0.org2.example.com | [5a8 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4095b5e2]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [4fa 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da,syscc=true,proposal=0xc421b74a50,canname=lscc:1.0.2 +peer1.org2.example.com | [4c0 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [34c84dd7] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [583 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer1.org1.example.com | [4fb 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 331 Initializing protos for *config.OrganizationProtos +peer0.org2.example.com | [5a9 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4095b5e2]Move state message TRANSACTION +peer1.org1.example.com | [4fc 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [584 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [4c1 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [4fd 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [585 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [5aa 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4095b5e2]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 332 Processing field: MSP +peer1.org1.example.com | [4fe 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b54090]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [4c2 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [34c84dd7]Got state. Sending RESPONSE +peer0.org2.example.com | [5ab 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.504 UTC [policies] ProposePolicy -> DEBU 333 Proposed new policy Writers for OrdererOrg +peer1.org1.example.com | [4ff 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [586 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [500 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [501 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b54090]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [587 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org2.example.com | [4c3 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [34c84dd7]handleGetState serial send RESPONSE +orderer.example.com | 2018-01-14 11:45:32.504 UTC [policies] ProposePolicy -> DEBU 334 Proposed new policy Admins for OrdererOrg +peer1.org1.example.com | [502 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Move state message TRANSACTION +peer0.org2.example.com | [5ac 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4095b5e2]sending state message TRANSACTION +peer1.org1.example.com | [503 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [4c4 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Received message RESPONSE from shim +peer0.org1.example.com | [588 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.504 UTC [policies] ProposePolicy -> DEBU 335 Proposed new policy Readers for OrdererOrg +peer0.org2.example.com | [5ad 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4095b5e2]Received message TRANSACTION from shim +peer1.org1.example.com | [504 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4c5 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34c84dd7]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | 2018-01-14 11:45:32.504 UTC [common/config] Validate -> DEBU 336 Anchor peers for org Org2MSP are +peer0.org2.example.com | [5ae 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4095b5e2]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [589 01-14 11:46:38.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [4c6 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [34c84dd7]before send +peer1.org1.example.com | [505 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]sending state message TRANSACTION +peer0.org1.example.com | [58a 01-14 11:46:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422717050 +orderer.example.com | 2018-01-14 11:45:32.504 UTC [common/config] validateMSP -> DEBU 337 Setting up MSP for org Org2MSP +peer0.org2.example.com | [5af 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4095b5e2]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [4c7 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [34c84dd7]GetState received payload RESPONSE +peer1.org1.example.com | [506 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Received message TRANSACTION from shim +peer0.org1.example.com | [58b 01-14 11:46:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-14 11:45:32.504 UTC [msp] NewBccspMsp -> DEBU 338 Creating BCCSP-based MSP instance +peer1.org2.example.com | [4c8 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [34c84dd7]after send +peer0.org2.example.com | [5b0 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org1.example.com | [58c 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [507 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b54090]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.504 UTC [msp] Setup -> DEBU 339 Setting up MSP instance Org2MSP +peer1.org2.example.com | [4c9 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [34c84dd7]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [58d 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [508 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d6b54090]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [5b1 01-14 11:46:41.09 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | 2018-01-14 11:45:32.504 UTC [msp/identity] newIdentity -> DEBU 33a Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [4ca 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [509 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d6b54090]Sending GET_STATE +peer0.org1.example.com | [58e 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [4cb 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Move state message COMPLETED +peer0.org2.example.com | [5b2 01-14 11:46:41.10 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | [50a 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Received message GET_STATE from shim +peer0.org1.example.com | [58f 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [5b3 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4095b5e2]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [4cc 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34c84dd7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [50b 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [590 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42245de00, header 0xc422717080 +peer1.org2.example.com | [4cd 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]send state message COMPLETED +peer1.org2.example.com | [4ce 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Received message COMPLETED from shim +peer1.org2.example.com | [4cf 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [591 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org2.example.com | [5b4 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4095b5e2]Move state message COMPLETED +peer0.org2.example.com | [5b5 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4095b5e2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [50c 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d6b54090]Received GET_STATE, invoking get state from ledger +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +peer0.org2.example.com | [5b6 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4095b5e2]send state message COMPLETED +peer1.org1.example.com | [50d 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4d0 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [592 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [50e 01-14 11:46:39.15 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d6b54090] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [593 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] +peer0.org2.example.com | [5b7 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4095b5e2]Received message COMPLETED from shim +peer1.org2.example.com | [4d1 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 +peer1.org1.example.com | [50f 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [594 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [4d2 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [5b8 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4095b5e2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [510 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d6b54090]Got state. Sending RESPONSE +peer0.org1.example.com | [595 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0c14dfd7-27c2-42b7-98cc-a6087dc9f74d] +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [5b9 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4095b5e2-40a1-42f5-8613-bc16400d8b57]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [511 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d6b54090]handleGetState serial send RESPONSE +peer1.org2.example.com | [4d3 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +peer0.org1.example.com | [596 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 channel id: businesschannel +peer0.org2.example.com | [5ba 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4095b5e2-40a1-42f5-8613-bc16400d8b57 +peer1.org2.example.com | [4d4 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer1.org1.example.com | [512 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Received message RESPONSE from shim +peer0.org1.example.com | [597 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38,syscc=true,proposal=0xc42245de00,canname=lscc:1.0.2 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org2.example.com | [5bb 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [4d5 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org1.example.com | [513 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b54090]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [5bc 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b3cdf833-1415-4ce0-b22a-51f0be6e5e2f] +peer1.org2.example.com | [4d6 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org2.example.com) +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer0.org1.example.com | [598 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org1.example.com | [514 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d6b54090]before send +peer1.org2.example.com | [4d7 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer0.org2.example.com | [5bd 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [5be 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [515 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [d6b54090]after send +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer0.org1.example.com | [599 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [4d8 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +peer0.org1.example.com | [59a 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer0.org2.example.com | [5bf 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421bf4440), Data:(*common.BlockData)(0xc422076180), Metadata:(*common.BlockMetadata)(0xc4220761c0)}, doMVCCValidation=true +peer1.org1.example.com | [516 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [d6b54090]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +orderer.example.com | SCjyRdD3aQ== +peer0.org1.example.com | [59b 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [5c0 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [517 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [d6b54090]GetState received payload RESPONSE +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [518 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Transaction completed. Sending COMPLETED +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | [5c1 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [59c 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [5c2 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org1.example.com | [519 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.505 UTC [msp/identity] newIdentity -> DEBU 33b Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [59d 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org2.example.com | [5c3 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [51a 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b54090]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [59e 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [5c4 01-14 11:46:41.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] marked as valid by state validator +peer1.org1.example.com | [51b 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]send state message COMPLETED +peer1.org1.example.com | [51c 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Received message COMPLETED from shim +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [59f 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message TRANSACTION +peer0.org2.example.com | [5c5 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcd, 0x59, 0x35, 0x43, 0xb3, 0xfa, 0x14, 0xcb, 0x59, 0x18, 0x46, 0x89, 0x5f, 0xd3, 0xa0, 0x0, 0x87, 0xb9, 0x64, 0x3c, 0xe6, 0xb3, 0x98, 0x4d, 0x7a, 0xc5, 0x75, 0xe5, 0xbd, 0x79, 0xfa, 0x45} txOffsets= +peer1.org1.example.com | [51d 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5a0 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [4d9 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-exp02-1.0) lock +peer0.org2.example.com | txId=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 locPointer=offset=70, bytesLength=2855 +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org1.example.com | [5a1 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4da 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-exp02-1.0) lock +peer1.org1.example.com | [51e 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da]HandleMessage- COMPLETED. Notify +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | ] +peer0.org1.example.com | [5a2 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message TRANSACTION +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [51f 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da +peer0.org2.example.com | [5c6 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to index +peer1.org2.example.com | [4db 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-exp02-1.0 +peer0.org1.example.com | [5a3 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Received message TRANSACTION from shim +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org2.example.com | [5c7 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx number:[0] ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to blockNumTranNum index +peer1.org2.example.com | [4dc 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-exp02-1.0(No such container: dev-peer1.org2.example.com-exp02-1.0) +peer0.org1.example.com | [5a4 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [520 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [5c8 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54569], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer1.org2.example.com | [4dd 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) +peer0.org2.example.com | [5c9 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +peer0.org1.example.com | [5a5 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0aa15551]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [521 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer1.org2.example.com | [4de 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) +peer0.org1.example.com | [5a6 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0aa15551]Sending GET_STATE +peer0.org2.example.com | [5ca 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [5cb 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [4df 01-14 11:46:18.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-exp02-1.0 +peer1.org1.example.com | [522 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +peer0.org1.example.com | [5a7 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message GET_STATE from shim +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org2.example.com | [5cc 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org2.example.com | [5cd 01-14 11:46:41.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [523 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org1.example.com | [5a8 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org2.example.com | [5ce 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [524 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer1.org1.example.com) +peer0.org1.example.com | [5a9 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0aa15551]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [4e0 01-14 11:46:18.73 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [5aa 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [5cf 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org2.example.com | [4e1 01-14 11:46:18.73 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 +peer1.org1.example.com | [525 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer0.org1.example.com | [5ab 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.505 UTC [msp/identity] newIdentity -> DEBU 33c Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [5d0 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org2.example.com | [4e2 01-14 11:46:18.73 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer0.org1.example.com | [5ac 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [526 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [5d1 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [4e3 01-14 11:46:18.74 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org1.example.com | [5ad 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Got state. Sending RESPONSE +peer0.org1.example.com | [5ae 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]handleGetState serial send RESPONSE +peer0.org2.example.com | [5d2 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer0.org1.example.com | [5af 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Received message RESPONSE from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [5d3 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org1.example.com | [5b0 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +peer0.org1.example.com | [5b1 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0aa15551]before send +peer1.org2.example.com | ADD binpackage.tar /usr/local/bin +peer0.org2.example.com | [5d4 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [5b2 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0aa15551]after send +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} +peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [527 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-exp02-1.0) lock +peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org1.example.com | [5b3 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0aa15551]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [5d5 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | org.hyperledger.fabric.version="1.0.2" \ +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org1.example.com | [528 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-exp02-1.0) lock +peer0.org1.example.com | [5b4 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0aa15551]GetState received payload RESPONSE +peer1.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer1.org1.example.com | [529 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-exp02-1.0 +peer0.org1.example.com | [5b5 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [5d6 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 +peer1.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [52a 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-exp02-1.0(No such container: dev-peer1.org1.example.com-exp02-1.0) +peer1.org1.example.com | [52b 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) +peer0.org1.example.com | [5b6 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Move state message COMPLETED +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [5d7 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [5d8 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [5d9 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org2.example.com | [5da 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4202961e0 +peer1.org1.example.com | [52c 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) +peer1.org2.example.com | [4e4 01-14 11:46:18.74 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +peer1.org2.example.com | [4e5 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [4e6 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [4e7 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [4e8 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42256ab10 +peer0.org1.example.com | [5b7 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [5b8 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]send state message COMPLETED +peer0.org1.example.com | [5b9 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message COMPLETED from shim +peer0.org1.example.com | [5ba 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5bb 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [5bc 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +peer0.org1.example.com | [5bd 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [5be 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer1.org1.example.com | [52d 01-14 11:46:39.16 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [52e 01-14 11:46:39.17 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +peer0.org2.example.com | [5db 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [5bf 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 channel id: businesschannel version: 1.0 +peer0.org1.example.com | [5c0 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38,syscc=false,proposal=0xc42245de00,canname=exp02:1.0 +peer1.org2.example.com | [4e9 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +peer1.org1.example.com | [52f 01-14 11:46:39.17 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org2.example.com | [5dc 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [5c1 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer1.org2.example.com | [4ea 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [4eb 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org1.example.com | [530 01-14 11:46:39.18 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer1.org1.example.com | [531 01-14 11:46:39.18 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 +peer1.org1.example.com | ADD binpackage.tar /usr/local/bin +peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org1.example.com | [5c2 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [4ec 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [5dd 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org1.example.com | [5c3 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org2.example.com | [4ed 01-14 11:46:20.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [5de 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [4ee 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | org.hyperledger.fabric.version="1.0.2" \ +peer0.org1.example.com | [5c4 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [5df 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-14 11:45:32.506 UTC [msp] Validate -> DEBU 33d MSP Org2MSP validating identity +peer1.org2.example.com | [4ef 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421f6c000, header channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +peer1.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" +peer0.org1.example.com | [5c5 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.506 UTC [common/config] Validate -> DEBU 33e Anchor peers for org Org1MSP are +peer1.org2.example.com | [4f0 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 +peer0.org1.example.com | [5c6 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.506 UTC [common/config] validateMSP -> DEBU 33f Setting up MSP for org Org1MSP +peer0.org2.example.com | [5e0 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421c8f130, header 0xc420296210 +peer1.org2.example.com | [4f1 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [5c7 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.506 UTC [msp] NewBccspMsp -> DEBU 340 Creating BCCSP-based MSP instance +peer0.org2.example.com | [5e1 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org2.example.com | [4f2 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt +peer0.org1.example.com | [5c8 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.506 UTC [msp] Setup -> DEBU 341 Setting up MSP instance Org1MSP +peer1.org1.example.com | [532 01-14 11:46:39.19 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +peer1.org2.example.com | [4f3 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [5e2 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f +orderer.example.com | 2018-01-14 11:45:32.506 UTC [msp/identity] newIdentity -> DEBU 342 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [4f4 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [5e3 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f] +peer0.org1.example.com | [5c9 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [533 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [4f5 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [5e4 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [534 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [5ca 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [4f6 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [5e5 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [46907a9c-f863-495d-8188-4a2c5b5bf580] +peer1.org1.example.com | [535 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer0.org1.example.com | [5cb 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message TRANSACTION +peer1.org2.example.com | [4f7 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7044eb7b-905d-454a-b629-aae70b8e5991] +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org2.example.com | [5e6 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f channel id: businesschannel +peer0.org1.example.com | [5cc 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message GET_STATE from shim +peer1.org1.example.com | [536 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42190f7a0 +peer1.org2.example.com | [4f8 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=4038343f-1600-47a3-9f35-18b02f2de1c1,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [5e7 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f,syscc=true,proposal=0xc421c8f130,canname=lscc:1.0.2 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [5cd 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [537 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +peer1.org1.example.com | [538 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [4f9 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee chaindID businesschannel +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer0.org1.example.com | [5ce 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0aa15551]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [5e8 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org1.example.com | [539 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org2.example.com | [4fa 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [5cf 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [53a 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [53b 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org1.example.com | [53c 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [53d 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422126000, header channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +peer0.org1.example.com | [5d0 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [5d1 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [4fb 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [5e9 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | H7n8z1pj5w== +peer1.org1.example.com | [53e 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [53f 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [540 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [541 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [5d2 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Got state. Sending RESPONSE +peer1.org2.example.com | [4fc 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org1.example.com | [542 01-14 11:46:41.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] +peer1.org1.example.com | [543 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [5d3 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]handleGetState serial send RESPONSE +peer0.org1.example.com | [5d4 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message GET_STATE from shim +peer0.org2.example.com | [5ea 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org1.example.com | [544 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [c99d78f6-8e1d-4bb8-9693-b2e55bbb18a7] +peer1.org1.example.com | [545 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | 2018-01-14 11:45:32.507 UTC [msp/identity] newIdentity -> DEBU 343 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [5d5 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [5eb 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9bcbbd38]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [4fd 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4038343f]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [546 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c99d78f6-8e1d-4bb8-9693-b2e55bbb18a7] +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | [5ec 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [5d6 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0aa15551]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [4fe 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [547 01-14 11:46:41.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [4ff 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4038343f]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [548 01-14 11:46:41.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f95a2541-0184-4906-88a6-74b1d16f26af] +peer0.org2.example.com | [5ed 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [5d7 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [500 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4038343f]Move state message TRANSACTION +peer1.org2.example.com | [501 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4038343f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [549 01-14 11:46:41.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=172dbdf3-7360-4ca2-80e9-1c4f1e0e5fda,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [54a 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 chaindID businesschannel +peer1.org1.example.com | [54b 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org1.example.com | [54c 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.508 UTC [msp/identity] newIdentity -> DEBU 344 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org1.example.com | [5d8 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551] getting state for chaincode exp02, key b, channel businesschannel +peer1.org2.example.com | [502 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [54d 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org1.example.com | [54e 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [172dbdf3]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [54f 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [550 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [172dbdf3]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org1.example.com | [551 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [172dbdf3]Move state message TRANSACTION +peer1.org1.example.com | [552 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [172dbdf3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [5d9 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [553 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5da 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Got state. Sending RESPONSE +peer0.org1.example.com | [5db 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]handleGetState serial send RESPONSE +peer1.org2.example.com | [503 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4038343f]sending state message TRANSACTION +peer1.org2.example.com | [504 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4038343f]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.509 UTC [msp] Validate -> DEBU 345 MSP Org1MSP validating identity +peer1.org1.example.com | [554 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [172dbdf3]sending state message TRANSACTION +peer0.org1.example.com | [5dc 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message PUT_STATE from shim +peer0.org1.example.com | [5dd 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [5de 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5df 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]state is ready +peer0.org1.example.com | [5e0 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [5e1 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [5e2 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message RESPONSE +orderer.example.com | 2018-01-14 11:45:32.509 UTC [common/config] validateMSP -> DEBU 346 Setting up MSP for org OrdererOrg +peer1.org1.example.com | [555 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [172dbdf3]Received message TRANSACTION from shim +peer1.org2.example.com | [505 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4038343f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [506 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4038343f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [507 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [508 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [509 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [5e3 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer1.org2.example.com | [50a 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | 2018-01-14 11:45:32.509 UTC [msp] NewBccspMsp -> DEBU 347 Creating BCCSP-based MSP instance +peer1.org1.example.com | [556 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [172dbdf3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [557 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [172dbdf3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org1.example.com | [558 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [559 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [55a 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org1.example.com | [55b 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [172dbdf3]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [55c 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [172dbdf3]Move state message COMPLETED +peer1.org1.example.com | [55d 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [172dbdf3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [55e 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [172dbdf3]send state message COMPLETED +peer1.org1.example.com | [55f 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [172dbdf3]Received message COMPLETED from shim +peer1.org1.example.com | [560 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [172dbdf3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [5e4 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [50b 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org2.example.com | [50c 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org2.example.com | [50d 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org2.example.com | [50e 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [128ed69d-ff52-4cc7-8733-eaff098644da] +peer1.org2.example.com | [50f 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [510 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [128ed69d-ff52-4cc7-8733-eaff098644da] +peer1.org2.example.com | [511 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org2.example.com | [512 01-14 11:46:20.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +peer1.org2.example.com | [513 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer1.org1.example.com | [561 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [172dbdf3-7360-4ca2-80e9-1c4f1e0e5fda]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.509 UTC [msp] Setup -> DEBU 348 Setting up MSP instance OrdererMSP +peer0.org1.example.com | [5e5 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message RESPONSE +peer0.org2.example.com | [5ee 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9bcbbd38]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [514 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4038343f]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [562 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:172dbdf3-7360-4ca2-80e9-1c4f1e0e5fda +peer1.org1.example.com | [563 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [564 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f95a2541-0184-4906-88a6-74b1d16f26af] +peer1.org1.example.com | [565 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [566 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [567 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc420354640), Data:(*common.BlockData)(0xc421d2e920), Metadata:(*common.BlockMetadata)(0xc421d2e960)}, doMVCCValidation=true +peer1.org1.example.com | [568 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | 2018-01-14 11:45:32.510 UTC [msp/identity] newIdentity -> DEBU 349 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer1.org2.example.com | [515 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4038343f]Move state message COMPLETED +peer1.org2.example.com | [516 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4038343f]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org1.example.com | [569 01-14 11:46:41.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [5ef 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]Move state message TRANSACTION +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.510 UTC [msp/identity] newIdentity -> DEBU 34a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [370 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [35d 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [35e 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [35f 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [371 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [3db 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -peer1.org1.example.com | [360 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [361 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [338 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [3dc 01-04 01:51:04.40 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [3dd 01-04 01:51:04.41 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [3de 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [3df 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [3e0 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [3e1 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [3e2 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [372 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.511 UTC [msp/identity] newIdentity -> DEBU 34b Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [517 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4038343f]send state message COMPLETED +peer1.org2.example.com | [518 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4038343f]Received message COMPLETED from shim +peer0.org1.example.com | [5e6 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message PUT_STATE from shim +peer0.org1.example.com | [5e7 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [5e8 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5e9 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]state is ready +peer0.org1.example.com | [5ea 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [5eb 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]enterBusyState trigger event RESPONSE +peer0.org1.example.com | [5ec 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message RESPONSE +peer0.org1.example.com | [5ed 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org2.example.com | [5f0 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd38]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [5f1 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [519 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4038343f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [5ee 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [56a 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org2.example.com | [5f2 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]sending state message TRANSACTION +peer1.org2.example.com | [51a 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4038343f-1600-47a3-9f35-18b02f2de1c1]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [5ef 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message RESPONSE +peer0.org1.example.com | [5f0 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message COMPLETED from shim +peer0.org1.example.com | [5f1 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [5f3 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]Received message TRANSACTION from shim +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [5f2 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [51b 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4038343f-1600-47a3-9f35-18b02f2de1c1 +peer0.org2.example.com | [5f4 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9bcbbd38]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [5f5 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9bcbbd38]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [5f3 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +peer1.org2.example.com | [51c 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [56b 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [5f6 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9bcbbd38]Sending GET_STATE +peer0.org2.example.com | [5f7 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]Received message GET_STATE from shim +peer0.org2.example.com | [5f8 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd38]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [5f9 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9bcbbd38]Received GET_STATE, invoking get state from ledger +peer0.org2.example.com | [5fa 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [5fb 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9bcbbd38] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org2.example.com | [5fc 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [5fd 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9bcbbd38]Got state. Sending RESPONSE +peer0.org2.example.com | [5fe 01-14 11:47:02.63 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9bcbbd38]handleGetState serial send RESPONSE +peer0.org2.example.com | [5ff 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]Received message RESPONSE from shim +peer0.org2.example.com | [600 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9bcbbd38]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [601 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9bcbbd38]before send +peer0.org1.example.com | [5f4 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [51d 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee, error Chaincode exp02 is already instantiated +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [5f5 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [56c 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] marked as valid by state validator +peer0.org2.example.com | [602 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9bcbbd38]GetState received payload RESPONSE +peer0.org2.example.com | [603 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [9bcbbd38]after send +peer0.org2.example.com | [604 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [9bcbbd38]Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [605 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [606 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]Move state message COMPLETED +peer0.org2.example.com | [607 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9bcbbd38]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [608 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]send state message COMPLETED +peer0.org2.example.com | [609 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]Received message COMPLETED from shim +peer0.org2.example.com | [60a 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd38]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [60b 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [60c 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f +peer0.org2.example.com | [60d 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [60e 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org2.example.com | [60f 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f channel id: businesschannel version: 1.0 +peer0.org2.example.com | [610 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f,syscc=false,proposal=0xc421c8f130,canname=exp02:1.0 +peer0.org2.example.com | [611 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer0.org2.example.com | [612 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [613 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer0.org2.example.com | [614 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9bcbbd38]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [51e 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [7044eb7b-905d-454a-b629-aae70b8e5991] +peer1.org2.example.com | [51f 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee returned error Chaincode exp02 is already instantiated +peer1.org1.example.com | [56d 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcd, 0x59, 0x35, 0x43, 0xb3, 0xfa, 0x14, 0xcb, 0x59, 0x18, 0x46, 0x89, 0x5f, 0xd3, 0xa0, 0x0, 0x87, 0xb9, 0x64, 0x3c, 0xe6, 0xb3, 0x98, 0x4d, 0x7a, 0xc5, 0x75, 0xe5, 0xbd, 0x79, 0xfa, 0x45} txOffsets= +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org1.example.com | [5f6 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [520 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org2.example.com | [615 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [5f7 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0c14dfd7-27c2-42b7-98cc-a6087dc9f74d] +peer1.org2.example.com | [521 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | txId=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 locPointer=offset=70, bytesLength=2855 +peer1.org1.example.com | ] +peer0.org2.example.com | [616 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [56e 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to index +peer1.org1.example.com | [56f 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx number:[0] ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to blockNumTranNum index +peer1.org2.example.com | [522 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421d86400), Data:(*common.BlockData)(0xc42210e400), Metadata:(*common.BlockMetadata)(0xc42210e440)}, doMVCCValidation=true +peer0.org1.example.com | [5f8 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org2.example.com | [617 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9bcbbd38]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer1.org1.example.com | [570 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54569], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org2.example.com | [523 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [5f9 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 channel id: businesschannel chaincode id: name:"exp02" +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [618 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]Move state message TRANSACTION +peer0.org2.example.com | [619 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd38]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [571 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +peer1.org2.example.com | [524 01-14 11:46:20.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +orderer.example.com | 2018-01-14 11:45:32.512 UTC [msp] Validate -> DEBU 34c MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:32.512 UTC [msp] Setup -> DEBU 34d Setting up the MSP manager (3 msps) +peer0.org1.example.com | [5fa 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org2.example.com | [61a 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [572 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [525 01-14 11:46:20.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x3e, 0xa5, 0xb9, 0x9c, 0xb8, 0xc5, 0x29, 0x6f, 0xda, 0xd3, 0xfd, 0xc3, 0x49, 0x31, 0x1d, 0xc8, 0xf5, 0x6d, 0xce, 0x76, 0x5e, 0x7f, 0x6e, 0x5c, 0xf0, 0x98, 0xb6, 0x7b, 0x85, 0xb8, 0x9, 0x2b} txOffsets= +orderer.example.com | 2018-01-14 11:45:32.512 UTC [msp] Setup -> DEBU 34e MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [5fb 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 channel id: businesschannel version: 1.0.2 +peer0.org2.example.com | [61b 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]sending state message TRANSACTION +peer1.org1.example.com | [573 01-14 11:47:01.36 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 +peer1.org2.example.com | txId=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee locPointer=offset=70, bytesLength=3395 +orderer.example.com | 2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 34f Adding to config map: [Groups] /Channel +peer1.org1.example.com | [574 01-14 11:47:01.36 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +peer1.org2.example.com | ] +peer0.org1.example.com | [5fc 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38,syscc=true,proposal=0xc42245de00,canname=escc:1.0.2 +peer0.org2.example.com | [61c 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]Received message GET_STATE from shim +orderer.example.com | 2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 350 Adding to config map: [Groups] /Channel/Orderer +peer1.org1.example.com | [575 01-14 11:47:01.36 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 +peer0.org1.example.com | [5fd 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org2.example.com | [61d 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd38]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [526 01-14 11:46:20.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to index +peer1.org1.example.com | [576 01-14 11:47:01.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 +orderer.example.com | 2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 351 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [61e 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [9bcbbd38]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [5fe 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [527 01-14 11:46:20.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx number:[0] ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to blockNumTranNum index +peer1.org1.example.com | [577 01-14 11:47:01.97 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [578 01-14 11:47:01.97 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-exp02-1.0) +peer1.org1.example.com | [579 01-14 11:47:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [57a 01-14 11:47:01.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org1.example.com | [57b 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [57c 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer1.org1.example.com | [57d 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org1.example.com | [57e 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org1.example.com | [57f 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer1.org1.example.com | [580 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer0.org2.example.com | [61f 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [5ff 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [600 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [528 01-14 11:46:20.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49893], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | 2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 352 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 353 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 354 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [620 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9bcbbd38] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [601 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [529 01-14 11:46:20.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +peer0.org2.example.com | [621 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +orderer.example.com | 2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 355 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 356 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [52a 01-14 11:46:20.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [581 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org1.example.com | [582 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [583 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [584 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Move state message READY +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 357 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [622 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9bcbbd38]Got state. Sending RESPONSE +peer0.org2.example.com | [623 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [9bcbbd38]handleGetState serial send RESPONSE +peer0.org2.example.com | [624 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]Received message COMPLETED from shim +peer0.org1.example.com | [602 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [603 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [604 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message TRANSACTION +peer0.org1.example.com | [605 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [606 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [607 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message TRANSACTION +peer0.org1.example.com | [608 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Received message TRANSACTION from shim +peer0.org1.example.com | [609 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [60a 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0aa15551]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [60b 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [52b 01-14 11:46:38.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d +peer0.org2.example.com | [625 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd38]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [626 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 358 Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [60c 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [60d 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [60e 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Move state message COMPLETED +peer1.org2.example.com | [52c 01-14 11:46:38.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 359 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35a Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [627 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f +peer0.org1.example.com | [60f 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [52d 01-14 11:46:38.00 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-exp02-1.0 +peer1.org2.example.com | [52e 01-14 11:46:38.09 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d +peer0.org2.example.com | [628 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [629 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [610 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]send state message COMPLETED +peer1.org1.example.com | [585 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: READY in state established +peer1.org1.example.com | [586 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [d6b54090]Entered state ready +peer1.org2.example.com | [52f 01-14 11:46:38.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-exp02-1.0 +peer1.org2.example.com | [530 01-14 11:46:38.58 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-exp02-1.0) +peer0.org1.example.com | [611 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35b Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [587 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da +peer0.org2.example.com | [62a 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [62b 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [46907a9c-f863-495d-8188-4a2c5b5bf580] +peer0.org2.example.com | [62c 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [531 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35c Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [588 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]sending state message READY +peer0.org1.example.com | [612 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [613 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [614 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +peer0.org1.example.com | [615 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [616 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [617 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [618 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [0c14dfd7-27c2-42b7-98cc-a6087dc9f74d] +peer0.org1.example.com | [619 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [62d 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f channel id: businesschannel chaincode id: name:"exp02" +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35d Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35e Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35f Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 360 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 361 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 362 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 363 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 364 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 365 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 366 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [61a 01-14 11:46:41.03 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer1.org2.example.com | [532 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +peer1.org2.example.com | [533 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [534 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +peer0.org2.example.com | [62e 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer0.org2.example.com | [62f 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f channel id: businesschannel version: 1.0.2 +peer0.org2.example.com | [630 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f,syscc=true,proposal=0xc421c8f130,canname=escc:1.0.2 +peer0.org2.example.com | [631 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 367 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 368 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [632 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [633 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org2.example.com | [535 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +peer0.org1.example.com | [61b 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org2.example.com | [634 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9bcbbd38]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [635 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 369 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 36a Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36b Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36c Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36d Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36e Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36f Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 370 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 371 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 372 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 373 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 374 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 375 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [61c 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [61d 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [61e 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +peer1.org2.example.com | [536 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer0.org2.example.com | [636 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 376 Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [61f 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42215b5f0 +peer1.org1.example.com | [589 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +peer1.org1.example.com | [58a 01-14 11:47:01.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer1.org1.example.com | [58b 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [58c 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org1.example.com | [58d 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b54090]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [58e 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [537 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +peer0.org1.example.com | [620 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +peer0.org2.example.com | [637 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [9bcbbd38]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [638 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]Move state message TRANSACTION +peer1.org2.example.com | [538 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +peer1.org1.example.com | [58f 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [590 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b54090]sendExecuteMsg trigger event TRANSACTION +peer1.org1.example.com | [591 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Move state message TRANSACTION +peer1.org1.example.com | [592 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [593 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [621 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [639 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd38]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [63a 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org2.example.com | [63b 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]sending state message TRANSACTION +peer1.org2.example.com | [539 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +peer1.org2.example.com | [53a 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [53b 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [622 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.516 UTC [common/configtx] addToMap -> DEBU 377 Adding to config map: [Values] /Channel/Consortium +peer0.org2.example.com | [63c 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]Received message TRANSACTION from shim +peer0.org2.example.com | [63d 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9bcbbd38]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [63e 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [9bcbbd38]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [63f 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [640 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org2.example.com | [641 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [642 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]Move state message COMPLETED +peer1.org2.example.com | [53c 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Move state message READY +peer0.org1.example.com | [623 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [594 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.516 UTC [common/configtx] addToMap -> DEBU 378 Adding to config map: [Groups] /Channel +peer0.org2.example.com | [643 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9bcbbd38]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [53d 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: READY in state established +peer0.org1.example.com | [624 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 2018-01-14 11:45:32.516 UTC [common/configtx] addToMap -> DEBU 379 Adding to config map: [Groups] /Channel/Application +peer0.org2.example.com | [644 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9bcbbd38]send state message COMPLETED +peer1.org1.example.com | [595 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Received message GET_STATE from shim +peer0.org1.example.com | [625 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [645 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9bcbbd38]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.520 UTC [common/configtx] addToMap -> DEBU 37a Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org1.example.com | [596 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [53e 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [34c84dd7]Entered state ready +peer1.org2.example.com | [53f 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 +peer1.org2.example.com | [540 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]sending state message READY +peer1.org2.example.com | [541 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed +peer1.org2.example.com | [542 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete +peer0.org1.example.com | [626 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42160b000, header channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +peer0.org2.example.com | [646 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd38]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37b Adding to config map: [Groups] /Channel/Application/Org2MSP +peer1.org2.example.com | [543 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [627 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [647 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [648 01-14 11:47:02.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9bcbbd3811e7d1e2b09924b59788b9ff96b5936b7d63a99c38ec6f4cbba2cd7f +peer1.org2.example.com | [544 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org1.example.com | [597 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [d6b54090]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [628 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | 2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37c Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [649 01-14 11:47:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [64a 01-14 11:47:02.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org2.example.com | [64b 01-14 11:47:02.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org2.example.com | [64c 01-14 11:47:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [46907a9c-f863-495d-8188-4a2c5b5bf580] +peer0.org2.example.com | [64d 01-14 11:47:02.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org2.example.com | [64e 01-14 11:47:04.42 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer0.org2.example.com | [64f 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer0.org2.example.com | [650 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [545 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34c84dd7]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [546 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [547 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [548 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34c84dd7]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [549 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Move state message TRANSACTION +peer0.org1.example.com | [629 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [651 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer1.org2.example.com | [54a 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [54b 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [54c 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]sending state message TRANSACTION +peer0.org1.example.com | [62a 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [652 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | 2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37d Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [598 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [54d 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Received message GET_STATE from shim +peer0.org1.example.com | [62b 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] +peer0.org2.example.com | [653 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b18a50 +peer1.org1.example.com | [599 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d6b54090] getting state for chaincode exp02, key a, channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37e Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [62c 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [54e 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [62d 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f9100b90-5d46-4137-9576-fe71cfca9a2c] +peer0.org2.example.com | [654 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" +orderer.example.com | 2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37f Adding to config map: [Values] /Channel/Consortium +peer1.org1.example.com | [59a 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [62e 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [54f 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [34c84dd7]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [62f 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [f9100b90-5d46-4137-9576-fe71cfca9a2c] +peer0.org2.example.com | [655 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [59b 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [d6b54090]Got state. Sending RESPONSE +peer1.org1.example.com | [59c 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [d6b54090]handleGetState serial send RESPONSE +orderer.example.com | 2018-01-14 11:45:32.523 UTC [policies] GetPolicy -> DEBU 380 Returning policy ChannelCreationPolicy for evaluation +peer0.org2.example.com | [656 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org2.example.com | [657 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org2.example.com | [658 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org2.example.com | [659 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org2.example.com | [65a 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42178b800, header channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" +peer0.org2.example.com | [65b 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [65c 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [65d 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [65e 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org2.example.com | [65f 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] +peer0.org2.example.com | [660 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [550 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [551 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [34c84dd7] getting state for chaincode exp02, key a, channel businesschannel +peer1.org2.example.com | [552 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [553 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [34c84dd7]Got state. Sending RESPONSE +peer1.org2.example.com | [554 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [34c84dd7]handleGetState serial send RESPONSE +peer1.org2.example.com | [555 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Received message COMPLETED from shim +peer0.org1.example.com | [630 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [631 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [71d4df85-8edb-4bc3-9692-f42130d2837e] +peer0.org1.example.com | [632 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=4bd4d0a0-7794-435d-bb60-634d52ea89d9,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [633 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 chaindID businesschannel +peer0.org1.example.com | [634 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org1.example.com | [635 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [636 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org2.example.com | [661 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [6bda0a16-5990-4b9e-8d12-14610ecb5d53] +peer0.org2.example.com | [662 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [663 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [6bda0a16-5990-4b9e-8d12-14610ecb5d53] +peer0.org2.example.com | [664 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [665 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b9711a2c-e2b0-4318-aa0f-eab8db2f844f] +peer0.org2.example.com | [666 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=fb10a8b0-dda6-4276-9c99-b51ef18b667c,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org2.example.com | [667 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 chaindID businesschannel +peer0.org2.example.com | [668 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer0.org2.example.com | [669 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [66a 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org2.example.com | [66b 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fb10a8b0]Inside sendExecuteMessage. Message TRANSACTION +peer0.org2.example.com | [66c 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [66d 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [fb10a8b0]sendExecuteMsg trigger event TRANSACTION +peer0.org2.example.com | [66e 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fb10a8b0]Move state message TRANSACTION +peer0.org2.example.com | [66f 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fb10a8b0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org2.example.com | [670 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [637 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4bd4d0a0]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [556 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.523 UTC [cauthdsl] func1 -> DEBU 381 0xc420150670 gate 1515930332523068164 evaluation starts +peer0.org1.example.com | [638 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org2.example.com | [671 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fb10a8b0]sending state message TRANSACTION +peer1.org1.example.com | [59d 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Received message COMPLETED from shim +peer1.org2.example.com | [557 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [639 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4bd4d0a0]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [63a 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bd4d0a0]Move state message TRANSACTION +peer1.org1.example.com | [59e 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [672 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb10a8b0]Received message TRANSACTION from shim +peer1.org2.example.com | [558 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 +peer0.org1.example.com | [63b 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bd4d0a0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [63c 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [63d 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bd4d0a0]sending state message TRANSACTION +peer0.org1.example.com | [63e 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bd4d0a0]Received message TRANSACTION from shim +peer0.org1.example.com | [63f 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bd4d0a0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [640 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4bd4d0a0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [673 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fb10a8b0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [674 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [fb10a8b0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [675 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer0.org2.example.com | [676 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [677 01-14 11:47:04.45 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org2.example.com | [678 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb10a8b0]Transaction completed. Sending COMPLETED +peer0.org2.example.com | [679 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb10a8b0]Move state message COMPLETED +peer0.org2.example.com | [67a 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fb10a8b0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [67b 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb10a8b0]send state message COMPLETED +peer0.org2.example.com | [67c 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [fb10a8b0]Received message COMPLETED from shim +peer1.org2.example.com | [559 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [641 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org1.example.com | [59f 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da]HandleMessage- COMPLETED. Notify +peer0.org2.example.com | [67d 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fb10a8b0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [55a 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.523 UTC [cauthdsl] func2 -> DEBU 382 0xc420150670 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [67e 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [fb10a8b0-dda6-4276-9c99-b51ef18b667c]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [55b 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [642 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [5a0 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da +peer1.org1.example.com | [5a1 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [5a2 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [5a3 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [5a4 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [86ee3ea4-c574-4f77-bcc0-fcdf3a86cc97] +peer1.org1.example.com | [5a5 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org1.example.com | [5a6 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da channel id: businesschannel chaincode id: name:"exp02" +peer1.org1.example.com | [5a7 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer1.org1.example.com | [5a9 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [5aa 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [5a8 01-14 11:47:02.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da channel id: businesschannel version: 1.0.2 +peer1.org1.example.com | [5ac 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da,syscc=true,proposal=0xc421b74a50,canname=escc:1.0.2 +peer1.org1.example.com | [5ad 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org1.example.com | [5ae 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org1.example.com | [5af 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org2.example.com | [55c 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [2fa4b2b3-4ec2-42f8-91eb-cbd2bf2fa407] +peer0.org1.example.com | [643 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [644 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bd4d0a0]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [645 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bd4d0a0]Move state message COMPLETED +peer0.org1.example.com | [646 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bd4d0a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org2.example.com | [67f 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:fb10a8b0-dda6-4276-9c99-b51ef18b667c +peer1.org2.example.com | [55d 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [55e 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 channel id: businesschannel chaincode id: name:"exp02" +orderer.example.com | 2018-01-14 11:45:32.523 UTC [cauthdsl] func2 -> DEBU 383 0xc420150670 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org1.example.com | [647 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bd4d0a0]send state message COMPLETED +peer0.org1.example.com | [648 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bd4d0a0]Received message COMPLETED from shim +peer0.org1.example.com | [649 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bd4d0a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [64a 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bd4d0a0-7794-435d-bb60-634d52ea89d9]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [64b 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4bd4d0a0-7794-435d-bb60-634d52ea89d9 +peer0.org1.example.com | [64c 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [55f 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer1.org2.example.com | [560 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-14 11:45:32.523 UTC [msp/identity] newIdentity -> DEBU 384 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.523 UTC [msp] SatisfiesPrincipal -> DEBU 385 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.523 UTC [cauthdsl] func2 -> DEBU 386 0xc420150670 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:32.523 UTC [msp/identity] Verify -> DEBU 387 Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +orderer.example.com | 00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +orderer.example.com | 2018-01-14 11:45:32.523 UTC [msp/identity] Verify -> DEBU 388 Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +orderer.example.com | 00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +orderer.example.com | 00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +orderer.example.com | 00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +orderer.example.com | 00000040 12 a6 8e 7f 16 50 |.....P| +peer1.org2.example.com | [561 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2,syscc=true,proposal=0xc421843d10,canname=escc:1.0.2 +peer0.org1.example.com | [64d 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [71d4df85-8edb-4bc3-9692-f42130d2837e] +peer0.org2.example.com | [680 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [681 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b9711a2c-e2b0-4318-aa0f-eab8db2f844f] +peer1.org1.example.com | [5b0 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b54090]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [64e 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [64f 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [562 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org2.example.com | [682 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [5b1 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [5ab 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [5b3 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [5b2 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org1.example.com | [5b4 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [d6b54090]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [650 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422194080), Data:(*common.BlockData)(0xc42218b120), Metadata:(*common.BlockMetadata)(0xc42218b160)}, doMVCCValidation=true +peer1.org2.example.com | [563 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org2.example.com | [683 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 2018-01-14 11:45:32.524 UTC [cauthdsl] func2 -> DEBU 389 0xc420150670 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [5b5 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Move state message TRANSACTION +peer0.org1.example.com | [651 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [684 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421a4a180), Data:(*common.BlockData)(0xc422161900), Metadata:(*common.BlockMetadata)(0xc422161940)}, doMVCCValidation=true +orderer.example.com | 2018-01-14 11:45:32.524 UTC [cauthdsl] func1 -> DEBU 38a 0xc420150670 gate 1515930332523068164 evaluation succeeds +peer1.org2.example.com | [564 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org1.example.com | [5b6 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [652 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [685 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org2.example.com | [686 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [565 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34c84dd7]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [566 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [653 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org2.example.com | [687 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org1.example.com | [5b7 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [567 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38b Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [654 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [688 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [5b8 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]sending state message TRANSACTION +peer1.org2.example.com | [568 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34c84dd7]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38c Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [655 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] marked as valid by state validator +peer0.org2.example.com | [689 01-14 11:47:04.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] marked as valid by state validator +peer1.org1.example.com | [5b9 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Received message TRANSACTION from shim +peer1.org2.example.com | [569 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Move state message TRANSACTION +peer0.org1.example.com | [656 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcd, 0x59, 0x35, 0x43, 0xb3, 0xfa, 0x14, 0xcb, 0x59, 0x18, 0x46, 0x89, 0x5f, 0xd3, 0xa0, 0x0, 0x87, 0xb9, 0x64, 0x3c, 0xe6, 0xb3, 0x98, 0x4d, 0x7a, 0xc5, 0x75, 0xe5, 0xbd, 0x79, 0xfa, 0x45} txOffsets= +peer0.org2.example.com | [68a 01-14 11:47:04.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x66, 0x95, 0xb9, 0xa7, 0xea, 0xde, 0xdc, 0xbc, 0x49, 0xd1, 0x7a, 0xf8, 0xb7, 0x8c, 0x68, 0x5, 0x62, 0x2d, 0x2f, 0x0, 0x6e, 0x1f, 0x51, 0x6, 0xe8, 0xa0, 0xe7, 0xba, 0x94, 0x12, 0xd3, 0x72} txOffsets= +orderer.example.com | 2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38d Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [5ba 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b54090]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [56a 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | txId=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 locPointer=offset=70, bytesLength=2855 +peer0.org2.example.com | txId=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 locPointer=offset=70, bytesLength=2856 +orderer.example.com | 2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38e Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [56b 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5bb 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [d6b54090]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | ] +peer0.org1.example.com | ] +peer1.org2.example.com | [56c 01-14 11:46:38.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]sending state message TRANSACTION +peer1.org1.example.com | [5bc 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org2.example.com | [68b 01-14 11:47:04.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to index +orderer.example.com | 2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38f Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [5bd 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer0.org1.example.com | [657 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to index +peer1.org2.example.com | [56d 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | 2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 390 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [658 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx number:[0] ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to blockNumTranNum index +peer1.org1.example.com | [5bf 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org2.example.com | [56e 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [68c 01-14 11:47:04.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx number:[0] ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to blockNumTranNum index +peer0.org1.example.com | [659 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54569], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org1.example.com | [5c0 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org2.example.com | [570 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +orderer.example.com | 2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 391 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [56f 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Received message TRANSACTION from shim +peer0.org1.example.com | [65a 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +peer0.org2.example.com | [68d 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59245], isChainEmpty=[false], lastBlockNumber=[6] +peer1.org2.example.com | [571 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34c84dd7]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [5be 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 392 Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [65b 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [572 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [34c84dd7]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org2.example.com | [68e 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer1.org2.example.com | [573 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer1.org1.example.com | [5c1 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 393 Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [65c 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [575 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [574 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer1.org2.example.com | [576 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org2.example.com | [68f 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 394 Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [5c3 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer1.org2.example.com | [577 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +peer1.org2.example.com | [579 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [578 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +peer0.org2.example.com | [690 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [65d 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [5c2 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [57b 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [65e 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org2.example.com | [691 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 395 Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [5c5 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]Move state message COMPLETED +peer1.org2.example.com | [57c 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [65f 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [692 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [5c6 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [d6b54090]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [57a 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 396 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 397 Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [57d 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]Move state message COMPLETED +peer1.org1.example.com | [5c7 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [d6b54090]send state message COMPLETED +peer0.org2.example.com | [693 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 398 Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [660 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org2.example.com | [57f 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 399 Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [5c4 01-14 11:47:02.01 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [580 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org2.example.com | [694 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [661 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 39a Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [581 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [695 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer1.org1.example.com | [5c9 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [662 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 39b Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [696 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [5c8 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [d6b54090]Received message COMPLETED from shim +peer1.org2.example.com | [57e 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34c84dd7]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [663 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 39c Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [5ca 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer0.org2.example.com | [697 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +peer0.org1.example.com | [664 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer1.org2.example.com | [582 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34c84dd7]send state message COMPLETED +peer0.org2.example.com | [698 01-14 11:47:04.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +peer1.org1.example.com | [5cc 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [665 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 39d Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [583 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34c84dd7]Received message COMPLETED from shim +peer0.org2.example.com | [699 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org1.example.com | [5cb 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [666 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/configtx] processConfig -> DEBU 39e Beginning new config for channel businesschannel +peer1.org2.example.com | [584 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [5ce 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] NewStandardValues -> DEBU 39f Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [667 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org1.example.com | [5cf 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:d6b54090a29f6444edfb267fedf0b1ccf4bf2ed462fe6a3e646ae1d1b4d562da +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a0 Processing field: HashingAlgorithm +peer0.org2.example.com | [69a 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [585 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [668 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [5d0 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org2.example.com | [69b 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +peer1.org2.example.com | [586 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:34c84dd7b220c85c7838dfa48bdcbc44b2a6c856dd6e1d79960b7c4f33d6eac2 +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a1 Processing field: BlockDataHashingStructure +peer0.org1.example.com | [669 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer0.org2.example.com | [69c 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer1.org1.example.com | [5cd 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a2 Processing field: OrdererAddresses +peer1.org2.example.com | [587 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a3 Processing field: Consortium +peer0.org1.example.com | [66a 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org1.example.com | [5d1 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3a4 Proposed new policy Readers for Channel +peer0.org2.example.com | [69d 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +peer1.org2.example.com | [588 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer1.org1.example.com | [5d2 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [66b 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422684870 +orderer.example.com | 2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3a5 Proposed new policy Writers for Channel +peer1.org2.example.com | [589 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [66c 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3a6 Proposed new policy Admins for Channel +peer1.org2.example.com | [58a 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2fa4b2b3-4ec2-42f8-91eb-cbd2bf2fa407] +peer1.org1.example.com | [5d3 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [86ee3ea4-c574-4f77-bcc0-fcdf3a86cc97] +peer0.org1.example.com | [66d 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [58b 01-14 11:46:38.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] NewStandardValues -> DEBU 3a7 Initializing protos for *config.OrdererProtos +peer0.org1.example.com | [66e 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org1.example.com | [5d4 01-14 11:47:02.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [58c 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a8 Processing field: ConsensusType +peer0.org1.example.com | [66f 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [58d 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a9 Processing field: BatchSize +peer0.org1.example.com | [670 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [5d5 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer1.org2.example.com | [58e 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3aa Processing field: BatchTimeout +peer1.org1.example.com | [5d6 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [671 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4222f3270, header 0xc4226848a0 +peer1.org2.example.com | [58f 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b71770 +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3ab Processing field: KafkaBrokers +peer0.org1.example.com | [672 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org2.example.com | [590 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +peer1.org1.example.com | [5d7 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | 2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3ac Processing field: ChannelRestrictions +peer0.org1.example.com | [673 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e +peer1.org1.example.com | [5d8 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219f2330 +peer0.org1.example.com | [674 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e] +peer1.org2.example.com | [591 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | 2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3ad Proposed new policy Admins for Orderer +peer1.org1.example.com | [5d9 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" +orderer.example.com | 2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3ae Proposed new policy BlockValidation for Orderer +peer1.org1.example.com | [5da 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [675 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [592 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3af Proposed new policy Readers for Orderer +peer0.org1.example.com | [676 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [084f3326-7b02-4f09-bf4b-cf4b65b01448] +peer1.org1.example.com | [5db 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer1.org2.example.com | [593 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b0 Proposed new policy Writers for Orderer +peer1.org1.example.com | [5dc 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer0.org1.example.com | [677 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e channel id: businesschannel +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3b1 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [594 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [678 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e,syscc=true,proposal=0xc4222f3270,canname=lscc:1.0.2 +peer1.org1.example.com | [5dd 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3b2 Processing field: MSP +peer0.org1.example.com | [679 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [595 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org1.example.com | [5de 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b3 Proposed new policy Readers for OrdererOrg +peer1.org2.example.com | [596 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4214ee000, header channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +peer1.org1.example.com | [5df 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421adc000, header channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b4 Proposed new policy Writers for OrdererOrg +peer0.org1.example.com | [67a 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [597 01-14 11:46:41.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [5e0 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [67b 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b5 Proposed new policy Admins for OrdererOrg +peer1.org2.example.com | [598 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [67c 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [5e1 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3b6 Initializing protos for *struct {} +peer1.org2.example.com | [599 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [5e2 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [67d 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [59a 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org1.example.com | [5e3 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer0.org1.example.com | [67e 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b7 Proposed new policy Readers for Application +peer1.org2.example.com | [59b 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] +peer1.org1.example.com | [5e4 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] +peer0.org1.example.com | [67f 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b8 Proposed new policy Admins for Application +peer1.org1.example.com | [5e5 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [680 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b9 Proposed new policy Writers for Application +peer1.org1.example.com | [5e6 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [8f2f0df8-5d5a-4eba-97f4-e3b6adb8f38a] +peer1.org2.example.com | [59c 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3ba Initializing protos for *config.OrganizationProtos +peer1.org1.example.com | [5e7 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [681 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [59d 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [71075ea6-9e23-44f1-83eb-9856ab17f942] +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3bb Processing field: MSP +peer1.org1.example.com | [5e8 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [8f2f0df8-5d5a-4eba-97f4-e3b6adb8f38a] +peer0.org1.example.com | [682 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [59e 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [5e9 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3bc Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [683 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]sending state message TRANSACTION +peer1.org2.example.com | [59f 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [71075ea6-9e23-44f1-83eb-9856ab17f942] +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3bd Processing field: AnchorPeers +peer1.org2.example.com | [5a0 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [5ea 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5bfa5ef4-be4b-45db-9a31-4d9f3394db5a] +peer1.org2.example.com | [5a1 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f051d387-204b-4538-84ef-53a82164e92f] +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3be Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [684 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Received message TRANSACTION from shim +peer1.org1.example.com | [5eb 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=ac5dd404-e414-412f-9c48-99e0e3c38aae,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [5a2 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=e5b01cea-1bfb-457a-8fdd-099fbcefd7e2,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org1.example.com | [5ec 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 chaindID businesschannel +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3bf Processing field: MSP +peer0.org1.example.com | [685 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [5ed 01-14 11:47:04.51 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [5a3 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 chaindID businesschannel +peer0.org1.example.com | [686 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55525944]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [5a4 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3c0 Proposed new policy Admins for Org1MSP +peer1.org1.example.com | [5ee 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [5a5 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3c1 Proposed new policy Readers for Org1MSP +peer1.org1.example.com | [5ef 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer0.org1.example.com | [687 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55525944]Sending GET_STATE +peer1.org2.example.com | [5a6 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3c2 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3c3 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3c4 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3c5 Initializing protos for *config.ApplicationOrgProtos +peer1.org1.example.com | [5f0 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ac5dd404]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3c6 Processing field: AnchorPeers +peer0.org1.example.com | [688 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message GET_STATE from shim +peer1.org2.example.com | [5a7 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e5b01cea]Inside sendExecuteMessage. Message TRANSACTION +peer1.org1.example.com | [5f1 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3c7 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [689 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [5f2 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ac5dd404]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3c8 Processing field: MSP +peer0.org1.example.com | [68a 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [55525944]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [5a8 01-14 11:46:41.18 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3c9 Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [68b 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org1.example.com | [5f3 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ac5dd404]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.528 UTC [policies] ProposePolicy -> DEBU 3ca Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.528 UTC [policies] ProposePolicy -> DEBU 3cb Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.528 UTC [common/config] validateMSP -> DEBU 3cc Setting up MSP for org OrdererOrg +peer1.org2.example.com | [5a9 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e5b01cea]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [68c 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55525944] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [5f4 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ac5dd404]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5aa 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5b01cea]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.528 UTC [msp] NewBccspMsp -> DEBU 3cd Creating BCCSP-based MSP instance +peer0.org1.example.com | [68d 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [5ab 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5b01cea]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org1.example.com | [5f5 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.528 UTC [msp] Setup -> DEBU 3ce Setting up MSP instance OrdererMSP +peer1.org2.example.com | [5ac 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [68e 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55525944]Got state. Sending RESPONSE +peer1.org1.example.com | [5f6 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ac5dd404]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.528 UTC [msp/identity] newIdentity -> DEBU 3cf Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [68f 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [55525944]handleGetState serial send RESPONSE +peer1.org2.example.com | [5ad 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5b01cea]sending state message TRANSACTION +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer1.org1.example.com | [5f7 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac5dd404]Received message TRANSACTION from shim +peer0.org1.example.com | [690 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Received message RESPONSE from shim +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [5ae 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5b01cea]Received message TRANSACTION from shim +peer0.org1.example.com | [691 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [5f8 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ac5dd404]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer1.org2.example.com | [5af 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5b01cea]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer0.org1.example.com | [692 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [55525944]before send +peer1.org1.example.com | [5f9 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ac5dd404]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [5b0 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e5b01cea]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [693 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [55525944]after send +peer1.org1.example.com | [5fa 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [5b1 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [694 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [55525944]Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [5fb 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [5b2 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer1.org1.example.com | [5fc 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [695 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55525944]GetState received payload RESPONSE +peer1.org2.example.com | [5b3 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer0.org1.example.com | [696 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [5b4 01-14 11:46:41.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5b01cea]Transaction completed. Sending COMPLETED +peer1.org1.example.com | [5fd 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac5dd404]Transaction completed. Sending COMPLETED +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer1.org2.example.com | [5b5 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5b01cea]Move state message COMPLETED +peer1.org1.example.com | [5fe 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac5dd404]Move state message COMPLETED +peer0.org1.example.com | [697 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Move state message COMPLETED +peer0.org1.example.com | [698 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5b6 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e5b01cea]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [699 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]send state message COMPLETED +peer1.org1.example.com | [5ff 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ac5dd404]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [5b7 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e5b01cea]send state message COMPLETED +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer0.org1.example.com | [69a 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message COMPLETED from shim +peer1.org1.example.com | [600 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ac5dd404]send state message COMPLETED +peer1.org2.example.com | [5b8 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e5b01cea]Received message COMPLETED from shim +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [69b 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5b9 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5b01cea]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.529 UTC [msp/identity] newIdentity -> DEBU 3d0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [601 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ac5dd404]Received message COMPLETED from shim +peer0.org1.example.com | [69c 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5ba 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e5b01cea-1bfb-457a-8fdd-099fbcefd7e2]HandleMessage- COMPLETED. Notify +peer1.org1.example.com | [602 01-14 11:47:04.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ac5dd404]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [69d 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [603 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ac5dd404-e414-412f-9c48-99e0e3c38aae]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5bb 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e5b01cea-1bfb-457a-8fdd-099fbcefd7e2 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [5bc 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org1.example.com | [604 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ac5dd404-e414-412f-9c48-99e0e3c38aae +peer0.org1.example.com | [69e 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [5bd 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [f051d387-204b-4538-84ef-53a82164e92f] +peer1.org1.example.com | [605 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [69f 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org2.example.com | [5be 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org1.example.com | [606 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5bfa5ef4-be4b-45db-9a31-4d9f3394db5a] +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [5bf 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [607 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer0.org1.example.com | [6a0 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e channel id: businesschannel version: 1.0 +peer1.org2.example.com | [5c0 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4228b5b00), Data:(*common.BlockData)(0xc42145e5e0), Metadata:(*common.BlockMetadata)(0xc42145e620)}, doMVCCValidation=true +orderer.example.com | 2018-01-14 11:45:32.529 UTC [msp/identity] newIdentity -> DEBU 3d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [608 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [5c1 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer1.org1.example.com | [609 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4225273c0), Data:(*common.BlockData)(0xc421597620), Metadata:(*common.BlockMetadata)(0xc421597660)}, doMVCCValidation=true +orderer.example.com | 2018-01-14 11:45:32.529 UTC [msp] Validate -> DEBU 3d2 MSP OrdererMSP validating identity +peer1.org2.example.com | [5c2 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [6a1 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e,syscc=false,proposal=0xc4222f3270,canname=exp02:1.0 +orderer.example.com | 2018-01-14 11:45:32.530 UTC [common/config] Validate -> DEBU 3d3 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-14 11:45:32.530 UTC [common/config] validateMSP -> DEBU 3d4 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:32.530 UTC [msp] NewBccspMsp -> DEBU 3d5 Creating BCCSP-based MSP instance +peer1.org1.example.com | [60a 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [6a2 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer1.org2.example.com | [5c3 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +orderer.example.com | 2018-01-14 11:45:32.530 UTC [msp] Setup -> DEBU 3d6 Setting up MSP instance Org1MSP +peer1.org1.example.com | [60b 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [6a3 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.530 UTC [msp/identity] newIdentity -> DEBU 3d7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [5c4 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [60c 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [6a4 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org2.example.com | [5c5 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] marked as valid by state validator +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org1.example.com | [60d 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [6a5 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [5c6 01-14 11:46:41.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcd, 0x59, 0x35, 0x43, 0xb3, 0xfa, 0x14, 0xcb, 0x59, 0x18, 0x46, 0x89, 0x5f, 0xd3, 0xa0, 0x0, 0x87, 0xb9, 0x64, 0x3c, 0xe6, 0xb3, 0x98, 0x4d, 0x7a, 0xc5, 0x75, 0xe5, 0xbd, 0x79, 0xfa, 0x45} txOffsets= +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer0.org1.example.com | [6a6 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org1.example.com | [60e 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] marked as valid by state validator +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +peer0.org1.example.com | [6a7 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | txId=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 locPointer=offset=70, bytesLength=2855 +peer1.org1.example.com | [60f 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x66, 0x95, 0xb9, 0xa7, 0xea, 0xde, 0xdc, 0xbc, 0x49, 0xd1, 0x7a, 0xf8, 0xb7, 0x8c, 0x68, 0x5, 0x62, 0x2d, 0x2f, 0x0, 0x6e, 0x1f, 0x51, 0x6, 0xe8, 0xa0, 0xe7, 0xba, 0x94, 0x12, 0xd3, 0x72} txOffsets= +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [6a8 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.530 UTC [msp/identity] newIdentity -> DEBU 3d8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | ] +peer0.org1.example.com | [6a9 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Move state message TRANSACTION +peer1.org1.example.com | txId=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 locPointer=offset=70, bytesLength=2856 +orderer.example.com | 2018-01-14 11:45:32.531 UTC [msp/identity] newIdentity -> DEBU 3d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [6aa 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | ] +peer1.org2.example.com | [5c7 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to index +peer0.org1.example.com | [6ab 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | [6ac 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]sending state message TRANSACTION +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [610 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to index +peer0.org1.example.com | [6ad 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message GET_STATE from shim +peer1.org2.example.com | [5c8 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx number:[0] ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to blockNumTranNum index +orderer.example.com | 2018-01-14 11:45:32.531 UTC [msp] Validate -> DEBU 3da MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.531 UTC [common/config] Validate -> DEBU 3db Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:32.531 UTC [common/config] validateMSP -> DEBU 3dc Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:32.531 UTC [msp] NewBccspMsp -> DEBU 3dd Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.531 UTC [msp] Setup -> DEBU 3de Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:32.532 UTC [msp/identity] newIdentity -> DEBU 3df Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [6ae 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [611 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx number:[0] ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to blockNumTranNum index +peer1.org2.example.com | [5c9 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54569], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer0.org1.example.com | [6af 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [55525944]Received GET_STATE, invoking get state from ledger +peer1.org1.example.com | [612 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59245], isChainEmpty=[false], lastBlockNumber=[6] +peer1.org2.example.com | [5ca 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer0.org1.example.com | [6b0 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer1.org2.example.com | [5cb 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [6b1 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55525944] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [6b2 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [6b3 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55525944]Got state. Sending RESPONSE +orderer.example.com | SCjyRdD3aQ== +peer1.org1.example.com | [613 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer0.org1.example.com | [6b4 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [55525944]handleGetState serial send RESPONSE +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [5cc 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [614 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [6b5 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message COMPLETED from shim +peer0.org1.example.com | [6b6 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [6b7 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6b8 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e +peer1.org1.example.com | [615 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [5cd 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +orderer.example.com | 2018-01-14 11:45:32.532 UTC [msp/identity] newIdentity -> DEBU 3e0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [6b9 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [6ba 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [5ce 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [616 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [6bb 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | [617 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org1.example.com | [618 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [6bc 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [084f3326-7b02-4f09-bf4b-cf4b65b01448] +peer1.org2.example.com | [5cf 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [619 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +orderer.example.com | 2018-01-14 11:45:32.532 UTC [msp/identity] newIdentity -> DEBU 3e1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [5d0 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org1.example.com | [61a 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [61b 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [6bd 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [5d1 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org1.example.com | [61c 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [6be 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e channel id: businesschannel chaincode id: name:"exp02" +peer1.org2.example.com | [5d2 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer1.org1.example.com | [61d 01-14 11:47:04.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org1.example.com | [61e 01-14 11:47:04.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer0.org1.example.com | [6bf 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer1.org1.example.com | [61f 01-14 11:47:04.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [5d3 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [620 01-14 11:47:04.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | [621 01-14 11:47:04.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [6c0 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e channel id: businesschannel version: 1.0.2 +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer1.org2.example.com | [5d4 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +peer1.org1.example.com | [622 01-14 11:47:04.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org1.example.com | [6c1 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e,syscc=true,proposal=0xc4222f3270,canname=escc:1.0.2 +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer1.org2.example.com | [5d5 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org1.example.com | [6c2 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org2.example.com | [5d6 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [6c3 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [6c4 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [6c5 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [5d7 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [5d8 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.533 UTC [msp] Validate -> DEBU 3e2 MSP Org2MSP validating identity +peer0.org1.example.com | [6c6 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.533 UTC [msp] Setup -> DEBU 3e3 Setting up the MSP manager (3 msps) +peer1.org2.example.com | [5d9 01-14 11:46:41.21 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.533 UTC [msp] Setup -> DEBU 3e4 MSP manager setup complete, setup 3 msps +peer1.org2.example.com | [5da 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.533 UTC [policies] GetPolicy -> DEBU 3e5 Returning policy Readers for evaluation +peer0.org1.example.com | [6c7 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3e6 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +peer1.org2.example.com | [5db 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4223290b0 +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3e7 Returning policy Writers for evaluation +peer0.org1.example.com | [6c8 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [5dc 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [6c9 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3e8 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3e9 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3ea In commit adding relative sub-policy OrdererOrg/Admins to Orderer +peer0.org1.example.com | [6ca 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3eb Returning policy Admins for evaluation +peer1.org2.example.com | [5dd 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3ec Returning policy Writers for evaluation +peer0.org1.example.com | [6cb 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [5de 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3ed Returning policy Readers for evaluation +peer0.org1.example.com | [6cc 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3ee Returning policy Writers for evaluation +peer0.org1.example.com | [6cd 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3ef Returning policy Admins for evaluation +peer0.org1.example.com | [6ce 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3f0 In commit adding relative sub-policy Org1MSP/Admins to Application +peer1.org2.example.com | [5df 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [6cf 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55525944]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [5e0 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3f1 Returning policy Readers for evaluation +peer0.org1.example.com | [6d0 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3f2 In commit adding relative sub-policy Org1MSP/Readers to Application +peer1.org2.example.com | [5e1 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4220e65a0, header 0xc4223290e0 +peer0.org1.example.com | [6d1 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [5e2 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [6d2 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3f3 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3f4 In commit adding relative sub-policy Org1MSP/Writers to Application +peer0.org1.example.com | [6d3 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Move state message COMPLETED +peer1.org2.example.com | [5e3 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1 +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3f5 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3f6 In commit adding relative sub-policy Org2MSP/Admins to Application +peer1.org2.example.com | [5e4 01-14 11:47:02.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1] +peer0.org1.example.com | [6d4 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3f7 Returning policy Readers for evaluation +peer1.org2.example.com | [5e5 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [5e6 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [549ce2a3-9dac-422b-9898-c0a5ff67d9bf] +peer0.org1.example.com | [6d5 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] CommitProposals -> DEBU 3f8 In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3f9 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] CommitProposals -> DEBU 3fa In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3fb Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3fc Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3fd Returning policy Admins for evaluation +peer1.org2.example.com | [5e7 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1 channel id: businesschannel +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3fe Returning policy Admins for evaluation +peer1.org2.example.com | [5e8 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1,syscc=true,proposal=0xc4220e65a0,canname=lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3ff Returning policy Writers for evaluation +peer0.org1.example.com | [6d6 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message COMPLETED from shim +peer1.org2.example.com | [5e9 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 400 Returning policy Writers for evaluation +peer1.org2.example.com | [5ea 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 401 Returning policy OrdererOrg/Writers for evaluation +peer1.org2.example.com | [5eb 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.535 UTC [policies] CommitProposals -> DEBU 402 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer1.org2.example.com | [5ec 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1e5db8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 403 Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [6d7 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5ed 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 404 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer1.org2.example.com | [5ee 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 405 Returning policy Admins for evaluation +peer0.org1.example.com | [6d8 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [5ef 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1e5db8]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 406 In commit adding relative sub-policy Orderer/Admins to Channel +peer1.org2.example.com | [5f0 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]Move state message TRANSACTION +peer1.org2.example.com | [5f1 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [5f2 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 407 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 408 In commit adding relative sub-policy Orderer/BlockValidation to Channel +peer1.org2.example.com | [5f3 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]sending state message TRANSACTION +peer0.org1.example.com | [6d9 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 409 Returning policy Readers for evaluation +peer1.org2.example.com | [5f4 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]Received message TRANSACTION from shim +peer1.org2.example.com | [5f5 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1e5db8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5f6 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3e1e5db8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 40a In commit adding relative sub-policy Orderer/Readers to Channel +peer1.org2.example.com | [5f7 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3e1e5db8]Sending GET_STATE +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 40b Returning policy Writers for evaluation +peer1.org2.example.com | [5f8 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]Received message GET_STATE from shim +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 40c In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [6da 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [5f9 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 40d Returning policy OrdererOrg/Readers for evaluation +peer1.org2.example.com | [5fa 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3e1e5db8]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [6db 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 40e In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 40f Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 410 In commit adding relative sub-policy Application/Readers to Channel +peer1.org2.example.com | [5fb 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 411 Returning policy Admins for evaluation +peer0.org1.example.com | [6dc 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 412 In commit adding relative sub-policy Application/Admins to Channel +peer1.org2.example.com | [5fc 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3e1e5db8] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 413 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 414 In commit adding relative sub-policy Application/Writers to Channel +peer1.org2.example.com | [5fd 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [6dd 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [084f3326-7b02-4f09-bf4b-cf4b65b01448] +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 415 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 416 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 417 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 418 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 419 Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 41a In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 41b Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 41c In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer0.org1.example.com | [6de 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 41d Returning policy Org2MSP/Admins for evaluation +peer1.org2.example.com | [5fe 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3e1e5db8]Got state. Sending RESPONSE +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 41e In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 41f Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 420 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 421 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 422 Returning policy Readers for evaluation +peer0.org1.example.com | [6df 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 423 Returning policy Writers for evaluation +peer1.org2.example.com | [5ff 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3e1e5db8]handleGetState serial send RESPONSE +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 424 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 425 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 426 Returning policy Admins for evaluation +peer0.org1.example.com | [6e0 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4218a1380 +peer1.org2.example.com | [600 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]Received message RESPONSE from shim +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 427 Returning policy Readers for evaluation +peer0.org1.example.com | [6e1 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [601 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1e5db8]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 428 As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [6e2 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 429 Returning policy Writers for evaluation +peer0.org1.example.com | [6e3 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer1.org2.example.com | [602 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3e1e5db8]before send +peer0.org1.example.com | [6e4 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [603 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3e1e5db8]after send +peer0.org1.example.com | [6e5 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [605 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3e1e5db8]GetState received payload RESPONSE +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 42a As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [6e6 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422167220, header 0xc4218a13b0 +peer1.org2.example.com | [606 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 42b Returning policy Application/Readers for evaluation +peer0.org1.example.com | [6e7 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [604 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [3e1e5db8]Received RESPONSE, communicated (state:ready) +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 42c As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 42d Returning policy Application/Writers for evaluation +peer1.org2.example.com | [607 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]Move state message COMPLETED +peer0.org1.example.com | [6e8 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 42e As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [608 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1e5db8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [6e9 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d] +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 42f Returning policy Application/Admins for evaluation +peer0.org1.example.com | [6ea 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [609 01-14 11:47:02.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 430 As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [60a 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]Received message COMPLETED from shim +peer0.org1.example.com | [6eb 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b87acb1e-d560-4383-97ed-9f14326c4e85] +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 431 Returning policy Orderer/BlockValidation for evaluation +peer1.org2.example.com | [60b 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 432 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [6ec 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d channel id: businesschannel +orderer.example.com | 2018-01-14 11:45:32.537 UTC [common/config] NewStandardValues -> DEBU 433 Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [60c 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [6ed 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-14 11:45:32.537 UTC [common/config] initializeProtosStruct -> DEBU 434 Processing field: HashingAlgorithm +peer1.org2.example.com | [60d 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1 +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/config] initializeProtosStruct -> DEBU 435 Processing field: BlockDataHashingStructure +peer0.org1.example.com | [6ee 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d,syscc=true,proposal=0xc422167220,canname=lscc:1.0.2 +peer0.org1.example.com | [6ef 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [60e 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/config] initializeProtosStruct -> DEBU 436 Processing field: OrdererAddresses +peer0.org1.example.com | [6f0 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [60f 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/config] initializeProtosStruct -> DEBU 437 Processing field: Consortium +peer0.org1.example.com | [6f1 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [610 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1 channel id: businesschannel version: 1.0 +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 438 Adding to config map: [Groups] /Channel +peer0.org1.example.com | [6f2 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53f41b12]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [611 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1,syscc=false,proposal=0xc4220e65a0,canname=exp02:1.0 +peer0.org1.example.com | [6f3 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [612 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 439 Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43a Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [6f4 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43b Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [613 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [614 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43f Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 440 Adding to config map: [Values] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [6f5 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53f41b12]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [615 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1e5db8]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 441 Adding to config map: [Values] /Channel/Orderer/BatchSize +peer0.org1.example.com | [6f6 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 442 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [616 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [617 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [6f7 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 443 Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [6f8 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 444 Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [618 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1e5db8]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [6f9 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 445 Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 446 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [6fa 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Received message TRANSACTION from shim +peer1.org2.example.com | [619 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 447 Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [6fb 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [6fc 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [53f41b12]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [61a 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 448 Adding to config map: [Groups] /Channel/Application/Org1MSP +peer1.org2.example.com | [61b 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [6fd 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [53f41b12]Sending GET_STATE +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 449 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [61c 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44a Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [61d 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]Received message GET_STATE from shim +peer0.org1.example.com | [6fe 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Received message GET_STATE from shim +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [61e 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db8]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [6ff 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [61f 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3e1e5db8]Received GET_STATE, invoking get state from ledger +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44d Adding to config map: [Groups] /Channel/Application/Org2MSP +peer0.org1.example.com | [700 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [53f41b12]Received GET_STATE, invoking get state from ledger +orderer.example.com | 2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [620 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [701 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [702 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [53f41b12] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org2.example.com | [621 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3e1e5db8] getting state for chaincode exp02, key a, channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 44f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [622 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [703 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 450 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [704 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [53f41b12]Got state. Sending RESPONSE +peer1.org2.example.com | [623 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3e1e5db8]Got state. Sending RESPONSE +peer1.org2.example.com | [624 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3e1e5db8]handleGetState serial send RESPONSE +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 451 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [705 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [53f41b12]handleGetState serial send RESPONSE +peer1.org2.example.com | [625 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 452 Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [626 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 453 Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [706 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Received message RESPONSE from shim +peer1.org2.example.com | [627 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 454 Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [628 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1 +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 455 Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [629 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [62a 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [707 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [62b 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [62c 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [549ce2a3-9dac-422b-9898-c0a5ff67d9bf] +peer0.org1.example.com | [708 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [53f41b12]before send +peer1.org2.example.com | [62d 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 456 Adding to config map: [Values] /Channel/Consortium +peer1.org2.example.com | [62e 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1 channel id: businesschannel chaincode id: name:"exp02" +peer0.org1.example.com | [709 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [53f41b12]after send +peer1.org2.example.com | [62f 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 457 Adding to config map: [Values] /Channel/OrdererAddresses +peer0.org1.example.com | [70a 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [53f41b12]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [630 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1 channel id: businesschannel version: 1.0.2 +peer1.org2.example.com | [631 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1,syscc=true,proposal=0xc4220e65a0,canname=escc:1.0.2 +peer0.org1.example.com | [70b 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [53f41b12]GetState received payload RESPONSE +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 458 Adding to config map: [Values] /Channel/HashingAlgorithm +peer1.org2.example.com | [632 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 459 Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [70c 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [633 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/configtx] addToMap -> DEBU 45a Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [634 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [70d 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Move state message COMPLETED +peer1.org2.example.com | [635 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1e5db8]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [636 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/configtx] addToMap -> DEBU 45b Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [70e 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [637 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [70f 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/configtx] processConfig -> DEBU 45c Beginning new config for channel businesschannel +peer1.org2.example.com | [638 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1e5db8]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [710 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Received message COMPLETED from shim +peer1.org2.example.com | [639 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/config] NewStandardValues -> DEBU 45d Initializing protos for *config.ChannelProtos +peer1.org2.example.com | [63a 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [711 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [63b 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/config] initializeProtosStruct -> DEBU 45e Processing field: HashingAlgorithm +peer1.org2.example.com | [63c 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]sending state message TRANSACTION +peer0.org1.example.com | [712 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [63d 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/config] initializeProtosStruct -> DEBU 45f Processing field: BlockDataHashingStructure +peer0.org1.example.com | [713 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d +peer1.org2.example.com | [63e 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1e5db8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/config] initializeProtosStruct -> DEBU 460 Processing field: OrdererAddresses +peer0.org1.example.com | [714 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [63f 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3e1e5db8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/config] initializeProtosStruct -> DEBU 461 Processing field: Consortium +peer1.org2.example.com | [640 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | 2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 462 Proposed new policy Readers for Channel +peer1.org2.example.com | [641 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [642 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [643 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]Move state message COMPLETED +peer1.org2.example.com | [644 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1e5db8]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [645 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1e5db8]send state message COMPLETED +peer0.org1.example.com | [715 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 463 Proposed new policy Writers for Channel +peer1.org2.example.com | [646 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1e5db8]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 464 Proposed new policy Admins for Channel +peer0.org1.example.com | [716 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-14 11:45:32.541 UTC [common/config] NewStandardValues -> DEBU 465 Initializing protos for *struct {} +peer1.org2.example.com | [647 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [648 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [649 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e1e5db880fe38e180545c1fdd3489950a06a35fcd61a7c551919b4f7a44bbe1 +peer1.org2.example.com | [64a 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [717 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b87acb1e-d560-4383-97ed-9f14326c4e85] +peer1.org2.example.com | [64b 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [718 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [64c 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [64d 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [549ce2a3-9dac-422b-9898-c0a5ff67d9bf] +peer1.org2.example.com | [64e 01-14 11:47:02.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [64f 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [650 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4226cd590 +peer1.org2.example.com | [651 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [652 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 466 Proposed new policy Writers for Application +peer1.org2.example.com | [653 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +peer1.org2.example.com | [654 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [655 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 467 Proposed new policy Readers for Application +peer0.org1.example.com | [719 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d channel id: businesschannel chaincode id: name:"lscc" +peer1.org2.example.com | [656 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421d52690, header 0xc4226cd5c0 +orderer.example.com | 2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 468 Proposed new policy Admins for Application +peer1.org2.example.com | [657 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [71a 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org2.example.com | [658 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 469 Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [659 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] +peer0.org1.example.com | [71b 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d channel id: businesschannel version: 1.0.2 +peer1.org2.example.com | [65a 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 46a Processing field: MSP +peer1.org2.example.com | [65b 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b71208b4-a442-430c-a5d5-112b2b6defbf] +peer0.org1.example.com | [71c 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d,syscc=true,proposal=0xc422167220,canname=escc:1.0.2 +peer1.org2.example.com | [65c 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 channel id: businesschannel +peer0.org1.example.com | [71d 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 46b Initializing protos for *config.ApplicationOrgProtos +peer1.org2.example.com | [65d 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60,syscc=true,proposal=0xc421d52690,canname=lscc:1.0.2 +peer0.org1.example.com | [71e 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [65e 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer1.org2.example.com | [65f 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 46c Processing field: AnchorPeers +peer0.org1.example.com | [71f 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org2.example.com | [660 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 46d Initializing protos for *config.OrganizationProtos +peer1.org2.example.com | [661 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c012902a]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [720 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53f41b12]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 46e Processing field: MSP +peer1.org2.example.com | [662 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [721 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [663 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 46f Proposed new policy Readers for Org1MSP +peer0.org1.example.com | [722 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [664 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c012902a]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [723 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53f41b12]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [665 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Move state message TRANSACTION +peer1.org2.example.com | [666 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [724 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 470 Proposed new policy Writers for Org1MSP +peer1.org2.example.com | [667 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [725 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [668 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 471 Proposed new policy Admins for Org1MSP +peer0.org1.example.com | [726 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [727 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]sending state message TRANSACTION +peer1.org2.example.com | [669 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]Received message TRANSACTION from shim +peer0.org1.example.com | [728 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Received message TRANSACTION from shim +peer0.org1.example.com | [729 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [72a 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [53f41b12]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [72b 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 472 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [72c 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer1.org2.example.com | [66a 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c012902a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [72d 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [72e 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Move state message COMPLETED +peer1.org2.example.com | [66b 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c012902a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [72f 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 473 Processing field: MSP +peer1.org2.example.com | [66c 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c012902a]Sending GET_STATE +peer0.org1.example.com | [730 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]send state message COMPLETED +peer0.org1.example.com | [731 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Received message COMPLETED from shim +peer1.org2.example.com | [66d 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Received message GET_STATE from shim +peer0.org1.example.com | [732 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [733 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [734 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d +peer1.org2.example.com | [66e 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 474 Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [735 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [66f 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c012902a]Received GET_STATE, invoking get state from ledger +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 475 Processing field: AnchorPeers +peer1.org2.example.com | [670 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [736 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [737 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer1.org2.example.com | [671 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [738 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b87acb1e-d560-4383-97ed-9f14326c4e85] +peer0.org1.example.com | [739 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [73a 01-14 11:47:03.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [73b 01-14 11:47:03.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221c7980 +peer0.org1.example.com | [73c 01-14 11:47:03.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [73d 01-14 11:47:03.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 476 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 477 Processing field: MSP +peer1.org2.example.com | [672 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [673 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a]Got state. Sending RESPONSE +peer1.org2.example.com | [674 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c012902a]handleGetState serial send RESPONSE +peer1.org2.example.com | [675 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]Received message RESPONSE from shim +peer1.org2.example.com | [676 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c012902a]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [677 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c012902a]before send +peer0.org1.example.com | [73e 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | 2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 478 Proposed new policy Writers for Org2MSP +peer1.org2.example.com | [678 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [c012902a]after send +peer0.org1.example.com | [73f 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer1.org2.example.com | [679 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [c012902a]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [67a 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c012902a]GetState received payload RESPONSE +peer1.org2.example.com | [67b 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [67c 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]Move state message COMPLETED +peer1.org2.example.com | [67d 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c012902a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [67e 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]send state message COMPLETED +peer1.org2.example.com | [67f 01-14 11:47:02.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Received message COMPLETED from shim +peer1.org2.example.com | [680 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [681 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [682 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +peer0.org1.example.com | [740 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 479 Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [741 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421768b40, header 0xc4221c79b0 +peer1.org2.example.com | [683 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [742 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [743 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd +orderer.example.com | 2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 47a Proposed new policy Readers for Org2MSP +peer1.org2.example.com | [684 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org2.example.com | [685 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 channel id: businesschannel version: 1.0 +peer1.org2.example.com | [686 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60,syscc=false,proposal=0xc421d52690,canname=exp02:1.0 +peer1.org2.example.com | [687 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +peer1.org2.example.com | [688 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [689 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +peer1.org2.example.com | [68a 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c012902a]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [68b 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [68c 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [68d 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c012902a]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [68e 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Move state message TRANSACTION +peer1.org2.example.com | [68f 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [690 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [744 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd] +peer1.org2.example.com | [691 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 47b Initializing protos for *config.OrdererProtos +peer1.org2.example.com | [692 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Received message GET_STATE from shim +peer1.org2.example.com | [693 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [694 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c012902a]Received GET_STATE, invoking get state from ledger +peer1.org2.example.com | [695 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [745 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 47c Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 47d Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 47e Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 47f Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 480 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 481 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 482 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 483 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 484 Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [746 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d0367be8-d64d-4284-9578-a1d36d95dd00] +peer1.org2.example.com | [696 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a] getting state for chaincode exp02, key a, channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] NewStandardValues -> DEBU 485 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 486 Processing field: MSP +peer0.org1.example.com | [747 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd channel id: businesschannel +orderer.example.com | 2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 487 Proposed new policy Writers for OrdererOrg +peer1.org2.example.com | [697 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [748 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd channel id: businesschannel version: 1.0.2 +peer1.org2.example.com | [698 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a]Got state. Sending RESPONSE +orderer.example.com | 2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 488 Proposed new policy Admins for OrdererOrg +peer0.org1.example.com | [749 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd,syscc=true,proposal=0xc421768b40,canname=lscc:1.0.2 +peer1.org2.example.com | [699 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c012902a]handleGetState serial send RESPONSE +peer0.org1.example.com | [74a 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [74b 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [69a 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Received message GET_STATE from shim +orderer.example.com | 2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 489 Proposed new policy Readers for OrdererOrg +peer0.org1.example.com | [74c 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] Validate -> DEBU 48a Anchor peers for org Org1MSP are +peer1.org2.example.com | [69b 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [74d 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [266bdea9]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.543 UTC [common/config] validateMSP -> DEBU 48b Setting up MSP for org Org1MSP +peer0.org1.example.com | [74e 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.543 UTC [msp] NewBccspMsp -> DEBU 48c Creating BCCSP-based MSP instance +peer0.org1.example.com | [74f 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.543 UTC [msp] Setup -> DEBU 48d Setting up MSP instance Org1MSP +peer1.org2.example.com | [69c 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [c012902a]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [750 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [266bdea9]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.544 UTC [msp/identity] newIdentity -> DEBU 48e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [69d 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [69e 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a] getting state for chaincode exp02, key b, channel businesschannel +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [69f 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [751 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Move state message TRANSACTION +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [6a0 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a]Got state. Sending RESPONSE +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [6a1 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c012902a]handleGetState serial send RESPONSE +peer0.org1.example.com | [752 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [6a2 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Received message PUT_STATE from shim +peer0.org1.example.com | [753 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +peer1.org2.example.com | [6a3 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [754 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]sending state message TRANSACTION +peer0.org1.example.com | [755 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Received message TRANSACTION from shim +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +peer1.org2.example.com | [6a4 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [756 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [6a5 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a]state is ready +peer0.org1.example.com | [757 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [266bdea9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +peer0.org1.example.com | [758 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [266bdea9]Sending GET_STATE +peer1.org2.example.com | [6a6 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +peer0.org1.example.com | [759 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Received message GET_STATE from shim +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [75a 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [6a7 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c012902a]enterBusyState trigger event RESPONSE +orderer.example.com | 2018-01-14 11:45:32.544 UTC [msp/identity] newIdentity -> DEBU 48f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [75b 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [266bdea9]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [75c 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6a8 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Move state message RESPONSE +peer0.org1.example.com | [75d 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [266bdea9] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [75e 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [6a9 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +peer0.org1.example.com | [75f 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [266bdea9]Got state. Sending RESPONSE +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [760 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [266bdea9]handleGetState serial send RESPONSE +peer1.org2.example.com | [6aa 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [761 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Received message RESPONSE from shim +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | [762 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [6ab 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]sending state message RESPONSE +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer1.org2.example.com | [6ac 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Received message PUT_STATE from shim +peer0.org1.example.com | [763 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [266bdea9]before send +peer0.org1.example.com | [764 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [266bdea9]after send +peer0.org1.example.com | [765 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [266bdea9]Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [6ad 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [766 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [266bdea9]GetState received payload RESPONSE +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer1.org2.example.com | [6ae 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [767 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [768 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Move state message COMPLETED +peer0.org1.example.com | [769 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [76a 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]send state message COMPLETED +peer0.org1.example.com | [76b 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Received message COMPLETED from shim +peer0.org1.example.com | [76c 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [76d 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6af 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a]state is ready +peer0.org1.example.com | [76e 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [76f 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [770 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [771 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [6b0 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c012902a]Completed PUT_STATE. Sending RESPONSE +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer0.org1.example.com | [772 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d0367be8-d64d-4284-9578-a1d36d95dd00] +peer1.org2.example.com | [6b1 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [c012902a]enterBusyState trigger event RESPONSE +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [6b2 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Move state message RESPONSE +peer0.org1.example.com | [773 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [6b3 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +orderer.example.com | 2018-01-14 11:45:32.545 UTC [msp/identity] newIdentity -> DEBU 490 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [774 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [775 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer1.org2.example.com | [6b4 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [776 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd channel id: businesschannel version: 1.0.2 +peer1.org2.example.com | [6b5 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]sending state message RESPONSE +peer0.org1.example.com | [777 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd,syscc=true,proposal=0xc421768b40,canname=escc:1.0.2 +peer0.org1.example.com | [778 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [779 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [6b6 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Received message COMPLETED from shim +peer0.org1.example.com | [77a 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer1.org2.example.com | [6b7 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer1.org2.example.com | [6b8 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6b9 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [77b 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [266bdea9]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org1.example.com | [77c 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [6ba 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org1.example.com | [77d 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [6bb 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | [77e 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [266bdea9]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6bc 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +peer0.org1.example.com | [77f 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Move state message TRANSACTION +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [780 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | xHTBvxfK6mAzmUitFmY= +peer1.org2.example.com | [6bd 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b71208b4-a442-430c-a5d5-112b2b6defbf] +peer1.org2.example.com | [6be 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer1.org2.example.com | [6bf 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 channel id: businesschannel chaincode id: name:"exp02" +peer0.org1.example.com | [781 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [6c0 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +peer1.org2.example.com | [6c1 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 channel id: businesschannel version: 1.0.2 +peer1.org2.example.com | [6c2 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60,syscc=true,proposal=0xc421d52690,canname=escc:1.0.2 +peer1.org2.example.com | [6c3 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org2.example.com | [6c4 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [6c5 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [782 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]sending state message TRANSACTION +peer1.org2.example.com | [6c6 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c012902a]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.546 UTC [msp] Validate -> DEBU 491 MSP Org1MSP validating identity +peer1.org2.example.com | [6c7 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [6c8 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer1.org2.example.com | [6c9 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c012902a]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6ca 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.546 UTC [common/config] Validate -> DEBU 492 Anchor peers for org Org2MSP are +peer1.org2.example.com | [6cb 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [783 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Received message TRANSACTION from shim +peer1.org2.example.com | [6cc 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [6cd 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]sending state message TRANSACTION +peer1.org2.example.com | [6ce 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]Received message TRANSACTION from shim +peer1.org2.example.com | [6cf 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c012902a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [6d0 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c012902a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.546 UTC [common/config] validateMSP -> DEBU 493 Setting up MSP for org Org2MSP +peer1.org2.example.com | [6d1 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer0.org1.example.com | [784 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [6d2 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | 2018-01-14 11:45:32.546 UTC [msp] NewBccspMsp -> DEBU 494 Creating BCCSP-based MSP instance +peer0.org1.example.com | [785 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [266bdea9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [6d3 01-14 11:47:02.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [6d4 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.546 UTC [msp] Setup -> DEBU 495 Setting up MSP instance Org2MSP +peer1.org2.example.com | [6d5 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c012902a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [786 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +peer1.org2.example.com | [6d6 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c012902a]send state message COMPLETED +peer1.org2.example.com | [6d7 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c012902a]Received message COMPLETED from shim +peer1.org2.example.com | [6d8 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.546 UTC [msp/identity] newIdentity -> DEBU 496 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [787 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [788 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [789 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Move state message COMPLETED +peer1.org2.example.com | [6d9 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [78a 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [6da 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +peer1.org2.example.com | [6db 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [78b 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]send state message COMPLETED +peer0.org1.example.com | [78c 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Received message COMPLETED from shim +peer0.org1.example.com | [78d 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [78e 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [6dc 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +peer0.org1.example.com | [78f 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [6dd 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [790 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | [6de 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b71208b4-a442-430c-a5d5-112b2b6defbf] +peer0.org1.example.com | [791 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [792 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [793 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d0367be8-d64d-4284-9578-a1d36d95dd00] +peer0.org1.example.com | [794 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer1.org2.example.com | [6df 01-14 11:47:02.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [795 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer1.org2.example.com | [6e0 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +peer0.org1.example.com | [796 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421826930 +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +peer0.org1.example.com | [797 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [6e1 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [798 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [799 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [79a 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [79b 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [6e2 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [79c 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421caef00, header 0xc421826960 +peer0.org1.example.com | [79d 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [79e 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f +peer1.org2.example.com | [6e3 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420f9b9e0 +peer0.org1.example.com | [79f 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f] +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer0.org1.example.com | [7a0 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [7a1 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [216237eb-2d45-472c-8bd2-3397610911d4] +peer1.org2.example.com | [6e4 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" +peer0.org1.example.com | [7a2 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f channel id: businesschannel +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +peer0.org1.example.com | [7a3 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f channel id: businesschannel version: 1.0.2 +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer1.org2.example.com | [6e5 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | SCjyRdD3aQ== +peer0.org1.example.com | [7a4 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f,syscc=true,proposal=0xc421caef00,canname=lscc:1.0.2 +peer1.org2.example.com | [6e6 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [7a5 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [6e7 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +orderer.example.com | 2018-01-14 11:45:32.546 UTC [msp/identity] newIdentity -> DEBU 497 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7a6 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [6e8 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [7a7 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer1.org2.example.com | [6e9 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer1.org2.example.com | [6ea 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421b7c000, header channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" +peer0.org1.example.com | [7a8 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [881c84a3]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer1.org2.example.com | [6eb 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [7a9 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [6ec 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [7aa 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org1.example.com | [7ab 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [881c84a3]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6ed 01-14 11:47:04.57 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [7ac 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Move state message TRANSACTION +peer1.org2.example.com | [6ee 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +peer1.org2.example.com | [6ef 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] +peer1.org2.example.com | [6f0 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [6f1 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [29f5c461-111b-4bbb-a5f6-04154f23c280] +peer1.org2.example.com | [6f2 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [7ad 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [7ae 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7af 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]sending state message TRANSACTION +peer0.org1.example.com | [7b0 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Received message TRANSACTION from shim +peer0.org1.example.com | [7b1 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [6f3 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [29f5c461-111b-4bbb-a5f6-04154f23c280] +peer0.org1.example.com | [7b2 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [881c84a3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [7b3 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [881c84a3]Sending GET_STATE +peer0.org1.example.com | [7b4 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Received message GET_STATE from shim +peer0.org1.example.com | [7b5 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [7b6 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [881c84a3]Received GET_STATE, invoking get state from ledger +peer0.org1.example.com | [7b7 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [7b8 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [881c84a3] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [7b9 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [7ba 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [881c84a3]Got state. Sending RESPONSE +peer0.org1.example.com | [7bb 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [881c84a3]handleGetState serial send RESPONSE +peer0.org1.example.com | [7bc 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Received message RESPONSE from shim +peer1.org2.example.com | [6f4 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [6f5 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [276c4d7d-4353-4416-a1d9-01863bd88c9f] +peer0.org1.example.com | [7bd 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer1.org2.example.com | [6f6 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=62b86cda-43d5-4020-a112-cc768b3306cb,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer1.org2.example.com | [6f7 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 chaindID businesschannel +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.547 UTC [msp/identity] newIdentity -> DEBU 498 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [6f8 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +peer1.org2.example.com | [6f9 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [7be 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [881c84a3]before send +peer0.org1.example.com | [7bf 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [881c84a3]after send +peer0.org1.example.com | [7c1 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [881c84a3]GetState received payload RESPONSE +peer0.org1.example.com | [7c2 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [7c0 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [881c84a3]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [7c3 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Move state message COMPLETED +peer0.org1.example.com | [7c4 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [7c5 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]send state message COMPLETED +peer0.org1.example.com | [7c6 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Received message COMPLETED from shim +peer0.org1.example.com | [7c7 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [6fa 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +peer1.org2.example.com | [6fb 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [62b86cda]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [6fc 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [6fd 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [62b86cda]sendExecuteMsg trigger event TRANSACTION +peer1.org2.example.com | [6fe 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [62b86cda]Move state message TRANSACTION +peer1.org2.example.com | [6ff 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [62b86cda]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer1.org2.example.com | [700 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer1.org2.example.com | [701 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [62b86cda]sending state message TRANSACTION +peer1.org2.example.com | [702 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [62b86cda]Received message TRANSACTION from shim +peer1.org2.example.com | [703 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [62b86cda]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org1.example.com | [7c8 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f]HandleMessage- COMPLETED. Notify +peer1.org2.example.com | [704 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [62b86cda]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer1.org2.example.com | [705 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +peer1.org2.example.com | [706 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [707 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +peer1.org2.example.com | [708 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [62b86cda]Transaction completed. Sending COMPLETED +peer1.org2.example.com | [709 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [62b86cda]Move state message COMPLETED +peer1.org2.example.com | [70a 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [62b86cda]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer1.org2.example.com | [70b 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [62b86cda]send state message COMPLETED +peer1.org2.example.com | [70c 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [62b86cda]Received message COMPLETED from shim +peer1.org2.example.com | [70d 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [62b86cda]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [7c9 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer1.org2.example.com | [70e 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [62b86cda-43d5-4020-a112-cc768b3306cb]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [7ca 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [70f 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:62b86cda-43d5-4020-a112-cc768b3306cb +peer0.org1.example.com | [7cb 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer1.org2.example.com | [710 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer1.org2.example.com | [711 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [276c4d7d-4353-4416-a1d9-01863bd88c9f] +peer0.org1.example.com | [7cc 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [712 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +peer1.org2.example.com | [713 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [714 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4214dec00), Data:(*common.BlockData)(0xc42145fea0), Metadata:(*common.BlockMetadata)(0xc42145fee0)}, doMVCCValidation=true +peer1.org2.example.com | [715 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +peer0.org1.example.com | [7cd 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [216237eb-2d45-472c-8bd2-3397610911d4] +peer0.org1.example.com | [7ce 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [7cf 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f channel id: businesschannel chaincode id: name:"lscc" +peer1.org2.example.com | [716 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [717 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org2.example.com | [718 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [719 01-14 11:47:04.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] marked as valid by state validator +peer1.org2.example.com | [71a 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x66, 0x95, 0xb9, 0xa7, 0xea, 0xde, 0xdc, 0xbc, 0x49, 0xd1, 0x7a, 0xf8, 0xb7, 0x8c, 0x68, 0x5, 0x62, 0x2d, 0x2f, 0x0, 0x6e, 0x1f, 0x51, 0x6, 0xe8, 0xa0, 0xe7, 0xba, 0x94, 0x12, 0xd3, 0x72} txOffsets= +peer1.org2.example.com | txId=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 locPointer=offset=70, bytesLength=2856 +peer1.org2.example.com | ] +peer1.org2.example.com | [71b 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to index +peer1.org2.example.com | [71c 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx number:[0] ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to blockNumTranNum index +peer1.org2.example.com | [71d 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59245], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [7d0 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [7d1 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f channel id: businesschannel version: 1.0.2 +peer1.org2.example.com | [71e 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer1.org2.example.com | [71f 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [720 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org1.example.com | [7d2 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f,syscc=true,proposal=0xc421caef00,canname=escc:1.0.2 +peer1.org2.example.com | [721 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [7d3 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer1.org2.example.com | [722 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org1.example.com | [7d4 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer1.org2.example.com | [723 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [724 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [7d5 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer1.org2.example.com | [725 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer1.org2.example.com | [726 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [727 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +peer0.org1.example.com | [7d6 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [881c84a3]Inside sendExecuteMessage. Message TRANSACTION +peer1.org2.example.com | [728 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +peer1.org2.example.com | [729 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +peer1.org2.example.com | [72a 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [72b 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-14 11:45:32.547 UTC [msp] Validate -> DEBU 499 MSP Org2MSP validating identity +peer1.org2.example.com | [72c 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +peer0.org1.example.com | [7d7 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer1.org2.example.com | [72d 01-14 11:47:04.60 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.548 UTC [common/config] validateMSP -> DEBU 49a Setting up MSP for org OrdererOrg +peer0.org1.example.com | [7d8 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.548 UTC [msp] NewBccspMsp -> DEBU 49b Creating BCCSP-based MSP instance +peer0.org1.example.com | [7d9 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [881c84a3]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.548 UTC [msp] Setup -> DEBU 49c Setting up MSP instance OrdererMSP +peer0.org1.example.com | [7da 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.548 UTC [msp/identity] newIdentity -> DEBU 49d Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7db 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [7dc 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [7dd 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]sending state message TRANSACTION +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [7de 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Received message TRANSACTION from shim +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [7df 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [7e0 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [881c84a3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [7e1 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer0.org1.example.com | [7e2 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [7e3 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Transaction completed. Sending COMPLETED +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +peer0.org1.example.com | [7e4 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Move state message COMPLETED +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer0.org1.example.com | [7e5 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [7e6 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.548 UTC [msp/identity] newIdentity -> DEBU 49e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7e7 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Received message COMPLETED from shim +peer0.org1.example.com | [7e8 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [7e9 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f]HandleMessage- COMPLETED. Notify +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [7ea 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f +peer0.org1.example.com | [7eb 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [7ec 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [7ed 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [7ee 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [216237eb-2d45-472c-8bd2-3397610911d4] +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [7ef 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [7f0 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [7f1 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422617f50 +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org1.example.com | [7f2 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [7f3 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [7f4 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [7f5 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org1.example.com | [7f6 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org1.example.com | [7f7 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218f0730, header 0xc422617f80 +peer0.org1.example.com | [7f8 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [7f9 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 +peer0.org1.example.com | [7fa 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5] +orderer.example.com | 2018-01-14 11:45:32.549 UTC [msp/identity] newIdentity -> DEBU 49f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [7fb 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [7fc 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4f4214cb-731e-4e75-ae7f-47c71c50a0ab] +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [7fd 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 channel id: businesschannel +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [7fe 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 channel id: businesschannel version: 1.0.2 +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org1.example.com | [7ff 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5,syscc=true,proposal=0xc4218f0730,canname=lscc:1.0.2 +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [800 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org1.example.com | [801 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [802 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.549 UTC [msp] Validate -> DEBU 4a0 MSP OrdererMSP validating identity +peer0.org1.example.com | [803 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57466ac5]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.549 UTC [msp] Setup -> DEBU 4a1 Setting up the MSP manager (3 msps) +peer0.org1.example.com | [804 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.549 UTC [msp] Setup -> DEBU 4a2 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:32.549 UTC [policies] GetPolicy -> DEBU 4a3 Returning policy Writers for evaluation +peer0.org1.example.com | [805 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [806 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57466ac5]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4a4 In commit adding relative sub-policy Org2MSP/Writers to Application +peer0.org1.example.com | [807 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4a5 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4a6 In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4a7 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4a8 In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4a9 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4aa In commit adding relative sub-policy Org1MSP/Readers to Application +peer0.org1.example.com | [808 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [809 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4ab Returning policy Writers for evaluation +peer0.org1.example.com | [80a 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]sending state message TRANSACTION +peer0.org1.example.com | [80b 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4ac In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4ad Returning policy Admins for evaluation +peer0.org1.example.com | [80c 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57466ac5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [80d 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [57466ac5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [80e 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [80f 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4ae In commit adding relative sub-policy Org1MSP/Admins to Application +peer0.org1.example.com | [810 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57466ac5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [811 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]send state message COMPLETED +peer0.org1.example.com | [812 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]Received message COMPLETED from shim +peer0.org1.example.com | [813 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [814 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [815 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 +peer0.org1.example.com | [816 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [817 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [818 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4af Returning policy Writers for evaluation +peer0.org1.example.com | [819 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [4f4214cb-731e-4e75-ae7f-47c71c50a0ab] +peer0.org1.example.com | [81a 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +peer0.org1.example.com | [81b 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 channel id: businesschannel chaincode id: name:"lscc" +peer0.org1.example.com | [81c 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [81d 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [81e 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5,syscc=true,proposal=0xc4218f0730,canname=escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b0 Returning policy Writers for evaluation +peer0.org1.example.com | [81f 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [820 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [821 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b1 Returning policy Readers for evaluation +peer0.org1.example.com | [822 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57466ac5]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [823 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b2 Returning policy Readers for evaluation +peer0.org1.example.com | [824 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b3 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b4 Returning policy Admins for evaluation +peer0.org1.example.com | [825 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57466ac5]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b5 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4b6 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b7 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4b8 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +peer0.org1.example.com | [826 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]Move state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b9 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4ba In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4bb Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4bc Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4bd Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4be Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4bf Returning policy Org1MSP/Admins for evaluation +peer0.org1.example.com | [827 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4c0 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4c1 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4c2 In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4c3 Returning policy Admins for evaluation +peer0.org1.example.com | [828 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4c4 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4c5 Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4c6 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4c7 Returning policy Org2MSP/Admins for evaluation +peer0.org1.example.com | [829 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4c8 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4c9 Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4ca In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4cb Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4cc In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4cd Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4ce In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4cf Returning policy Writers for evaluation +peer0.org1.example.com | [82a 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d0 In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d1 Returning policy Readers for evaluation +peer0.org1.example.com | [82b 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57466ac5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d2 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d3 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d4 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d5 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d6 In commit adding relative sub-policy Orderer/Admins to Channel +peer0.org1.example.com | [82c 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [57466ac5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d7 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d8 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d9 Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4da In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4db Returning policy OrdererOrg/Writers for evaluation +peer0.org1.example.com | [82d 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4dc In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +peer0.org1.example.com | [82e 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4dd Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4de In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4df Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e0 Returning policy Readers for evaluation +peer0.org1.example.com | [82f 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e1 Returning policy Writers for evaluation +peer0.org1.example.com | [830 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e2 Returning policy Writers for evaluation +peer0.org1.example.com | [831 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57466ac5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [832 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e3 Returning policy Admins for evaluation +peer0.org1.example.com | [833 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e4 Returning policy Admins for evaluation +peer0.org1.example.com | [834 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e5 Returning policy Readers for evaluation +peer0.org1.example.com | [835 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4e6 As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e7 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4e8 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e9 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4ea As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [836 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4eb Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4ec As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4ed Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.552 UTC [policies] CommitProposals -> DEBU 4ee As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [837 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.552 UTC [policies] GetPolicy -> DEBU 4ef Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.552 UTC [policies] CommitProposals -> DEBU 4f0 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [838 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.552 UTC [orderer/common/broadcast] Handle -> DEBU 4f1 [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION +peer0.org1.example.com | [839 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.552 UTC [policies] GetPolicy -> DEBU 4f2 Returning policy Writers for evaluation +peer0.org1.example.com | [83a 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [4f4214cb-731e-4e75-ae7f-47c71c50a0ab] +orderer.example.com | 2018-01-14 11:45:32.552 UTC [cauthdsl] func1 -> DEBU 4f3 0xc420026028 gate 1515930332552514564 evaluation starts +orderer.example.com | 2018-01-14 11:45:32.552 UTC [cauthdsl] func2 -> DEBU 4f4 0xc420026028 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:32.552 UTC [cauthdsl] func2 -> DEBU 4f5 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +peer0.org1.example.com | [83b 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [83c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.552 UTC [msp/identity] newIdentity -> DEBU 4f6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [83d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4223cd9b0 +peer0.org1.example.com | [83e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [83f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [840 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [841 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [362 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [339 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3e3 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [373 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +peer0.org1.example.com | [842 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -peer0.org2.example.com | [33a 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org2.example.com | [33b 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [33c 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [33d 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.182 UTC [msp] SatisfiesPrincipal -> DEBU 222 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-04 01:50:57.182 UTC [msp] Validate -> DEBU 223 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:57.182 UTC [cauthdsl] func2 -> DEBU 224 0xc420026dd8 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:57.182 UTC [msp/identity] Verify -> DEBU 225 Verify: digest = 00000000 e9 bb 79 c8 67 09 78 a6 f9 9a 21 cf 62 d2 6a 9f |..y.g.x...!.b.j.| -orderer.example.com | 00000010 a2 61 1d 8a 73 24 14 63 42 b8 1f 86 be 8f 39 48 |.a..s$.cB.....9H| -orderer.example.com | 2018-01-04 01:50:57.182 UTC [msp/identity] Verify -> DEBU 226 Verify: sig = 00000000 30 44 02 20 5f 02 7c 3d e8 74 c3 bf d1 25 0f 5f |0D. _.|=.t...%._| -orderer.example.com | 00000010 b6 7d 7e e9 68 a6 33 80 fb 14 46 9a 5d f9 5f 68 |.}~.h.3...F.]._h| -orderer.example.com | 00000020 46 29 b4 76 02 20 50 52 83 8d 44 e7 86 b7 4c 2f |F).v. PR..D...L/| -peer1.org2.example.com | [3e4 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [363 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [364 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [374 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [375 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [365 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [366 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [3e5 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [3e6 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005f700), Data:(*common.BlockData)(0xc4218595c0), Metadata:(*common.BlockMetadata)(0xc421859600)}, doMVCCValidation=true -peer1.org2.example.com | [3e7 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [3e8 01-04 01:51:04.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [3e9 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x8b, 0x73, 0x62, 0xf8, 0xa2, 0xa6, 0xcb, 0xf, 0x2a, 0x4e, 0xc3, 0x3a, 0xf, 0x19, 0x6c, 0x27, 0x97, 0xa5, 0xbf, 0x5e, 0x9, 0x65, 0x6b, 0x60, 0x29, 0xce, 0xda, 0x37, 0xfb, 0x33, 0x6, 0x65} txOffsets= -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=11972 -peer1.org2.example.com | ] -orderer.example.com | 00000030 6b e1 d5 27 02 df 89 de cb c7 5d 11 8b 5b a7 96 |k..'......]..[..| -peer0.org2.example.com | [33e 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [376 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [377 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [367 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [368 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [3ea 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx ID: [] to index -peer0.org2.example.com | [33f 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | 00000040 4d 2e fe b4 07 2b |M....+| -orderer.example.com | 2018-01-04 01:50:57.182 UTC [cauthdsl] func2 -> DEBU 227 0xc420026dd8 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [378 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [379 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [37a 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [3eb 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx number:[0] ID: [] to blockNumTranNum index -orderer.example.com | 2018-01-04 01:50:57.182 UTC [cauthdsl] func1 -> DEBU 228 0xc420026dd8 gate 1515030657181709900 evaluation succeeds -peer0.org2.example.com | [340 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [369 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [341 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [3ec 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [36a 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.182 UTC [orderer/common/sigfilter] Apply -> DEBU 229 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420367520 1 [0xc42010e410]}) Writers]} -peer0.org1.example.com | [37b 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005e180), Data:(*common.BlockData)(0xc420267820), Metadata:(*common.BlockMetadata)(0xc420267860)}, doMVCCValidation=true -orderer.example.com | 2018-01-04 01:50:57.182 UTC [msp] GetLocalMSP -> DEBU 22a Returning existing local MSP -peer1.org1.example.com | [36b 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [342 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [343 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [344 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [345 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [346 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [3ed 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer1.org2.example.com | [3ee 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [3ef 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [3f0 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [3f1 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org1.example.com | [37c 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | 2018-01-04 01:50:57.182 UTC [msp] GetDefaultSigningIdentity -> DEBU 22b Obtaining default signing identity -peer1.org1.example.com | [36c 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [3f2 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [347 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [37d 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -orderer.example.com | 2018-01-04 01:50:57.182 UTC [msp] GetLocalMSP -> DEBU 22c Returning existing local MSP -peer1.org1.example.com | [36d 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [3f3 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer1.org2.example.com | [3f4 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [37e 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x54, 0xbe, 0xd6, 0x3f, 0x54, 0x86, 0x6a, 0x3b, 0xfd, 0x9a, 0xdc, 0xb9, 0xfc, 0x15, 0x9e, 0x26, 0x4, 0x89, 0xff, 0xaa, 0x1a, 0x85, 0x5a, 0x81, 0x49, 0x6b, 0x26, 0x91, 0xff, 0x54, 0x5c, 0xb5} txOffsets= -peer0.org2.example.com | [348 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [36e 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [36f 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [370 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [371 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [372 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [373 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005fbc0), Data:(*common.BlockData)(0xc42195ef80), Metadata:(*common.BlockMetadata)(0xc42195efc0)}, doMVCCValidation=true -peer1.org1.example.com | [374 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org1.example.com | [375 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -orderer.example.com | 2018-01-04 01:50:57.182 UTC [msp] GetDefaultSigningIdentity -> DEBU 22d Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:57.183 UTC [msp/identity] Sign -> DEBU 22e Sign: plaintext: 0AB7060A1B08011A06088191B6D20522...41646D696E7310021A0641646D696E73 -orderer.example.com | 2018-01-04 01:50:57.183 UTC [msp/identity] Sign -> DEBU 22f Sign: digest: DCD638915B32C4901CCF2171C3A4E213433E3E34C1555A16CC2C2648789679D6 -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/config] NewStandardValues -> DEBU 230 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/config] initializeProtosStruct -> DEBU 231 Processing field: HashingAlgorithm -peer1.org2.example.com | [3f5 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer1.org2.example.com | [3f6 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [3f7 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [3f8 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [3f9 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [3fa 01-04 01:51:04.43 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer0.org1.example.com | ] -peer0.org1.example.com | [37f 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index -peer0.org1.example.com | [380 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [381 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25667], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org2.example.com | [349 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [376 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x54, 0xbe, 0xd6, 0x3f, 0x54, 0x86, 0x6a, 0x3b, 0xfd, 0x9a, 0xdc, 0xb9, 0xfc, 0x15, 0x9e, 0x26, 0x4, 0x89, 0xff, 0xaa, 0x1a, 0x85, 0x5a, 0x81, 0x49, 0x6b, 0x26, 0x91, 0xff, 0x54, 0x5c, 0xb5} txOffsets= -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/config] initializeProtosStruct -> DEBU 232 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/config] initializeProtosStruct -> DEBU 233 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/config] initializeProtosStruct -> DEBU 234 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 235 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 236 Adding to config map: [Groups] /Channel/Orderer -peer1.org2.example.com | [3fb 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [382 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer1.org1.example.com | ] -peer1.org1.example.com | [377 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index -peer1.org1.example.com | [378 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [34a 01-04 01:51:04.10 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 237 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 238 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 239 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 23a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 23b Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 23c Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [3fc 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422102180 -peer0.org1.example.com | [383 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [34b 01-04 01:51:04.11 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 23d Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 23e Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [379 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25667], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org1.example.com | [37a 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer1.org2.example.com | [3fd 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [3fe 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [3ff 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org2.example.com | [34c 01-04 01:51:04.13 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [37b 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 23f Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [384 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [400 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [34d 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [37c 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [37d 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [37e 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer1.org1.example.com | [37f 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [380 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org1.example.com | [381 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [382 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 240 Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 241 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 242 Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [385 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [386 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org1.example.com | [387 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [388 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org2.example.com | [34e 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 243 Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [383 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [384 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [385 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [389 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [38a 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer0.org1.example.com | [38b 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [38c 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [34f 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [386 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [387 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [388 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 244 Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [38d 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [38e 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [38f 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [390 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [350 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [351 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [352 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [353 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [401 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 245 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [391 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [402 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421fc9db0, header 0xc4221021b0 -peer1.org2.example.com | [403 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [404 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 234d2fa169213274e77e73002050f9495095e6a013d8e27a8f1b343693ca6d0d -peer1.org2.example.com | [405 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 234d2fa169213274e77e73002050f9495095e6a013d8e27a8f1b343693ca6d0d channel id: -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 246 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 247 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 248 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [392 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [393 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219fa060 -peer0.org1.example.com | [394 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -peer1.org2.example.com | [406 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 234d2fa169213274e77e73002050f9495095e6a013d8e27a8f1b343693ca6d0d channel id: version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 249 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 24a Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 24b Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [354 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005e180), Data:(*common.BlockData)(0xc42000c1e0), Metadata:(*common.BlockMetadata)(0xc42000c260)}, doMVCCValidation=true -peer0.org2.example.com | [355 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [356 01-04 01:51:04.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org2.example.com | [357 01-04 01:51:04.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x54, 0xbe, 0xd6, 0x3f, 0x54, 0x86, 0x6a, 0x3b, 0xfd, 0x9a, 0xdc, 0xb9, 0xfc, 0x15, 0x9e, 0x26, 0x4, 0x89, 0xff, 0xaa, 0x1a, 0x85, 0x5a, 0x81, 0x49, 0x6b, 0x26, 0x91, 0xff, 0x54, 0x5c, 0xb5} txOffsets= -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11913 -peer0.org2.example.com | ] -peer1.org2.example.com | [407 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=234d2fa169213274e77e73002050f9495095e6a013d8e27a8f1b343693ca6d0d,syscc=true,proposal=0xc421fc9db0,canname=lscc:1.0.2 -peer1.org1.example.com | [389 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [395 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [396 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 24c Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [408 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | [409 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [40a 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [38a 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | 2018-01-04 01:50:57.185 UTC [common/configtx] addToMap -> DEBU 24d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [397 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer0.org2.example.com | [358 01-04 01:51:04.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index -peer1.org2.example.com | [40b 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [234d2fa1]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [38b 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42198bfb0 -peer1.org1.example.com | [38c 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 24e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [398 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [359 01-04 01:51:04.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [40c 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [40d 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [40e 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [234d2fa1]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [40f 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [234d2fa1]Move state message TRANSACTION -peer1.org1.example.com | [38d 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [38e 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [410 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [234d2fa1]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [411 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [412 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [234d2fa1]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 24f Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 250 Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 251 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 252 Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [399 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [38f 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer0.org2.example.com | [35a 01-04 01:51:04.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25667], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org2.example.com | [35b 01-04 01:51:04.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -peer0.org2.example.com | [35c 01-04 01:51:04.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [35d 01-04 01:51:04.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [35e 01-04 01:51:04.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [35f 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 253 Adding to config map: [Values] /Channel/Consortium -peer0.org2.example.com | [360 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [361 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org2.example.com | [362 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [39a 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421b93000, header channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -peer0.org1.example.com | [39b 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 254 Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [390 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [391 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [413 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234d2fa1]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 255 Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [39c 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [363 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -peer1.org1.example.com | [392 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4218ca000, header channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -peer1.org1.example.com | [393 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [414 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [234d2fa1]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [39d 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org2.example.com | [364 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 256 Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [394 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [415 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [234d2fa1]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [39e 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [365 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/configtx] processConfig -> DEBU 257 Beginning new config for channel businesschannel -peer1.org2.example.com | [416 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234d2fa1]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [417 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234d2fa1]Move state message COMPLETED -peer0.org1.example.com | [39f 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [3a0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [3a1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [418 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [234d2fa1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [366 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [395 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [396 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [3a2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [367 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [397 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [3a3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [419 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234d2fa1]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 258 Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [368 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [398 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [399 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [3a4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [3a5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [3a6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [3a7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [41a 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [234d2fa1]Received message COMPLETED from shim -peer0.org1.example.com | [3a8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [39a 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 259 Processing field: HashingAlgorithm -peer0.org2.example.com | [369 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [41b 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [234d2fa1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [3a9 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [41c 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [234d2fa169213274e77e73002050f9495095e6a013d8e27a8f1b343693ca6d0d]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [3aa 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [39b 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [39c 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [39d 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org1.example.com | [39e 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [41d 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:234d2fa169213274e77e73002050f9495095e6a013d8e27a8f1b343693ca6d0d -peer1.org2.example.com | [41e 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [41f 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [420 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [421 01-04 01:51:05.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [422 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -peer1.org2.example.com | [423 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -peer1.org2.example.com | [424 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers -peer1.org2.example.com | [425 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -peer1.org2.example.com | [426 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -peer1.org2.example.com | [427 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try -> WARN Got error: rpc error: code = Canceled desc = context canceled ,at 1 attempt. Retrying in 1s -peer1.org2.example.com | [428 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: Client is closing -peer1.org2.example.com | [429 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -peer1.org2.example.com | [42a 01-04 01:51:09.07 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -peer1.org2.example.com | [42b 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [42c 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [42d 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [42e 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422211200 -peer0.org1.example.com | [3ab 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [3ac 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [42f 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -peer1.org2.example.com | [430 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [431 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [432 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [3ad 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 25a Processing field: BlockDataHashingStructure -peer1.org1.example.com | [39f 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [36a 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [433 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [434 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [3ae 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [435 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4200c8a80, header channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 25b Processing field: OrdererAddresses -peer0.org1.example.com | [3af 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [36b 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [3a0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [436 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [437 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [438 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [3b0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 25c Processing field: Consortium -peer1.org1.example.com | [3a1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [3a2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [3a3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [439 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [43a 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] -peer1.org2.example.com | [43b 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [43c 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [43d 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [9f730888-4b87-40fb-972c-57b5a586be50] -peer0.org1.example.com | [3b1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [3b2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [3b3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 25d Proposed new policy Admins for Channel -peer1.org1.example.com | [3a4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [43e 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=46d54086-0d47-4a04-8dcd-af0fcfbcc0d5,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org2.example.com | [36c 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42198e3f0 -peer0.org1.example.com | [3b4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 25e Proposed new policy Readers for Channel -peer1.org1.example.com | [3a5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [3a6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [3a7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [3a8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [3a9 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [3aa 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [43f 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa chaindID businesschannel -peer1.org2.example.com | [440 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [441 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [442 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [443 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [46d54086]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [444 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [445 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [46d54086]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [446 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [46d54086]Move state message TRANSACTION -peer0.org1.example.com | [3b5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [3b6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [36d 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -orderer.example.com | 2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 25f Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 260 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 261 Proposed new policy ChannelCreationPolicy for Application -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 262 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 263 Processing field: MSP -peer0.org1.example.com | [3b7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [447 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [46d54086]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [448 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [3b8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [3ab 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [36e 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [449 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [46d54086]sending state message TRANSACTION -peer0.org1.example.com | [3b9 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [3ac 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [3ad 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 264 Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [44a 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [46d54086]Received message TRANSACTION from shim -peer0.org1.example.com | [3ba 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [36f 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [3ae 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 265 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 266 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 267 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 268 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 269 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 26a Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 26b Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 26c Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] NewStandardValues -> DEBU 26d Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 26e Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] NewStandardValues -> DEBU 26f Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 270 Processing field: MSP -peer1.org2.example.com | [44b 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [46d54086]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [3bb 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [3bc 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [44c 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [46d54086]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [370 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -peer0.org1.example.com | [3bd 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [3af 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 271 Proposed new policy Writers for Org2MSP -peer0.org2.example.com | [371 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [44d 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [3be 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org1.example.com | [3b0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 272 Proposed new policy Admins for Org2MSP -peer0.org2.example.com | [372 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [44e 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [3bf 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [3b1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [373 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421783000, header channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 273 Proposed new policy Readers for Org2MSP -peer1.org1.example.com | [3b2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [374 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [375 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org2.example.com | [376 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [3c0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [44f 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [450 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [451 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [452 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] NewStandardValues -> DEBU 274 Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [3c1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [3c2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 275 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 276 Processing field: BatchSize -peer1.org2.example.com | [453 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f62e75a2-0e22-46a5-8ea7-609f4a8009b2] -peer0.org1.example.com | [3c3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [3c4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [454 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 277 Processing field: BatchTimeout -peer0.org1.example.com | [3c5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [455 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f62e75a2-0e22-46a5-8ea7-609f4a8009b2] -peer0.org2.example.com | [377 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [3b3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 278 Processing field: KafkaBrokers -peer1.org2.example.com | [456 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [3c6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [378 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [3b4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 279 Processing field: ChannelRestrictions -peer1.org2.example.com | [457 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer0.org2.example.com | [379 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [3c7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [3b5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 27a Proposed new policy Admins for Orderer -peer0.org1.example.com | [3c8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [3c9 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [3ca 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [3cb 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | [458 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [37a 01-04 01:51:04.16 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [37b 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [3cc 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [37c 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [3b6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [3cd 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [459 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [46d54086]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 27b Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 27c Proposed new policy Readers for Orderer -peer1.org1.example.com | [3b7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [3ce 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [3cf 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [3d0 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [3d1 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d2 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d3 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d4 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [45a 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [46d54086]Move state message COMPLETED -peer0.org2.example.com | [37d 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org2.example.com | [37e 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [37f 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [380 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [381 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [382 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [3d5 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [45b 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [46d54086]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 27d Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] NewStandardValues -> DEBU 27e Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 27f Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 280 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 281 Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | [45c 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [46d54086]send state message COMPLETED -peer0.org1.example.com | [3d6 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3b8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [3b9 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [3ba 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [3bb 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [3bc 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [3bd 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [3d7 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d8 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3d9 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3da 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [3db 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [45d 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [46d54086]Received message COMPLETED from shim -peer0.org2.example.com | [383 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [384 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 282 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] Validate -> DEBU 283 Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-04 01:50:57.188 UTC [common/config] validateMSP -> DEBU 284 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:57.189 UTC [msp] NewBccspMsp -> DEBU 285 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.189 UTC [msp] Setup -> DEBU 286 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:57.189 UTC [msp/identity] newIdentity -> DEBU 287 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | 2018-01-14 11:45:32.553 UTC [msp] SatisfiesPrincipal -> DEBU 4f7 Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org1.example.com | [843 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218f1630, header 0xc4223cd9e0 +orderer.example.com | 2018-01-14 11:45:32.553 UTC [msp] Validate -> DEBU 4f8 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:32.553 UTC [cauthdsl] func2 -> DEBU 4f9 0xc420026028 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:32.553 UTC [msp/identity] Verify -> DEBU 4fa Verify: digest = 00000000 71 d9 68 a3 ec 69 9f 09 03 ea ae 32 1c 1d fa 88 |q.h..i.....2....| +orderer.example.com | 00000010 11 1f cb 02 b9 34 51 ef 2a fb 35 34 1c a2 ea 3a |.....4Q.*.54...:| +orderer.example.com | 2018-01-14 11:45:32.553 UTC [msp/identity] Verify -> DEBU 4fb Verify: sig = 00000000 30 45 02 21 00 95 b5 76 17 9a 3d 5d c0 1c 6b 7f |0E.!...v..=]..k.| +orderer.example.com | 00000010 f9 6b 96 b2 f7 1e 6e da f2 3c 79 a3 ea b3 28 d7 |.k....n.. DEBU 4fc 0xc420026028 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:32.553 UTC [cauthdsl] func1 -> DEBU 4fd 0xc420026028 gate 1515930332552514564 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:32.553 UTC [orderer/common/sigfilter] Apply -> DEBU 4fe Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380c20 1 [0xc420150650]}) Writers]} +orderer.example.com | 2018-01-14 11:45:32.553 UTC [msp] GetLocalMSP -> DEBU 4ff Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.553 UTC [msp] GetDefaultSigningIdentity -> DEBU 500 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:32.553 UTC [msp] GetLocalMSP -> DEBU 501 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.553 UTC [msp] GetDefaultSigningIdentity -> DEBU 502 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:32.554 UTC [msp/identity] Sign -> DEBU 503 Sign: plaintext: 0AB7060A1B08011A0608DC85EDD20522...41646D696E7310021A0641646D696E73 +peer0.org1.example.com | [844 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [845 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 +peer0.org1.example.com | [846 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07] +peer0.org1.example.com | [847 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [848 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [375e7bcd-e271-4525-af60-6558d78a207d] +peer0.org1.example.com | [849 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 channel id: businesschannel +peer0.org1.example.com | [84a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [84b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07,syscc=true,proposal=0xc4218f1630,canname=lscc:1.0.2 +peer0.org1.example.com | [84c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +peer0.org1.example.com | [84d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +peer0.org1.example.com | [84e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +peer0.org1.example.com | [84f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90b90f60]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [850 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [851 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [852 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90b90f60]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [853 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Move state message TRANSACTION +peer0.org1.example.com | [854 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [855 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.554 UTC [msp/identity] Sign -> DEBU 504 Sign: digest: 7524B569061E5C0C0A391E7ADCB28A7C3FAFD24E830B11AE46D118265F84EA55 +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/config] NewStandardValues -> DEBU 505 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/config] initializeProtosStruct -> DEBU 506 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/config] initializeProtosStruct -> DEBU 507 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/config] initializeProtosStruct -> DEBU 508 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/config] initializeProtosStruct -> DEBU 509 Processing field: Consortium +peer0.org1.example.com | [856 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]sending state message TRANSACTION +peer0.org1.example.com | [857 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Received message TRANSACTION from shim +peer0.org1.example.com | [858 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50a Adding to config map: [Groups] /Channel +peer0.org1.example.com | [859 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90b90f60]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [85a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [90b90f60]Sending GET_STATE_BY_RANGE +peer0.org1.example.com | [85b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Received message GET_STATE_BY_RANGE from shim +peer0.org1.example.com | [85c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +peer0.org1.example.com | [85d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger +peer0.org1.example.com | [85e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +peer0.org1.example.com | [85f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50b Adding to config map: [Groups] /Channel/Orderer +peer0.org1.example.com | [860 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +peer0.org1.example.com | [861 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +peer0.org1.example.com | [862 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +peer0.org1.example.com | [863 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [90b90f60]handleGetStateByRange serial send RESPONSE +peer0.org1.example.com | [864 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Received message RESPONSE from shim +peer0.org1.example.com | [865 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [866 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90b90f60]before send +peer0.org1.example.com | [867 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90b90f60]after send +peer0.org1.example.com | [868 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [90b90f60]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [869 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [90b90f60]Received RESPONSE. Successfully got range +peer0.org1.example.com | [86a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [90b90f60]Sending QUERY_STATE_CLOSE +peer0.org1.example.com | [86b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Received message QUERY_STATE_CLOSE from shim +peer0.org1.example.com | [86c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +peer0.org1.example.com | [86d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +peer0.org1.example.com | [86e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +peer0.org1.example.com | [86f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [870 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +peer0.org1.example.com | [871 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [90b90f60]handleQueryStateClose serial send RESPONSE +peer0.org1.example.com | [872 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Received message RESPONSE from shim +peer0.org1.example.com | [873 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [874 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90b90f60]before send +peer0.org1.example.com | [875 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90b90f60]after send +peer0.org1.example.com | [876 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [90b90f60]Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [877 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [90b90f60]Received RESPONSE. Successfully got range +peer0.org1.example.com | [878 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [879 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Move state message COMPLETED +peer0.org1.example.com | [87a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [87b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]send state message COMPLETED +peer0.org1.example.com | [87c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Received message COMPLETED from shim +peer0.org1.example.com | [87d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [87e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [87f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 +peer0.org1.example.com | [880 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [881 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50c Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [882 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [883 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [375e7bcd-e271-4525-af60-6558d78a207d] +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50d Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 510 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [884 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 511 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 512 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [885 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 channel id: businesschannel chaincode id: name:"lscc" +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 513 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 514 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 515 Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [886 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +peer0.org1.example.com | [887 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 516 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [888 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07,syscc=true,proposal=0xc4218f1630,canname=escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 517 Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [889 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +peer0.org1.example.com | [88a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 518 Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [88b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 519 Adding to config map: [Groups] /Channel/Application +peer0.org1.example.com | [88c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90b90f60]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 51a Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 51b Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [88d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +peer0.org1.example.com | [88e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 51c Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [88f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90b90f60]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 51d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.556 UTC [common/configtx] addToMap -> DEBU 51e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [890 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Move state message TRANSACTION +peer0.org1.example.com | [891 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [892 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [893 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.556 UTC [common/configtx] addToMap -> DEBU 51f Adding to config map: [Groups] /Channel/Application/Org1MSP +peer0.org1.example.com | [894 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Received message TRANSACTION from shim +peer0.org1.example.com | [895 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [896 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90b90f60]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [897 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | 2018-01-14 11:45:32.556 UTC [common/configtx] addToMap -> DEBU 520 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [898 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [899 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [89a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Move state message COMPLETED +peer0.org1.example.com | [89b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [89c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]send state message COMPLETED +peer0.org1.example.com | [89d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.557 UTC [common/configtx] addToMap -> DEBU 521 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [89e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [89f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8a0 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 +orderer.example.com | 2018-01-14 11:45:32.557 UTC [common/configtx] addToMap -> DEBU 522 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [8a1 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8a2 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [8a3 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.558 UTC [common/configtx] addToMap -> DEBU 523 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [8a4 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [375e7bcd-e271-4525-af60-6558d78a207d] +peer0.org1.example.com | [8a5 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [8a6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [8a7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224b2ed0 +orderer.example.com | 2018-01-14 11:45:32.558 UTC [common/configtx] addToMap -> DEBU 524 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer0.org1.example.com | [8a8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [8a9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +peer0.org1.example.com | [8aa 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [8ab 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +peer0.org1.example.com | [8ac 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +orderer.example.com | 2018-01-14 11:45:32.559 UTC [orderer/common/broadcast] Handle -> WARN 525 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:45:32.560 UTC [orderer/main] func1 -> DEBU 526 Closing Broadcast stream +peer0.org1.example.com | [8ad 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224c2370, header 0xc4224b2f00 +orderer.example.com | 2018-01-14 11:45:32.560 UTC [common/configtx] addToMap -> DEBU 527 Adding to config map: [Values] /Channel/Consortium +peer0.org1.example.com | [8ae 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | 2018-01-14 11:45:32.560 UTC [common/configtx] addToMap -> DEBU 528 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.560 UTC [common/configtx] addToMap -> DEBU 529 Adding to config map: [Values] /Channel/HashingAlgorithm +peer0.org1.example.com | [8af 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/configtx] addToMap -> DEBU 52a Adding to config map: [Values] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [8b0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec] +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/configtx] addToMap -> DEBU 52b Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/configtx] addToMap -> DEBU 52c Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/configtx] addToMap -> DEBU 52d Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [8b1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/configtx] processConfig -> DEBU 52e Beginning new config for channel businesschannel +peer0.org1.example.com | [8b2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [8886738f-5547-4c0d-84d3-fa40cd2de160] +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] NewStandardValues -> DEBU 52f Initializing protos for *config.ChannelProtos +peer0.org1.example.com | [8b3 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec channel id: businesschannel +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 530 Processing field: HashingAlgorithm +peer0.org1.example.com | [8b4 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 531 Processing field: BlockDataHashingStructure +peer0.org1.example.com | [8b5 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec,syscc=true,proposal=0xc4224c2370,canname=qscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 532 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 533 Processing field: Consortium +peer0.org1.example.com | [8b6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +peer0.org1.example.com | [8b7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 534 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 535 Proposed new policy Readers for Channel +peer0.org1.example.com | [8b8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | 2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 536 Proposed new policy Writers for Channel +peer0.org1.example.com | [8b9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [781c2078]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] NewStandardValues -> DEBU 537 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 538 Processing field: ConsensusType +peer0.org1.example.com | [8ba 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 539 Processing field: BatchSize +peer0.org1.example.com | [8bb 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 53a Processing field: BatchTimeout +peer0.org1.example.com | [8bc 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [781c2078]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 53b Processing field: KafkaBrokers +peer0.org1.example.com | [8bd 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]Move state message TRANSACTION +peer0.org1.example.com | [8be 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c2078]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 53c Processing field: ChannelRestrictions +peer0.org1.example.com | [8bf 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 53d Proposed new policy Writers for Orderer +peer0.org1.example.com | [8c0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]sending state message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 53e Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 53f Proposed new policy BlockValidation for Orderer +peer0.org1.example.com | [8c1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 540 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:32.561 UTC [common/config] NewStandardValues -> DEBU 541 Initializing protos for *config.OrganizationProtos +peer0.org1.example.com | [8c2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [781c2078]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 2018-01-14 11:45:32.563 UTC [common/config] initializeProtosStruct -> DEBU 543 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.563 UTC [policies] ProposePolicy -> DEBU 544 Proposed new policy Writers for OrdererOrg +peer0.org1.example.com | [8c3 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [781c2078]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8c4 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | 2018-01-14 11:45:32.563 UTC [policies] ProposePolicy -> DEBU 545 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.563 UTC [policies] ProposePolicy -> DEBU 546 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.564 UTC [common/config] NewStandardValues -> DEBU 547 Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:32.564 UTC [policies] ProposePolicy -> DEBU 548 Proposed new policy ChannelCreationPolicy for Application +peer0.org1.example.com | [8c5 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [8c6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.564 UTC [common/config] NewStandardValues -> DEBU 549 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.564 UTC [common/config] initializeProtosStruct -> DEBU 54a Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.564 UTC [common/config] NewStandardValues -> DEBU 54b Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.564 UTC [common/config] initializeProtosStruct -> DEBU 54c Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.564 UTC [common/config] NewStandardValues -> DEBU 54d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.565 UTC [common/config] initializeProtosStruct -> DEBU 54e Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.565 UTC [policies] ProposePolicy -> DEBU 54f Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.565 UTC [policies] ProposePolicy -> DEBU 550 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.565 UTC [policies] ProposePolicy -> DEBU 551 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.566 UTC [common/config] NewStandardValues -> DEBU 552 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.566 UTC [common/config] initializeProtosStruct -> DEBU 553 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.566 UTC [common/config] NewStandardValues -> DEBU 554 Initializing protos for *config.ApplicationOrgProtos +peer0.org1.example.com | [8c7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [781c2078]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [8c8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]send state message COMPLETED +peer0.org1.example.com | [8c9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.566 UTC [common/config] initializeProtosStruct -> DEBU 555 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.566 UTC [common/config] NewStandardValues -> DEBU 556 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.566 UTC [common/config] initializeProtosStruct -> DEBU 557 Processing field: MSP +peer0.org1.example.com | [8ca 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c2078]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [8cb 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.566 UTC [policies] ProposePolicy -> DEBU 558 Proposed new policy Writers for Org2MSP +peer0.org1.example.com | [8cc 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec +orderer.example.com | 2018-01-14 11:45:32.567 UTC [policies] ProposePolicy -> DEBU 559 Proposed new policy Admins for Org2MSP +peer0.org1.example.com | [8cd 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8ce 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.567 UTC [policies] ProposePolicy -> DEBU 55a Proposed new policy Readers for Org2MSP +peer0.org1.example.com | [8cf 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | 2018-01-14 11:45:32.567 UTC [common/config] validateMSP -> DEBU 55b Setting up MSP for org OrdererOrg +peer0.org1.example.com | [8d0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8886738f-5547-4c0d-84d3-fa40cd2de160] +orderer.example.com | 2018-01-14 11:45:32.567 UTC [msp] NewBccspMsp -> DEBU 55c Creating BCCSP-based MSP instance +peer0.org1.example.com | [8d1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.567 UTC [msp] Setup -> DEBU 55d Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:32.567 UTC [msp/identity] newIdentity -> DEBU 55e Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8d2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec channel id: businesschannel chaincode id: name:"qscc" +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [8d3 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [8d4 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec channel id: businesschannel version: 1.0.2 +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +peer0.org1.example.com | [8d5 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec,syscc=true,proposal=0xc4224c2370,canname=escc:1.0.2 +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +peer0.org1.example.com | [8d6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [8d7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +peer0.org1.example.com | [8d8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +peer0.org1.example.com | [8d9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [781c2078]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [8da 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +peer0.org1.example.com | [8db 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +peer0.org1.example.com | [8dc 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [781c2078]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [8dd 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]Move state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [8de 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c2078]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +peer0.org1.example.com | [8df 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [8e0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]sending state message TRANSACTION +peer0.org1.example.com | [8e1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Received message TRANSACTION from shim +orderer.example.com | 2018-01-14 11:45:32.568 UTC [msp/identity] newIdentity -> DEBU 55f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [8e2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [781c2078]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [8e3 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [781c2078]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +peer0.org1.example.com | [8e4 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [8e5 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +peer0.org1.example.com | [8e6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [8e7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Move state message COMPLETED +peer0.org1.example.com | [8e8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [781c2078]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [8e9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]send state message COMPLETED +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [8ea 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]Received message COMPLETED from shim +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [8eb 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c2078]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [8ec 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec]HandleMessage- COMPLETED. Notify +peer0.org1.example.com | [8ed 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [8ee 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [8ef 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [8f0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [8f1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8886738f-5547-4c0d-84d3-fa40cd2de160] +peer0.org1.example.com | [8f2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +peer0.org1.example.com | [8f3 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +peer0.org1.example.com | [8f4 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42257b380 +peer0.org1.example.com | [8f5 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [8f6 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [8f7 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +peer0.org1.example.com | [8f8 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org1.example.com | [8f9 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [8fa 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422574550, header 0xc42257b3b0 +peer0.org1.example.com | [8fb 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [8fc 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [8fd 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2] +peer0.org1.example.com | [8fe 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org1.example.com | [8ff 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b0930a0a-6793-4601-8e4e-e8703b937c87] +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org1.example.com | [900 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 channel id: businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [901 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 channel id: businesschannel version: 1.0.2 +orderer.example.com | 2018-01-14 11:45:32.568 UTC [msp/identity] newIdentity -> DEBU 560 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [902 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2,syscc=true,proposal=0xc422574550,canname=qscc:1.0.2 +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [903 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [904 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [905 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +peer0.org1.example.com | [906 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0ea537fc]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [907 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +peer0.org1.example.com | [908 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org1.example.com | [909 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0ea537fc]sendExecuteMsg trigger event TRANSACTION +peer0.org1.example.com | [90a 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]Move state message TRANSACTION +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +peer0.org1.example.com | [90b 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +peer0.org1.example.com | [90c 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +peer0.org1.example.com | [90d 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]sending state message TRANSACTION +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [90e 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Received message TRANSACTION from shim +peer0.org1.example.com | [90f 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ea537fc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [910 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0ea537fc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | 2018-01-14 11:45:32.569 UTC [msp] Validate -> DEBU 561 MSP OrdererMSP validating identity +peer0.org1.example.com | [911 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +peer0.org1.example.com | [912 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-14 11:45:32.563 UTC [orderer/common/deliver] Handle -> DEBU 542 Rejecting deliver because channel businesschannel not found +orderer.example.com | 2018-01-14 11:45:32.570 UTC [orderer/main] func1 -> DEBU 562 Closing Deliver stream +peer0.org1.example.com | [913 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[25668] +orderer.example.com | 2018-01-14 11:45:32.570 UTC [common/config] Validate -> DEBU 563 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-14 11:45:32.570 UTC [common/config] validateMSP -> DEBU 564 Setting up MSP for org Org1MSP +peer0.org1.example.com | [914 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28901], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:32.570 UTC [msp] NewBccspMsp -> DEBU 565 Creating BCCSP-based MSP instance +peer0.org1.example.com | [915 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25668], bytesOffset=[25670]} +peer0.org1.example.com | [916 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Transaction completed. Sending COMPLETED +peer0.org1.example.com | [917 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.570 UTC [msp] Setup -> DEBU 566 Setting up MSP instance Org1MSP +peer0.org1.example.com | [918 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ea537fc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +peer0.org1.example.com | [919 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.571 UTC [msp/identity] newIdentity -> DEBU 567 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [91a 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]Received message COMPLETED from shim +peer0.org1.example.com | [91b 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [91c 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2]HandleMessage- COMPLETED. Notify +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [91d 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | [91e 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +peer0.org1.example.com | [91f 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +peer0.org1.example.com | [920 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +peer0.org1.example.com | [921 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b0930a0a-6793-4601-8e4e-e8703b937c87] +peer0.org1.example.com | [922 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer0.org1.example.com | [3dc 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [3dd 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [45e 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [46d54086]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [385 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [386 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [387 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [3de 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -peer1.org1.example.com | [3be 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [3bf 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [3c0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [3c1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer0.org1.example.com | [3df 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer1.org2.example.com | [45f 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [46d54086-0d47-4a04-8dcd-af0fcfbcc0d5]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [388 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [3c2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [3e0 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | H7n8z1pj5w== -peer1.org2.example.com | [460 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:46d54086-0d47-4a04-8dcd-af0fcfbcc0d5 -peer1.org1.example.com | [3c3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org2.example.com | [389 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [3e1 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [461 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [3c4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [3e2 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [38a 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [462 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [9f730888-4b87-40fb-972c-57b5a586be50] -peer1.org2.example.com | [463 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [464 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [465 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422163780), Data:(*common.BlockData)(0xc421c95c60), Metadata:(*common.BlockMetadata)(0xc421c95ca0)}, doMVCCValidation=true -peer1.org2.example.com | [466 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [467 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [468 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] marked as valid by state validator -peer1.org2.example.com | [469 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x1, 0x89, 0x46, 0x2c, 0xf9, 0x7a, 0xc5, 0x26, 0xa0, 0x0, 0x75, 0xd, 0x2c, 0xe4, 0xad, 0x19, 0xe1, 0x78, 0x94, 0x3b, 0x7f, 0xa4, 0x2b, 0xe, 0x79, 0xfc, 0x32, 0xb3, 0x54, 0x7b, 0x83, 0x63} txOffsets= -peer1.org2.example.com | txId=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa locPointer=offset=70, bytesLength=3389 -peer1.org2.example.com | ] -peer1.org2.example.com | [46a 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to index -orderer.example.com | 2018-01-04 01:50:57.189 UTC [msp/identity] newIdentity -> DEBU 288 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [3e3 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3e4 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [3c5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [46b 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx number:[0] ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to blockNumTranNum index -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [3e5 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [3e6 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [3e7 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [3e8 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [3c6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [46c 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [3e9 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [3c7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [3c8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [3c9 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [46d 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer1.org2.example.com | [46e 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [46f 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [470 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer1.org2.example.com | [471 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org2.example.com | [472 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [473 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [474 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org1.example.com | [3ea 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer0.org1.example.com | [3eb 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3ec 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [475 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org1.example.com | [3ca 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3cb 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3cc 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3cd 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [3ce 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3cf 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d0 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d1 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d2 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d3 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [3d4 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [3d5 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [3d6 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d7 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d8 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3d9 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3da 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [3db 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [3dc 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer1.org1.example.com | [3dd 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer1.org1.example.com | [3de 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [3df 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [3e0 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [3ed 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [3ee 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [3ef 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3f0 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3f1 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3f2 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3f3 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [3f4 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [3f5 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3f6 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3f7 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [3f8 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [3f9 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [3fa 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [3fb 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [3fc 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [476 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [477 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -peer1.org2.example.com | [478 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer0.org1.example.com | [3fd 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [3fe 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [3ff 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [400 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [401 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [402 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [403 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [404 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [405 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [406 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [407 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [408 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [409 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [40a 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [40b 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [40c 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [40d 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42158edc0), Data:(*common.BlockData)(0xc421c865c0), Metadata:(*common.BlockMetadata)(0xc421c86600)}, doMVCCValidation=true -peer0.org1.example.com | [40e 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [40f 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org1.example.com | [410 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x8b, 0x73, 0x62, 0xf8, 0xa2, 0xa6, 0xcb, 0xf, 0x2a, 0x4e, 0xc3, 0x3a, 0xf, 0x19, 0x6c, 0x27, 0x97, 0xa5, 0xbf, 0x5e, 0x9, 0x65, 0x6b, 0x60, 0x29, 0xce, 0xda, 0x37, 0xfb, 0x33, 0x6, 0x65} txOffsets= -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=11972 -peer0.org1.example.com | ] -peer0.org1.example.com | [411 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx ID: [] to index -peer0.org1.example.com | [412 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [413 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org1.example.com | [414 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer0.org1.example.com | [415 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [416 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [417 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [418 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org1.example.com | [419 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org1.example.com | [3e1 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [38b 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [41a 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer1.org2.example.com | [479 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [47a 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [47b 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [47c 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [47d 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [47e 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org1.example.com | [3e2 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [3e3 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [3e4 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3e5 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [3e6 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [3e7 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [3e8 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3e9 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [3ea 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3eb 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [3ec 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [3ed 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [3ee 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3ef 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer1.org1.example.com | [3f0 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [3f1 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [3f2 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [3f3 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [3f4 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [3f5 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [3f6 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [3f7 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [3f8 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [3f9 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org1.example.com | [3fa 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [41b 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [41c 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer0.org1.example.com | [41d 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [41e 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [41f 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [420 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [421 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [422 01-04 01:51:04.02 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer1.org1.example.com:7051, PKIid:[41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] isn't responsive: rpc error: code = Internal desc = transport is closing -peer0.org1.example.com | [423 01-04 01:51:04.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175]] -peer0.org1.example.com | [424 01-04 01:51:04.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175], Metadata: [] -peer0.org1.example.com | [425 01-04 01:51:04.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting -peer0.org1.example.com | [426 01-04 01:51:05.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [427 01-04 01:51:05.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42155cf90 -peer0.org1.example.com | [428 01-04 01:51:05.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [429 01-04 01:51:05.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [42a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [42b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [42c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [42d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42202a050, header 0xc42155d020 -peer0.org1.example.com | [42e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [42f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -peer0.org1.example.com | [430 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] -peer0.org1.example.com | [431 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [432 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [546e9e81-9b46-40bf-8ab1-e3c2a821dfb7] -peer0.org1.example.com | [433 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa channel id: businesschannel -peer0.org1.example.com | [434 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [435 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa,syscc=true,proposal=0xc42202a050,canname=lscc:1.0.2 -peer0.org1.example.com | [436 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org2.example.com | [47f 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215f6e40 -peer1.org2.example.com | [480 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [437 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [3fb 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [38c 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [438 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org2.example.com | [481 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [3fc 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org2.example.com | [38d 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [439 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [3fd 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [3fe 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [3ff 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [400 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [401 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [402 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [403 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [404 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [405 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4216f88c0), Data:(*common.BlockData)(0xc421677400), Metadata:(*common.BlockMetadata)(0xc421677440)}, doMVCCValidation=true -peer1.org1.example.com | [406 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [482 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [43a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [38e 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [407 01-04 01:51:03.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer1.org2.example.com | [483 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [484 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [485 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ff7130, header 0xc4215f6e70 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.190 UTC [msp/identity] newIdentity -> DEBU 289 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org1.example.com | [408 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x8b, 0x73, 0x62, 0xf8, 0xa2, 0xa6, 0xcb, 0xf, 0x2a, 0x4e, 0xc3, 0x3a, 0xf, 0x19, 0x6c, 0x27, 0x97, 0xa5, 0xbf, 0x5e, 0x9, 0x65, 0x6b, 0x60, 0x29, 0xce, 0xda, 0x37, 0xfb, 0x33, 0x6, 0x65} txOffsets= -peer0.org1.example.com | [43b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [486 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [43c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=11972 -peer0.org2.example.com | [38f 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [487 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | ] -peer1.org1.example.com | [409 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx ID: [] to index -peer1.org1.example.com | [40a 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [40b 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [40c 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer1.org1.example.com | [40d 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [40e 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [43d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message TRANSACTION -peer0.org1.example.com | [43e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [43f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [440 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [488 01-04 01:51:46.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234] -peer1.org1.example.com | [40f 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [441 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Received message TRANSACTION from shim -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org2.example.com | [489 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [48a 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [7fd4839e-36d8-4623-b7c2-e048fe9c0f26] -peer0.org1.example.com | [442 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [410 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer1.org2.example.com | [48b 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 channel id: businesschannel -peer0.org1.example.com | [443 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [065ac20a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [411 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org2.example.com | [48c 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234,syscc=true,proposal=0xc421ff7130,canname=lscc:1.0.2 -peer0.org1.example.com | [444 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [065ac20a]Sending GET_STATE -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org1.example.com | [412 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer1.org2.example.com | [48d 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org2.example.com | [390 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [445 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message GET_STATE from shim -peer1.org1.example.com | [413 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [48e 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [391 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [446 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [48f 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [414 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer0.org2.example.com | [392 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [447 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [065ac20a]Received GET_STATE, invoking get state from ledger -orderer.example.com | 2018-01-04 01:50:57.190 UTC [msp] Validate -> DEBU 28a MSP Org1MSP validating identity -peer1.org2.example.com | [490 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6e2fc74c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [448 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [491 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [449 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [415 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.190 UTC [common/config] Validate -> DEBU 28b Anchor peers for org Org2MSP are -peer1.org2.example.com | [492 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [44a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [416 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-04 01:50:57.190 UTC [common/config] validateMSP -> DEBU 28c Setting up MSP for org Org2MSP -peer0.org2.example.com | [393 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [44b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]No state associated with key: mycc. Sending RESPONSE with an empty payload -orderer.example.com | 2018-01-04 01:50:57.190 UTC [msp] NewBccspMsp -> DEBU 28d Creating BCCSP-based MSP instance -peer1.org1.example.com | [417 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [394 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [493 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6e2fc74c]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [44c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [065ac20a]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.190 UTC [msp] Setup -> DEBU 28e Setting up MSP instance Org2MSP -peer1.org1.example.com | [418 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [395 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.190 UTC [msp/identity] newIdentity -> DEBU 28f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [44d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Received message RESPONSE from shim -peer0.org2.example.com | [396 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [44e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [494 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Move state message TRANSACTION -peer0.org2.example.com | [397 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [419 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [44f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [065ac20a]before send -peer1.org2.example.com | [495 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [398 01-04 01:51:04.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [451 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [065ac20a]GetState received payload RESPONSE -peer1.org1.example.com | [41a 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer1.org2.example.com | [496 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [399 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [450 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [065ac20a]after send -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | [41b 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [39a 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [452 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [065ac20a]Received RESPONSE, communicated (state:ready) -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | [497 01-04 01:51:46.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]sending state message TRANSACTION -peer0.org2.example.com | [39b 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org1.example.com | [41c 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [453 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [065ac20a]Inside putstate -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org2.example.com | [498 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Received message TRANSACTION from shim -peer0.org2.example.com | [39c 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org1.example.com | [41d 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421f3db90 -peer0.org1.example.com | [454 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [065ac20a]Sending PUT_STATE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer1.org2.example.com | [499 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6e2fc74c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [39d 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [455 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message PUT_STATE from shim -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.191 UTC [msp/identity] newIdentity -> DEBU 290 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.191 UTC [msp/identity] newIdentity -> DEBU 291 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [41e 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -peer1.org1.example.com | [41f 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [420 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [421 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org1.example.com | [422 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [423 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [424 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421406a80, header channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -peer1.org1.example.com | [425 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [426 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [427 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [428 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org1.example.com | [429 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] -peer1.org1.example.com | [42a 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [42b 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [42c 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [53a4afd9-c85d-4cf9-98f4-e74997b797e7] -peer1.org1.example.com | [42d 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=69f6489f-d623-4163-8c60-d4e3c94f9d5a,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org1.example.com | [42e 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa chaindID businesschannel -peer1.org1.example.com | [42f 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org1.example.com | [430 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [431 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [432 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [69f6489f]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [49a 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6e2fc74c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [49b 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [6e2fc74c]Sending GET_STATE -peer1.org2.example.com | [49c 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Received message GET_STATE from shim -peer1.org2.example.com | [49d 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [49e 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [6e2fc74c]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [49f 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [4a0 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6e2fc74c] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [4a1 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [4a2 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6e2fc74c]Got state. Sending RESPONSE -peer1.org2.example.com | [4a3 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [6e2fc74c]handleGetState serial send RESPONSE -peer1.org2.example.com | [4a4 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Received message RESPONSE from shim -peer1.org2.example.com | [4a5 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6e2fc74c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [4a6 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [6e2fc74c]before send -peer1.org2.example.com | [4a7 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [6e2fc74c]after send -peer1.org2.example.com | [4a8 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [6e2fc74c]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [4a9 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [6e2fc74c]GetState received payload RESPONSE -peer0.org2.example.com | [39e 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [456 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | 2018-01-04 01:50:57.191 UTC [msp] Validate -> DEBU 292 MSP Org2MSP validating identity -peer1.org2.example.com | [4aa 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [39f 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [433 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [458 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]state is ready -orderer.example.com | 2018-01-04 01:50:57.192 UTC [common/config] validateMSP -> DEBU 293 Setting up MSP for org OrdererOrg -peer1.org2.example.com | [4ab 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Move state message COMPLETED -peer0.org2.example.com | [3a0 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [434 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [69f6489f]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [459 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [45a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [065ac20a]enterBusyState trigger event RESPONSE -orderer.example.com | 2018-01-04 01:50:57.192 UTC [msp] NewBccspMsp -> DEBU 294 Creating BCCSP-based MSP instance -peer1.org2.example.com | [4ac 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6e2fc74c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [3a1 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [435 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69f6489f]Move state message TRANSACTION -peer0.org1.example.com | [457 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.192 UTC [msp] Setup -> DEBU 295 Setting up MSP instance OrdererMSP -peer0.org2.example.com | [3a2 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -peer1.org2.example.com | [4ad 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]send state message COMPLETED -peer1.org1.example.com | [436 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69f6489f]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [437 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [438 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69f6489f]sending state message TRANSACTION -peer1.org1.example.com | [439 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69f6489f]Received message TRANSACTION from shim -peer1.org1.example.com | [43a 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [69f6489f]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [45b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message RESPONSE -orderer.example.com | 2018-01-04 01:50:57.192 UTC [msp/identity] newIdentity -> DEBU 296 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3a3 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [4ae 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Received message COMPLETED from shim -peer1.org1.example.com | [43b 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [69f6489f]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [45c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [45d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [3a4 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [43c 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [4af 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [3a5 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [3a6 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [3a7 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [3a8 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [3a9 01-04 01:51:04.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [3aa 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3ab 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3ac 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3ad 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3ae 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [3af 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [45e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message RESPONSE -peer0.org2.example.com | [3b0 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3b1 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3b2 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3b3 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3b4 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [3b5 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [3b6 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [3b7 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3b8 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3b9 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3ba 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3bb 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3bc 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3bd 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -peer0.org2.example.com | [3be 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -peer0.org2.example.com | [3bf 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [3c0 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [3c1 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [3c2 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [3c3 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -peer0.org2.example.com | [3c4 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [3c5 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [3c6 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [3c7 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [3c8 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [3c9 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [3ca 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [43d 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org2.example.com | [4b0 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [45f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Received message RESPONSE from shim -peer0.org2.example.com | [3cb 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -peer1.org1.example.com | [43e 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [43f 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer1.org1.example.com | [440 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [3cc 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [4b1 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 -peer0.org1.example.com | [460 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [461 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [065ac20a]before send -peer0.org1.example.com | [462 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [065ac20a]after send -peer0.org1.example.com | [464 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [065ac20a]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [463 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [065ac20a]Received RESPONSE. Successfully updated state -peer0.org1.example.com | [465 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [3cd 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [441 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org2.example.com | [4b2 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org2.example.com | [3ce 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [466 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Move state message COMPLETED -peer0.org1.example.com | [467 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [468 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]send state message COMPLETED -peer1.org2.example.com | [4b3 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org2.example.com | [3cf 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [442 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [d84fc72c-a00a-4aba-8921-3abf41312ae5] -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer0.org1.example.com | [469 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message COMPLETED from shim -peer0.org2.example.com | [3d0 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [4b4 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [46a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org2.example.com | [3d1 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [4b5 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234,syscc=false,proposal=0xc421ff7130,canname=mycc:1.0 -peer1.org1.example.com | [443 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [46b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [3d2 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer1.org2.example.com | [4b6 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234,syscc=true,proposal=0xc421ff7130,canname=lscc:1.0.2 -peer1.org1.example.com | [444 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [d84fc72c-a00a-4aba-8921-3abf41312ae5] -peer0.org2.example.com | [3d3 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [46c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer1.org2.example.com | [4b7 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org1.example.com | [445 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [3d4 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer1.org2.example.com | [4b8 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [46d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [46e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa,syscc=false,proposal=0xc42202a050,canname=mycc:1.0 -peer0.org2.example.com | [3d5 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [3d6 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.192 UTC [msp/identity] newIdentity -> DEBU 297 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [3d7 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [446 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer0.org1.example.com | [46f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -orderer.example.com | 2018-01-04 01:50:57.192 UTC [msp/identity] newIdentity -> DEBU 298 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [3d8 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [4b9 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [470 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org1.example.com | [447 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org2.example.com | [3d9 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [4ba 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6e2fc74c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [471 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org1.example.com | [472 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [473 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) -peer0.org1.example.com | [474 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [475 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer0.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer0.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer0.org1.example.com | [476 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock -peer0.org1.example.com | [477 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock -peer0.org1.example.com | [478 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 -peer0.org1.example.com | [479 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-mycc-1.0(No such container: dev-peer0.org1.example.com-mycc-1.0) -peer0.org1.example.com | [47a 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -peer0.org1.example.com | [47b 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-mycc-1.0 (No such container: dev-peer0.org1.example.com-mycc-1.0) -peer0.org1.example.com | [47c 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 -peer0.org1.example.com | [47d 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -peer0.org1.example.com | [47e 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -peer0.org1.example.com | [47f 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -peer0.org1.example.com | [480 01-04 01:51:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer0.org1.example.com | ADD binpackage.tar /usr/local/bin -peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org1.example.com | org.hyperledger.fabric.version="1.0.2" \ -peer0.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 -peer0.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [481 01-04 01:51:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -peer0.org1.example.com | [482 01-04 01:51:25.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -peer0.org1.example.com | [483 01-04 01:51:25.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org1.example.com | [484 01-04 01:51:25.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -peer0.org1.example.com | [485 01-04 01:51:25.74 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -peer0.org1.example.com | [486 01-04 01:51:26.23 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 -peer0.org1.example.com | [487 01-04 01:51:26.23 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) -peer0.org1.example.com | [488 01-04 01:51:26.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [489 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org1.example.com | [48a 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [48b 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org1.example.com | [48c 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer0.org1.example.com | [48d 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer0.org1.example.com | [48e 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org1.example.com | [48f 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer0.org1.example.com | [490 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org1.example.com | [491 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [3da 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [4bb 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [4bc 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [4bd 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6e2fc74c]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [4be 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Move state message TRANSACTION -peer0.org2.example.com | [3db 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [3dc 01-04 01:51:04.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [3dd 01-04 01:51:04.23 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [3de 01-04 01:51:04.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [3df 01-04 01:51:04.24 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [3e0 01-04 01:51:04.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [3e1 01-04 01:51:04.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [3e2 01-04 01:51:04.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [3e3 01-04 01:51:04.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [3e4 01-04 01:51:04.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [3e5 01-04 01:51:04.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [3e6 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4216cdf40), Data:(*common.BlockData)(0xc421aade40), Metadata:(*common.BlockMetadata)(0xc421aade80)}, doMVCCValidation=true -peer0.org2.example.com | [3e7 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [3e8 01-04 01:51:04.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -peer0.org2.example.com | [3e9 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x8b, 0x73, 0x62, 0xf8, 0xa2, 0xa6, 0xcb, 0xf, 0x2a, 0x4e, 0xc3, 0x3a, 0xf, 0x19, 0x6c, 0x27, 0x97, 0xa5, 0xbf, 0x5e, 0x9, 0x65, 0x6b, 0x60, 0x29, 0xce, 0xda, 0x37, 0xfb, 0x33, 0x6, 0x65} txOffsets= -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=11972 -peer0.org2.example.com | ] -peer0.org2.example.com | [3ea 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx ID: [] to index -peer1.org2.example.com | [4bf 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [448 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69f6489f]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [449 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69f6489f]Move state message COMPLETED -peer1.org1.example.com | [44a 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [69f6489f]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [44b 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [69f6489f]send state message COMPLETED -peer1.org1.example.com | [44c 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [69f6489f]Received message COMPLETED from shim -peer1.org1.example.com | [44d 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69f6489f]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [44e 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [69f6489f-d623-4163-8c60-d4e3c94f9d5a]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [3eb 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [3ec 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org2.example.com | [3ed 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -peer0.org2.example.com | [3ee 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [3ef 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [3f0 01-04 01:51:04.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [3f1 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org2.example.com | [3f2 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [3f3 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org2.example.com | [3f4 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [3f5 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -peer0.org2.example.com | [3f6 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [3f7 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [3f8 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [3f9 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [3fa 01-04 01:51:04.28 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [3fb 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [3fc 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220641b0 -peer0.org2.example.com | [3fd 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [3fe 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [3ff 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org2.example.com | [400 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [401 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [402 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421fcac30, header 0xc4220641e0 -peer0.org2.example.com | [403 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [404 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 91df3ef8f53a15f467e6691b9a857aef7f33328f40650d883ce159018cad0251 -peer0.org2.example.com | [405 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 91df3ef8f53a15f467e6691b9a857aef7f33328f40650d883ce159018cad0251 channel id: -peer0.org2.example.com | [406 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 91df3ef8f53a15f467e6691b9a857aef7f33328f40650d883ce159018cad0251 channel id: version: 1.0.2 -peer0.org2.example.com | [407 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=91df3ef8f53a15f467e6691b9a857aef7f33328f40650d883ce159018cad0251,syscc=true,proposal=0xc421fcac30,canname=lscc:1.0.2 -peer0.org2.example.com | [408 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org2.example.com | [409 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [40a 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org2.example.com | [40b 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [91df3ef8]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [40c 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [40d 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [40e 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [91df3ef8]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [40f 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [91df3ef8]Move state message TRANSACTION -peer0.org2.example.com | [410 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [91df3ef8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [411 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [492 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [493 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message READY -peer1.org2.example.com | [4c0 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [4c1 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]sending state message TRANSACTION -peer0.org2.example.com | [412 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [91df3ef8]sending state message TRANSACTION -peer1.org1.example.com | [44f 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:69f6489f-d623-4163-8c60-d4e3c94f9d5a -peer1.org1.example.com | [450 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [494 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org1.example.com | [495 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [065ac20a]Entered state ready -peer0.org2.example.com | [413 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [91df3ef8]Received message TRANSACTION from shim -peer0.org2.example.com | [414 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [91df3ef8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [415 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [91df3ef8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [4c2 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Received message TRANSACTION from shim -peer0.org1.example.com | [496 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -peer0.org1.example.com | [497 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message READY -peer0.org1.example.com | [498 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -peer0.org1.example.com | [499 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org1.example.com | [49a 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [49b 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org1.example.com | [49c 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [416 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [91df3ef8]Transaction completed. Sending COMPLETED -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org2.example.com | [417 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [91df3ef8]Move state message COMPLETED -peer0.org2.example.com | [418 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [91df3ef8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [451 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [53a4afd9-c85d-4cf9-98f4-e74997b797e7] -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [49d 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [4c3 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6e2fc74c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org2.example.com | [419 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [91df3ef8]send state message COMPLETED -peer0.org1.example.com | [49e 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [452 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [4c4 01-04 01:51:46.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6e2fc74c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [49f 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]sendExecuteMsg trigger event INIT -peer0.org2.example.com | [41a 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [91df3ef8]Received message COMPLETED from shim -peer1.org1.example.com | [453 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [4c5 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [6e2fc74c]Sending GET_STATE -peer0.org1.example.com | [4a0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message INIT -peer0.org2.example.com | [41b 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [91df3ef8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org2.example.com | [41c 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [91df3ef8f53a15f467e6691b9a857aef7f33328f40650d883ce159018cad0251]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [454 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4220470c0), Data:(*common.BlockData)(0xc4218d3040), Metadata:(*common.BlockMetadata)(0xc4218d3080)}, doMVCCValidation=true -peer1.org2.example.com | [4c6 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Received message GET_STATE from shim -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [4a1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org2.example.com | [4c7 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [4c8 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [6e2fc74c]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [41d 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:91df3ef8f53a15f467e6691b9a857aef7f33328f40650d883ce159018cad0251 -peer1.org1.example.com | [455 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | 2018-01-04 01:50:57.193 UTC [msp] Validate -> DEBU 299 MSP OrdererMSP validating identity -peer0.org2.example.com | [41e 01-04 01:51:04.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [4a2 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.193 UTC [msp] Setup -> DEBU 29a Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.193 UTC [msp] Setup -> DEBU 29b MSP manager setup complete, setup 3 msps -peer1.org1.example.com | [456 01-04 01:51:28.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [4c9 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [41f 01-04 01:51:04.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [457 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] marked as valid by state validator -peer0.org1.example.com | [4a3 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message INIT -peer0.org1.example.com | [4a4 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message PUT_STATE from shim -peer0.org1.example.com | [4a5 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [4a6 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4a7 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]state is ready -peer0.org1.example.com | [4a8 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [4a9 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [065ac20a]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [4aa 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message RESPONSE -peer0.org1.example.com | [4ab 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [4ac 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4ad 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message RESPONSE -peer0.org1.example.com | [4ae 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message PUT_STATE from shim -peer0.org1.example.com | [4af 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [4b0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4b1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]state is ready -peer0.org1.example.com | [4b2 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [4b3 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [065ac20a]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [4b4 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message RESPONSE -peer0.org1.example.com | [4b5 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [4b6 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [4b7 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message RESPONSE -peer0.org1.example.com | [4b8 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message COMPLETED from shim -peer0.org1.example.com | [4b9 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [4ba 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [4bb 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -peer0.org1.example.com | [4bc 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [4bd 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [4be 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [420 01-04 01:51:04.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [421 01-04 01:51:04.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [422 01-04 01:51:26.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 29c Returning policy Writers for evaluation -peer1.org2.example.com | [4ca 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6e2fc74c] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [458 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x1, 0x89, 0x46, 0x2c, 0xf9, 0x7a, 0xc5, 0x26, 0xa0, 0x0, 0x75, 0xd, 0x2c, 0xe4, 0xad, 0x19, 0xe1, 0x78, 0x94, 0x3b, 0x7f, 0xa4, 0x2b, 0xe, 0x79, 0xfc, 0x32, 0xb3, 0x54, 0x7b, 0x83, 0x63} txOffsets= -peer0.org2.example.com | [423 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42228f4a0 -peer0.org1.example.com | [4bf 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [546e9e81-9b46-40bf-8ab1-e3c2a821dfb7] -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 29d In commit adding relative sub-policy Org1MSP/Writers to Application -peer1.org1.example.com | txId=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa locPointer=offset=70, bytesLength=3389 -peer0.org1.example.com | [4c0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [4cb 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [424 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 29e Returning policy Admins for evaluation -peer1.org1.example.com | ] -peer1.org1.example.com | [459 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to index -peer1.org2.example.com | [4cc 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6e2fc74c]Got state. Sending RESPONSE -peer0.org2.example.com | [425 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 29f In commit adding relative sub-policy Org1MSP/Admins to Application -peer0.org1.example.com | [4c1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa channel id: businesschannel chaincode id: name:"lscc" -peer1.org1.example.com | [45a 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx number:[0] ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to blockNumTranNum index -peer1.org2.example.com | [4cd 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [6e2fc74c]handleGetState serial send RESPONSE -peer0.org2.example.com | [426 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a0 Returning policy Readers for evaluation -peer1.org1.example.com | [45b 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org1.example.com | [4c2 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org2.example.com | [427 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4ce 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Received message RESPONSE from shim -peer1.org2.example.com | [4cf 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6e2fc74c]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [4d0 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [6e2fc74c]before send -peer1.org2.example.com | [4d1 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [6e2fc74c]after send -peer1.org2.example.com | [4d2 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [6e2fc74c]Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [4d3 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [6e2fc74c]GetState received payload RESPONSE -peer1.org2.example.com | [4d4 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [4d5 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Move state message COMPLETED -peer1.org2.example.com | [4d6 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6e2fc74c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [4d7 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]send state message COMPLETED -peer1.org2.example.com | [4d8 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Received message COMPLETED from shim -peer1.org2.example.com | [4d9 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [4da 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [4db 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 -peer1.org2.example.com | [4dc 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [428 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [45c 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer1.org1.example.com | [45d 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [4c3 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2a1 In commit adding relative sub-policy Org1MSP/Readers to Application -peer1.org2.example.com | [4dd 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a2 Returning policy Writers for evaluation -peer0.org2.example.com | [429 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4222db8b0, header 0xc42228f4d0 -peer0.org1.example.com | [4c4 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa,syscc=true,proposal=0xc42202a050,canname=escc:1.0.2 -peer0.org2.example.com | [42a 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [4c5 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org2.example.com | [4de 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2a3 In commit adding relative sub-policy Org2MSP/Writers to Application -peer1.org1.example.com | [45e 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [42b 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -peer0.org2.example.com | [42c 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] -peer0.org1.example.com | [4c6 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [4df 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org1.example.com | [45f 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer0.org2.example.com | [42d 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a4 Returning policy Admins for evaluation -peer1.org1.example.com | [460 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [461 01-04 01:51:28.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org1.example.com | [462 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [42e 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0154c929-ad1b-460e-b160-fdc3026e6801] -peer0.org2.example.com | [42f 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 channel id: businesschannel -peer0.org2.example.com | [430 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 channel id: businesschannel version: 1.0.2 -peer0.org2.example.com | [431 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917,syscc=true,proposal=0xc4222db8b0,canname=lscc:1.0.2 -peer1.org1.example.com | [463 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2a5 In commit adding relative sub-policy Org2MSP/Admins to Application -peer1.org2.example.com | [4e0 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org2.example.com) -peer0.org1.example.com | [4c7 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org2.example.com | [432 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org1.example.com | [464 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a6 Returning policy Readers for evaluation -peer1.org2.example.com | [4e1 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer0.org1.example.com | [4c8 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [433 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [465 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [466 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -peer1.org1.example.com | [467 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer1.org1.example.com | [468 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [469 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [46a 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [46b 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [46c 01-04 01:51:28.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [46d 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [46e 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org1.example.com | [46f 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org1.example.com | [470 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421b22fc0 -peer1.org1.example.com | [471 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -peer1.org1.example.com | [472 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [473 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [474 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer1.org1.example.com | [475 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [434 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2a7 In commit adding relative sub-policy Org2MSP/Readers to Application -peer1.org2.example.com | [4e2 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer0.org1.example.com | [4c9 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [4ca 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [4cb 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [4cc 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message TRANSACTION -peer0.org1.example.com | [4cd 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [435 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f30b1002]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer1.org1.example.com | [476 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [4ce 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a8 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a9 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2aa Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2ab In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2ac Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2ad In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2ae Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2af In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b0 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b1 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b2 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b3 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b4 Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2b5 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b6 Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2b7 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b8 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2b9 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2ba Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2bb In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2bc Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2bd In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2be Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2bf In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2c0 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2c1 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2c2 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2c3 In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2c4 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2c5 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2c6 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2c7 In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org2.example.com | [436 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [4e3 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org2.example.com-mycc-1.0) lock -peer0.org2.example.com | [437 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [438 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f30b1002]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [439 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Move state message TRANSACTION -peer0.org2.example.com | [43a 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [43b 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [43c 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]sending state message TRANSACTION -peer0.org2.example.com | [43d 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]Received message TRANSACTION from shim -peer0.org2.example.com | [43e 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f30b1002]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [477 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421406a80, header channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -peer0.org1.example.com | [4cf 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2c8 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2c9 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2ca Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2cb In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2cc Returning policy OrdererOrg/Admins for evaluation -peer0.org2.example.com | [43f 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f30b1002]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [440 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [f30b1002]Sending GET_STATE -peer0.org2.example.com | [441 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Received message GET_STATE from shim -peer0.org2.example.com | [442 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [443 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f30b1002]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [444 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [445 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f30b1002] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org2.example.com | [446 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [447 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f30b1002]No state associated with key: mycc. Sending RESPONSE with an empty payload -peer0.org2.example.com | [448 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f30b1002]handleGetState serial send RESPONSE -peer0.org2.example.com | [449 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]Received message RESPONSE from shim -peer0.org2.example.com | [44a 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f30b1002]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [478 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2cd In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2ce Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2cf In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2d0 Returning dummy reject all policy because Admins could not be found in /Application/Admins -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2d1 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2d2 Returning dummy reject all policy because Readers could not be found in /Application/Readers -orderer.example.com | 2018-01-04 01:50:57.196 UTC [policies] GetPolicy -> DEBU 2d3 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.196 UTC [policies] GetPolicy -> DEBU 2d4 Returning dummy reject all policy because Writers could not be found in /Application/Writers -orderer.example.com | 2018-01-04 01:50:57.196 UTC [policies] GetPolicy -> DEBU 2d5 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2d6 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2d7 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2d8 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2d9 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2da Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2db Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2dc Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2dd Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2de Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2df Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2e0 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:57.197 UTC [common/configtx] addToMap -> DEBU 2e1 Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-04 01:50:57.197 UTC [common/configtx] addToMap -> DEBU 2e2 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.197 UTC [policies] GetPolicy -> DEBU 2e3 Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | 2018-01-04 01:50:57.197 UTC [cauthdsl] func1 -> DEBU 2e4 0xc420026898 gate 1515030657197156100 evaluation starts -orderer.example.com | 2018-01-04 01:50:57.197 UTC [cauthdsl] func2 -> DEBU 2e5 0xc420026898 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [44b 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f30b1002]before send -peer0.org1.example.com | [4d0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Received message TRANSACTION from shim -peer0.org1.example.com | [4d1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [4d2 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [065ac20a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [4d3 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [4d4 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [4d5 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [4d6 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Move state message COMPLETED -peer0.org1.example.com | [4d7 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [4d8 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]send state message COMPLETED -peer0.org1.example.com | [4d9 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message COMPLETED from shim -peer0.org1.example.com | [4da 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [4db 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [4dc 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -peer0.org1.example.com | [4dd 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [4de 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [4df 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [4e0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [546e9e81-9b46-40bf-8ab1-e3c2a821dfb7] -peer0.org1.example.com | [4e1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [4e2 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer0.org1.example.com | [4e3 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [4e4 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org1.example.com | [4e5 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [4e4 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org2.example.com-mycc-1.0) lock -peer0.org2.example.com | [44c 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f30b1002]after send -peer0.org2.example.com | [44d 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f30b1002]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [44e 01-04 01:51:26.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [f30b1002]GetState received payload RESPONSE -peer0.org2.example.com | [44f 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [f30b1002]Inside putstate -peer0.org2.example.com | [450 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [f30b1002]Sending PUT_STATE -peer0.org2.example.com | [451 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Received message PUT_STATE from shim -peer0.org2.example.com | [452 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [453 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [454 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f30b1002]state is ready -peer0.org2.example.com | [455 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f30b1002]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [456 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f30b1002]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [457 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Move state message RESPONSE -peer0.org2.example.com | [458 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [459 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [45a 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]sending state message RESPONSE -peer0.org2.example.com | [45b 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]Received message RESPONSE from shim -peer0.org2.example.com | [45c 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f30b1002]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [45d 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f30b1002]before send -peer0.org2.example.com | [45e 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f30b1002]after send -peer0.org2.example.com | [45f 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f30b1002]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [460 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [f30b1002]Received RESPONSE. Successfully updated state -peer0.org2.example.com | [461 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [462 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]Move state message COMPLETED -peer0.org2.example.com | [463 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f30b1002]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [464 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]send state message COMPLETED -peer0.org2.example.com | [465 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Received message COMPLETED from shim -peer0.org2.example.com | [466 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [467 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [468 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -peer0.org2.example.com | [469 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [46a 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917,syscc=false,proposal=0xc4222db8b0,canname=mycc:1.0 -peer0.org2.example.com | [46b 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -peer0.org2.example.com | [46c 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer0.org2.example.com | [46d 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer0.org2.example.com | [46e 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [46f 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org2.example.com) -peer0.org2.example.com | [470 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer1.org1.example.com | [479 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [47a 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | 2018-01-04 01:50:57.197 UTC [cauthdsl] func2 -> DEBU 2e6 0xc420026898 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:57.197 UTC [msp/identity] newIdentity -> DEBU 2e7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | [471 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org2.example.com | [4e5 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-mycc-1.0 -peer0.org1.example.com | [4e6 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ae5290 -peer0.org1.example.com | [4e7 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -peer0.org1.example.com | [4e8 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [4e9 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [4ea 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer0.org1.example.com | [4eb 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [4ec 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [4ed 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [4ee 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421963500, header channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -peer0.org1.example.com | [4ef 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [4f0 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [4f1 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [4f2 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [4f3 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] -peer0.org1.example.com | [4f4 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [4f5 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [4f6 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4959d2df-cad6-408e-9f89-41b0502faeb5] -peer0.org1.example.com | [4f7 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=083fae01-a28d-4199-9e61-2027e6b92162,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [4f8 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa chaindID businesschannel -peer0.org2.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer1.org1.example.com | [47b 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [4f9 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | [4e6 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-mycc-1.0(No such container: dev-peer1.org2.example.com-mycc-1.0) -peer1.org2.example.com | [4e7 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) -peer0.org1.example.com | [4fa 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | [47c 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [4e8 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-mycc-1.0 (No such container: dev-peer1.org2.example.com-mycc-1.0) -peer0.org1.example.com | [4fb 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [47d 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org2.example.com | [4e9 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org2.example.com-mycc-1.0 -peer0.org1.example.com | [4fc 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [083fae01]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [47e 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org2.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -peer1.org2.example.com | [4ea 01-04 01:51:46.31 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -peer1.org1.example.com | [47f 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [1396a04f-1707-4c1e-ad88-cfe752dd2bed] -peer0.org1.example.com | [4fd 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org2.example.com | [472 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org2.example.com-mycc-1.0) lock -peer1.org2.example.com | [4eb 01-04 01:51:46.32 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 -peer1.org1.example.com | [480 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=f1663d07-119a-4185-b243-b8fa57c6fad1,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [4fe 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [083fae01]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org2.example.com | [473 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org2.example.com-mycc-1.0) lock -peer1.org2.example.com | [4ec 01-04 01:51:46.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org1.example.com | [481 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 chaindID businesschannel -peer0.org1.example.com | [4ff 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083fae01]Move state message TRANSACTION -peer1.org2.example.com | [4ed 01-04 01:51:46.34 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org2.example.com | [474 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-mycc-1.0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [482 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org1.example.com | [500 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083fae01]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer0.org2.example.com | [475 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-mycc-1.0(No such container: dev-peer0.org2.example.com-mycc-1.0) -orderer.example.com | 2018-01-04 01:50:57.197 UTC [msp] SatisfiesPrincipal -> DEBU 2e8 Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.197 UTC [cauthdsl] func2 -> DEBU 2e9 0xc420026898 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:57.197 UTC [msp/identity] Verify -> DEBU 2ea Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -orderer.example.com | 00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -orderer.example.com | 2018-01-04 01:50:57.197 UTC [msp/identity] Verify -> DEBU 2eb Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -orderer.example.com | 00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -orderer.example.com | 00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -orderer.example.com | 00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -orderer.example.com | 00000040 de 20 dd a7 3b f5 |. ..;.| -peer0.org2.example.com | [476 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) -peer1.org1.example.com | [483 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [484 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | ADD binpackage.tar /usr/local/bin -peer0.org2.example.com | [477 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-mycc-1.0 (No such container: dev-peer0.org2.example.com-mycc-1.0) -orderer.example.com | 2018-01-04 01:50:57.197 UTC [cauthdsl] func2 -> DEBU 2ec 0xc420026898 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [501 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [485 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f1663d07]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | [478 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org2.example.com-mycc-1.0 -peer1.org1.example.com | [486 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [502 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083fae01]sending state message TRANSACTION -peer1.org2.example.com | org.hyperledger.fabric.version="1.0.2" \ -peer0.org2.example.com | [479 01-04 01:51:26.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -orderer.example.com | 2018-01-04 01:50:57.197 UTC [cauthdsl] func1 -> DEBU 2ed 0xc420026898 gate 1515030657197156100 evaluation succeeds -peer1.org1.example.com | [487 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f1663d07]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org2.example.com | [47a 01-04 01:51:26.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2ee Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [503 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083fae01]Received message TRANSACTION from shim -peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 -peer1.org1.example.com | [488 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f1663d07]Move state message TRANSACTION -peer0.org2.example.com | [47b 01-04 01:51:26.48 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2ef Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f0 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [504 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [083fae01]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [489 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f1663d07]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [48a 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [4ee 01-04 01:51:46.35 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -peer1.org2.example.com | [4ef 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [4f0 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [4f1 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [4f2 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421e166f0 -peer1.org2.example.com | [4f3 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -peer1.org2.example.com | [4f4 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [4f5 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [4f6 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer1.org2.example.com | [4f7 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [4f8 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [4f9 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421896000, header channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -peer1.org2.example.com | [4fa 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [4fb 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [4fc 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [4fd 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [4fe 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] -peer1.org2.example.com | [4ff 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [500 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [501 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [fdddf080-86e1-4b3b-83b1-01b58e6df4de] -peer1.org2.example.com | [502 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=5380496a-ec2f-4f7b-a79b-09692ccb9d00,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [503 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 chaindID businesschannel -peer1.org2.example.com | [504 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [505 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [506 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [507 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5380496a]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [508 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [509 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [5380496a]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [50a 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5380496a]Move state message TRANSACTION -peer1.org2.example.com | [50b 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5380496a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [50c 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [50d 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5380496a]sending state message TRANSACTION -peer1.org2.example.com | [50e 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5380496a]Received message TRANSACTION from shim -peer1.org2.example.com | [50f 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5380496a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [510 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [5380496a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [511 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [512 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [513 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [514 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [515 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [47c 01-04 01:51:26.48 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f1 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f2 Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [505 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [083fae01]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [516 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer1.org1.example.com | [48b 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f1663d07]sending state message TRANSACTION -peer1.org1.example.com | [48c 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f1663d07]Received message TRANSACTION from shim -peer1.org1.example.com | [48d 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f1663d07]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [48e 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f1663d07]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | ADD binpackage.tar /usr/local/bin -peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f3 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [506 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [517 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [2ed0c976-e065-453d-81a0-7f950acb1550] -peer1.org2.example.com | [518 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f4 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [507 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [508 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [509 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f5 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [519 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [2ed0c976-e065-453d-81a0-7f950acb1550] -peer1.org2.example.com | [51a 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer1.org2.example.com | [51b 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer1.org2.example.com | [51c 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer1.org2.example.com | [51d 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5380496a]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [51e 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5380496a]Move state message COMPLETED -peer1.org2.example.com | [51f 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5380496a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | org.hyperledger.fabric.version="1.0.2" \ -peer0.org2.example.com | org.hyperledger.fabric.base.version="0.3.2" -peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 -peer0.org2.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [47d 01-04 01:51:26.48 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -peer0.org2.example.com | [47e 01-04 01:51:28.30 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer0.org2.example.com | [47f 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer0.org2.example.com | [480 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [481 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [482 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [483 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42204e6f0 -peer0.org2.example.com | [484 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -peer1.org1.example.com | [48f 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [490 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [50a 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org1.example.com | [50b 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | [50c 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [42d831a5-14fa-435f-b0a5-1003d1f26b66] -peer0.org1.example.com | [50d 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [50e 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [42d831a5-14fa-435f-b0a5-1003d1f26b66] -peer0.org1.example.com | [50f 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [510 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer0.org1.example.com | [511 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [512 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083fae01]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [485 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [486 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f6 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [491 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [492 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [493 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [487 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f7 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [520 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5380496a]send state message COMPLETED -peer1.org1.example.com | [494 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [495 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [34f781c9-fe5d-46d3-a4cd-89f152fbc9e1] -peer0.org2.example.com | [488 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [513 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083fae01]Move state message COMPLETED -peer0.org1.example.com | [514 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [083fae01]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [515 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083fae01]send state message COMPLETED -peer0.org1.example.com | [516 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083fae01]Received message COMPLETED from shim -peer0.org1.example.com | [517 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083fae01]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [518 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083fae01-a28d-4199-9e61-2027e6b92162]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [519 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:083fae01-a28d-4199-9e61-2027e6b92162 -peer0.org2.example.com | [489 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [48a 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421af2000, header channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -peer0.org2.example.com | [48b 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [48c 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [48d 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [48e 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [48f 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] -peer0.org2.example.com | [490 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [491 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [492 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [94f1fd12-1701-4a26-8513-d97cf10b5a23] -peer0.org2.example.com | [493 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=34470b14-deb4-4ac6-bda2-5169a43f4db5,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org2.example.com | [494 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa chaindID businesschannel -peer0.org2.example.com | [495 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org2.example.com | [496 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [497 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org2.example.com | [498 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34470b14]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [499 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [49a 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [34470b14]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [49b 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34470b14]Move state message TRANSACTION -peer0.org2.example.com | [49c 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34470b14]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [49d 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [49e 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34470b14]sending state message TRANSACTION -peer0.org2.example.com | [49f 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34470b14]Received message TRANSACTION from shim -peer0.org2.example.com | [4a0 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34470b14]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [4a1 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [34470b14]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [4a2 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [4a3 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [4a4 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [4a5 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [4a6 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [4a7 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [4a8 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [e056b323-47f2-4c86-a65d-0766b1b5f9f3] -peer0.org2.example.com | [4a9 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [4aa 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [e056b323-47f2-4c86-a65d-0766b1b5f9f3] -peer0.org2.example.com | [4ab 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [4ac 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer0.org2.example.com | [4ad 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [4ae 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34470b14]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [4af 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34470b14]Move state message COMPLETED -peer0.org2.example.com | [4b0 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [34470b14]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [4b1 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [34470b14]send state message COMPLETED -peer0.org2.example.com | [4b2 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [34470b14]Received message COMPLETED from shim -peer0.org2.example.com | [4b3 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34470b14]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [4b4 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [34470b14-deb4-4ac6-bda2-5169a43f4db5]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [4b5 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:34470b14-deb4-4ac6-bda2-5169a43f4db5 -peer0.org2.example.com | [4b6 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [4b7 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [94f1fd12-1701-4a26-8513-d97cf10b5a23] -peer0.org2.example.com | [4b8 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [4b9 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [4ba 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4224a32c0), Data:(*common.BlockData)(0xc421dd3100), Metadata:(*common.BlockMetadata)(0xc421dd3140)}, doMVCCValidation=true -peer0.org2.example.com | [4bb 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [4bc 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [4bd 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] marked as valid by state validator -peer0.org2.example.com | [4be 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x1, 0x89, 0x46, 0x2c, 0xf9, 0x7a, 0xc5, 0x26, 0xa0, 0x0, 0x75, 0xd, 0x2c, 0xe4, 0xad, 0x19, 0xe1, 0x78, 0x94, 0x3b, 0x7f, 0xa4, 0x2b, 0xe, 0x79, 0xfc, 0x32, 0xb3, 0x54, 0x7b, 0x83, 0x63} txOffsets= -peer0.org2.example.com | txId=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa locPointer=offset=70, bytesLength=3389 -peer0.org2.example.com | ] -peer0.org2.example.com | [4bf 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to index -peer0.org2.example.com | [4c0 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx number:[0] ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to blockNumTranNum index -peer0.org2.example.com | [4c1 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org2.example.com | [4c2 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer0.org2.example.com | [4c3 01-04 01:51:28.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [4c4 01-04 01:51:45.20 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b -peer0.org2.example.com | [4c5 01-04 01:51:45.20 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org2.example.com | [4c6 01-04 01:51:45.20 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-mycc-1.0 -peer0.org2.example.com | [4c7 01-04 01:51:45.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-mycc-1.0-15b571b3ce849066b7ec74497da3b27e54e0df1345daff3951b94245ce09c42b -peer0.org2.example.com | [4c8 01-04 01:51:45.73 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org2.example.com-mycc-1.0 -peer0.org2.example.com | [4c9 01-04 01:51:45.73 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org2.example.com-mycc-1.0) -peer0.org2.example.com | [4ca 01-04 01:51:45.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [4cb 01-04 01:51:45.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer0.org2.example.com | [4cc 01-04 01:51:45.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [4cd 01-04 01:51:45.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer0.org2.example.com | [4ce 01-04 01:51:45.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer0.org2.example.com | [4cf 01-04 01:51:45.77 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer0.org2.example.com | [4d0 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer0.org2.example.com | [4d1 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer0.org2.example.com | [4d2 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [4d3 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [4d4 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [4d5 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Move state message READY -peer0.org2.example.com | [4d6 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: READY in state established -peer0.org2.example.com | [4d7 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [f30b1002]Entered state ready -peer0.org2.example.com | [4d8 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -peer0.org2.example.com | [4d9 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]sending state message READY -peer0.org2.example.com | [4da 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -peer0.org2.example.com | [4db 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer0.org2.example.com | [4dc 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [4dd 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org2.example.com | [4de 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f30b1002]Inside sendExecuteMessage. Message INIT -peer0.org2.example.com | [4df 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [4e0 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f8 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [496 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [521 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5380496a]Received message COMPLETED from shim -peer0.org1.example.com | [51a 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [4e1 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f30b1002]sendExecuteMsg trigger event INIT -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f9 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [497 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [34f781c9-fe5d-46d3-a4cd-89f152fbc9e1] -peer1.org2.example.com | [522 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5380496a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [51b 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4959d2df-cad6-408e-9f89-41b0502faeb5] -peer0.org2.example.com | [4e2 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Move state message INIT -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fa Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fb Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [523 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5380496a-ec2f-4f7b-a79b-09692ccb9d00]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [4e3 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: INIT in state ready -peer1.org1.example.com | [498 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fc Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fd Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fe Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2ff Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/configtx] recurseConfigMap -> DEBU 300 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/configtx] processConfig -> DEBU 301 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 302 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 303 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 304 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 305 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 306 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 307 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 308 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 309 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 30a Initializing protos for *struct {} -peer0.org2.example.com | [4e4 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4e5 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]sending state message INIT -peer1.org1.example.com | [499 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer1.org1.example.com | [49a 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer1.org1.example.com | [49b 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f1663d07]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [49c 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f1663d07]Move state message COMPLETED -peer1.org1.example.com | [49d 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f1663d07]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [4e6 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Received message PUT_STATE from shim -peer0.org2.example.com | [4e7 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [4e8 01-04 01:51:45.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4e9 01-04 01:51:45.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f30b1002]state is ready -peer0.org2.example.com | [4ea 01-04 01:51:45.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f30b1002]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [4eb 01-04 01:51:45.79 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f30b1002]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [4ec 01-04 01:51:45.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Move state message RESPONSE -peer0.org2.example.com | [4ed 01-04 01:51:45.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [4ee 01-04 01:51:45.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4ef 01-04 01:51:45.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]sending state message RESPONSE -peer0.org2.example.com | [4f0 01-04 01:51:45.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Received message PUT_STATE from shim -peer0.org2.example.com | [4f1 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [4f2 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4f3 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f30b1002]state is ready -peer0.org2.example.com | [4f4 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f30b1002]Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [4f5 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f30b1002]enterBusyState trigger event RESPONSE -peer0.org2.example.com | [4f6 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Move state message RESPONSE -peer0.org2.example.com | [4f7 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org2.example.com | [4f8 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [4f9 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]sending state message RESPONSE -peer0.org2.example.com | [4fa 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Received message COMPLETED from shim -peer0.org2.example.com | [4fb 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [4fc 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [524 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5380496a-ec2f-4f7b-a79b-09692ccb9d00 -peer1.org2.example.com | [525 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [526 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917, error Chaincode mycc is already instantiated -peer1.org2.example.com | [527 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [fdddf080-86e1-4b3b-83b1-01b58e6df4de] -peer0.org2.example.com | [4fd 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -peer0.org2.example.com | [4fe 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [51c 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [528 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 returned error Chaincode mycc is already instantiated -orderer.example.com | 2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 30b Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 30c Proposed new policy Writers for Application -peer0.org2.example.com | [4ff 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [500 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [51d 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [49e 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f1663d07]send state message COMPLETED -peer1.org1.example.com | [49f 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f1663d07]Received message COMPLETED from shim -peer0.org2.example.com | [501 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0154c929-ad1b-460e-b160-fdc3026e6801] -peer0.org2.example.com | [502 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [503 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 channel id: businesschannel chaincode id: name:"lscc" -peer0.org2.example.com | [504 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org2.example.com | [505 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 channel id: businesschannel version: 1.0.2 -peer0.org2.example.com | [506 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917,syscc=true,proposal=0xc4222db8b0,canname=escc:1.0.2 -peer0.org2.example.com | [507 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org2.example.com | [529 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [52a 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [52b 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4215c0980), Data:(*common.BlockData)(0xc421e28020), Metadata:(*common.BlockMetadata)(0xc421e28060)}, doMVCCValidation=true -peer1.org2.example.com | [52c 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [52d 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -peer1.org2.example.com | [52e 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xce, 0x54, 0x20, 0x1a, 0xf4, 0x6a, 0xac, 0x8f, 0xbc, 0x59, 0x8, 0xbf, 0xd7, 0xbd, 0x23, 0x20, 0x17, 0xe6, 0x36, 0xd, 0xbe, 0xfa, 0x91, 0x3, 0x38, 0x61, 0x2e, 0xf1, 0x4, 0x9f, 0x6e, 0xa2} txOffsets= -peer1.org2.example.com | txId=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 locPointer=offset=70, bytesLength=3388 -peer1.org2.example.com | ] -peer1.org2.example.com | [52f 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to index -peer1.org2.example.com | [530 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to blockNumTranNum index -peer1.org2.example.com | [531 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49881], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org2.example.com | [508 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [4a0 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f1663d07]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [51e 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4221a2000), Data:(*common.BlockData)(0xc421879dc0), Metadata:(*common.BlockMetadata)(0xc421879e00)}, doMVCCValidation=true -peer0.org1.example.com | [51f 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [509 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 30d Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 30e Initializing protos for *config.OrganizationProtos -peer0.org2.example.com | [50a 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f30b1002]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [4a1 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f1663d07-119a-4185-b243-b8fa57c6fad1]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 30f Processing field: MSP -peer0.org2.example.com | [50b 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [520 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [50c 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [50d 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f30b1002]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [50e 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Move state message TRANSACTION -peer0.org2.example.com | [50f 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [510 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [511 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]sending state message TRANSACTION -peer0.org2.example.com | [512 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [513 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer0.org2.example.com | [514 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [515 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org2.example.com | [516 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [517 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org2.example.com | [518 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer0.org2.example.com | [519 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [51a 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -peer0.org2.example.com | [51b 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -peer0.org2.example.com | [51c 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [51d 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [51e 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [51f 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [520 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [521 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]Received message TRANSACTION from shim -peer0.org2.example.com | [522 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f30b1002]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [523 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f30b1002]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [524 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org2.example.com | [525 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [526 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [527 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]Move state message COMPLETED -peer0.org2.example.com | [528 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f30b1002]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [529 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f30b1002]send state message COMPLETED -peer0.org2.example.com | [52a 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f30b1002]Received message COMPLETED from shim -peer0.org2.example.com | [52b 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [52c 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [52d 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -peer0.org2.example.com | [52e 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [52f 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org2.example.com | [530 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org2.example.com | [531 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [0154c929-ad1b-460e-b160-fdc3026e6801] -peer0.org2.example.com | [532 01-04 01:51:45.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org2.example.com | [533 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer0.org2.example.com | [535 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [536 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [534 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer0.org2.example.com | [537 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [538 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217959b0 -peer0.org2.example.com | [539 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -peer0.org2.example.com | [53a 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [53b 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [53c 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org2.example.com | [53d 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [53e 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [53f 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422092000, header channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -peer1.org2.example.com | [532 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer1.org2.example.com | [533 01-04 01:51:47.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [534 01-04 01:52:06.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab -peer1.org2.example.com | [535 01-04 01:52:06.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer1.org2.example.com | [536 01-04 01:52:06.58 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org2.example.com-mycc-1.0 -peer1.org2.example.com | [537 01-04 01:52:06.66 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-mycc-1.0-26c2ef32838554aac4f7ad6f100aca865e87959c9a126e86d764c8d01f8346ab -peer1.org2.example.com | [538 01-04 01:52:07.12 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org2.example.com-mycc-1.0 -peer1.org2.example.com | [539 01-04 01:52:07.12 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org2.example.com-mycc-1.0) -peer1.org1.example.com | [4a2 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f1663d07-119a-4185-b243-b8fa57c6fad1 -peer1.org1.example.com | [4a3 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [4a4 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917, error Chaincode mycc is already instantiated -peer1.org1.example.com | [4a5 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [1396a04f-1707-4c1e-ad88-cfe752dd2bed] -peer0.org2.example.com | [540 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [541 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [542 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [543 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [544 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] -peer0.org2.example.com | [545 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [546 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [547 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a736fdf6-80ee-4083-b92d-aa319ce60ec0] -peer0.org2.example.com | [548 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=297b7236-7417-43c2-b153-1210e729eae9,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [521 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] marked as valid by state validator -peer0.org1.example.com | [522 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x1, 0x89, 0x46, 0x2c, 0xf9, 0x7a, 0xc5, 0x26, 0xa0, 0x0, 0x75, 0xd, 0x2c, 0xe4, 0xad, 0x19, 0xe1, 0x78, 0x94, 0x3b, 0x7f, 0xa4, 0x2b, 0xe, 0x79, 0xfc, 0x32, 0xb3, 0x54, 0x7b, 0x83, 0x63} txOffsets= -peer0.org1.example.com | txId=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa locPointer=offset=70, bytesLength=3389 -peer0.org1.example.com | ] -peer0.org1.example.com | [523 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to index -peer0.org1.example.com | [524 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx number:[0] ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to blockNumTranNum index -peer0.org1.example.com | [525 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org2.example.com | [549 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 chaindID businesschannel -peer0.org2.example.com | [54a 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org2.example.com | [54b 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [54c 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org2.example.com | [54d 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [297b7236]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [54e 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [54f 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [297b7236]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [550 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [297b7236]Move state message TRANSACTION -peer0.org2.example.com | [551 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [297b7236]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [552 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [553 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [297b7236]sending state message TRANSACTION -peer0.org2.example.com | [554 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [297b7236]Received message TRANSACTION from shim -peer0.org2.example.com | [555 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [297b7236]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [556 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [297b7236]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [557 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [558 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [559 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [55a 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [55b 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [55c 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [55d 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [b34fb51c-fd82-47bf-802f-6a9f91ac10cb] -peer0.org2.example.com | [55e 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [55f 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [b34fb51c-fd82-47bf-802f-6a9f91ac10cb] -peer0.org2.example.com | [560 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org2.example.com | [561 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer0.org2.example.com | [562 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer0.org2.example.com | [563 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [297b7236]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [564 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [297b7236]Move state message COMPLETED -peer0.org2.example.com | [565 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [297b7236]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [566 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [297b7236]send state message COMPLETED -peer0.org2.example.com | [567 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [297b7236]Received message COMPLETED from shim -peer0.org2.example.com | [568 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [297b7236]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [569 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [297b7236-7417-43c2-b153-1210e729eae9]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [56a 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:297b7236-7417-43c2-b153-1210e729eae9 -peer0.org2.example.com | [56b 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [56c 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917, error Chaincode mycc is already instantiated -peer0.org2.example.com | [56d 01-04 01:51:47.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [a736fdf6-80ee-4083-b92d-aa319ce60ec0] -peer0.org2.example.com | [56e 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 returned error Chaincode mycc is already instantiated -peer0.org2.example.com | [56f 01-04 01:51:47.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [570 01-04 01:51:47.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [571 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4224a28c0), Data:(*common.BlockData)(0xc4217cebc0), Metadata:(*common.BlockMetadata)(0xc4217cec00)}, doMVCCValidation=true -peer0.org2.example.com | [572 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [573 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -peer0.org2.example.com | [574 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xce, 0x54, 0x20, 0x1a, 0xf4, 0x6a, 0xac, 0x8f, 0xbc, 0x59, 0x8, 0xbf, 0xd7, 0xbd, 0x23, 0x20, 0x17, 0xe6, 0x36, 0xd, 0xbe, 0xfa, 0x91, 0x3, 0x38, 0x61, 0x2e, 0xf1, 0x4, 0x9f, 0x6e, 0xa2} txOffsets= -peer0.org2.example.com | txId=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 locPointer=offset=70, bytesLength=3388 -peer0.org2.example.com | ] -peer0.org2.example.com | [575 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to index -peer0.org2.example.com | [576 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to blockNumTranNum index -peer0.org2.example.com | [577 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49881], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org2.example.com | [578 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer0.org2.example.com | [579 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [57a 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [57b 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [57c 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org2.example.com | [57d 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer0.org2.example.com | [57e 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer0.org2.example.com | [57f 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [580 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -peer0.org2.example.com | [581 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer0.org2.example.com | [582 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [583 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [584 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [585 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [586 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [587 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer0.org2.example.com | [588 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer0.org2.example.com | [589 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org2.example.com | [58a 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [58b 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [58c 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422484750 -peer0.org2.example.com | [58d 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -peer0.org2.example.com | [58e 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [58f 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [590 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org2.example.com | [591 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [592 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 310 Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [4a6 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 returned error Chaincode mycc is already instantiated -peer0.org1.example.com | [526 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -peer0.org1.example.com | [527 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [53a 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [53b 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -peer1.org2.example.com | [53c 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [53d 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [53e 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer1.org2.example.com | [53f 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer1.org2.example.com | [540 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org2.example.com | [541 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer0.org2.example.com | [593 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421e44000, header channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -peer0.org2.example.com | [594 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [595 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [596 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [597 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org2.example.com | [598 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] -peer0.org2.example.com | [599 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [59a 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [0c84dfe7-61f5-4aee-b1c5-4b05518fb08e] -peer0.org2.example.com | [59b 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [59c 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [0c84dfe7-61f5-4aee-b1c5-4b05518fb08e] -peer0.org2.example.com | [59d 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [59e 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0a8b48a0-c11f-497a-a657-18a540336810] -peer0.org2.example.com | [59f 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=7336ab1c-9028-4054-a4ab-f4e2433ae28f,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org2.example.com | [5a0 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec chaindID businesschannel -peer0.org2.example.com | [5a1 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org2.example.com | [5a2 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [5a3 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org2.example.com | [5a4 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7336ab1c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5a5 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [5a6 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7336ab1c]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [5a7 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7336ab1c]Move state message TRANSACTION -peer0.org2.example.com | [5a8 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7336ab1c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5a9 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5aa 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7336ab1c]sending state message TRANSACTION -peer0.org2.example.com | [5ab 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7336ab1c]Received message TRANSACTION from shim -peer0.org2.example.com | [5ac 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7336ab1c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [5ad 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7336ab1c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5ae 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org2.example.com | [5af 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [5b0 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org2.example.com | [5b1 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7336ab1c]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [5b2 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7336ab1c]Move state message COMPLETED -peer0.org2.example.com | [5b3 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7336ab1c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [5b4 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7336ab1c]send state message COMPLETED -peer0.org2.example.com | [5b5 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7336ab1c]Received message COMPLETED from shim -peer0.org2.example.com | [5b6 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7336ab1c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [5b7 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7336ab1c-9028-4054-a4ab-f4e2433ae28f]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [5b8 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7336ab1c-9028-4054-a4ab-f4e2433ae28f -peer0.org2.example.com | [5b9 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [5ba 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [0a8b48a0-c11f-497a-a657-18a540336810] -peer0.org2.example.com | [5bb 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [5bc 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [5bd 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219d0780), Data:(*common.BlockData)(0xc421d6f040), Metadata:(*common.BlockMetadata)(0xc421d6f080)}, doMVCCValidation=true -peer0.org2.example.com | [5be 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [5bf 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [5c0 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org2.example.com | [5c1 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org2.example.com | [5c2 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] marked as valid by state validator -peer0.org2.example.com | [5c3 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xe8, 0x99, 0x74, 0xde, 0xf0, 0x6e, 0x31, 0xc2, 0xbb, 0xbe, 0x2a, 0x50, 0x27, 0x3f, 0xfb, 0x5c, 0x63, 0xb0, 0xc1, 0x65, 0xf4, 0x14, 0xd3, 0x85, 0x3a, 0xd3, 0x86, 0x68, 0x6d, 0x6e, 0x6, 0x7e} txOffsets= -peer0.org2.example.com | txId=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec locPointer=offset=70, bytesLength=2849 -peer0.org2.example.com | ] -peer0.org2.example.com | [5c4 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to index -peer0.org2.example.com | [5c5 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx number:[0] ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to blockNumTranNum index -peer0.org2.example.com | [5c6 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org2.example.com | [5c7 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer0.org2.example.com | [5c8 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [5c9 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [5ca 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org2.example.com | [5cb 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer0.org2.example.com | [5cc 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [5cd 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer0.org2.example.com | [5ce 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org2.example.com | [5cf 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org2.example.com | [5d0 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -peer0.org2.example.com | [5d1 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer0.org2.example.com | [5d2 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org2.example.com | [5d3 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [5d4 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org2.example.com | [5d5 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [5d6 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org2.example.com | [5d7 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org2.example.com | [5d8 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221a8090 -peer0.org2.example.com | [5d9 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [5da 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org2.example.com | [5db 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org2.example.com | [5dc 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org2.example.com | [5dd 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [5de 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422303900, header 0xc4221a80c0 -peer0.org2.example.com | [5df 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer0.org2.example.com | [5e0 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284 -peer0.org2.example.com | [5e1 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284] -peer0.org2.example.com | [5e2 01-04 01:52:24.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [5e3 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [287e7502-985c-4988-bbd3-d3362a514194] -peer0.org2.example.com | [5e4 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284 channel id: businesschannel -peer0.org2.example.com | [5e5 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284,syscc=true,proposal=0xc422303900,canname=lscc:1.0.2 -peer0.org2.example.com | [5e6 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org2.example.com | [5e7 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [5e8 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org2.example.com | [5e9 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [23f0df42]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [5ea 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [5eb 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [5ec 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [23f0df42]sendExecuteMsg trigger event TRANSACTION -peer0.org2.example.com | [5ed 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]Move state message TRANSACTION -peer0.org2.example.com | [5ee 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df42]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [5ef 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5f0 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]sending state message TRANSACTION -peer0.org2.example.com | [5f1 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]Received message TRANSACTION from shim -peer0.org2.example.com | [5f2 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23f0df42]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [5f3 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [23f0df42]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [5f4 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [23f0df42]Sending GET_STATE -peer0.org2.example.com | [5f5 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]Received message GET_STATE from shim -peer0.org2.example.com | [5f6 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df42]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [5f7 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [23f0df42]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [5f8 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [5f9 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [23f0df42] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org2.example.com | [5fa 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [5fb 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [23f0df42]Got state. Sending RESPONSE -peer0.org2.example.com | [5fc 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [23f0df42]handleGetState serial send RESPONSE -peer0.org2.example.com | [5fd 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]Received message RESPONSE from shim -peer0.org2.example.com | [5fe 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23f0df42]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [5ff 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [23f0df42]before send -peer0.org2.example.com | [600 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [23f0df42]after send -peer0.org2.example.com | [601 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [23f0df42]Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [602 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [23f0df42]GetState received payload RESPONSE -peer0.org2.example.com | [603 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [604 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]Move state message COMPLETED -peer0.org2.example.com | [605 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23f0df42]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [606 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]send state message COMPLETED -peer0.org2.example.com | [607 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]Received message COMPLETED from shim -peer0.org2.example.com | [608 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df42]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [609 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [60a 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284 -peer0.org2.example.com | [60b 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org2.example.com | [60c 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org2.example.com | [60d 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284 channel id: businesschannel version: 1.0 -peer0.org2.example.com | [60e 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284,syscc=false,proposal=0xc422303900,canname=mycc:1.0 -peer0.org2.example.com | [60f 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer0.org2.example.com | [610 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [611 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer0.org2.example.com | [612 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [23f0df42]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [613 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [614 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 311 Processing field: AnchorPeers -peer0.org1.example.com | [528 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [4a7 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org2.example.com | [542 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer0.org2.example.com | [615 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [23f0df42]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 312 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [529 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [4a8 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [543 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [616 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 313 Processing field: MSP -peer0.org1.example.com | [52a 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org1.example.com | [4a9 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42192dd80), Data:(*common.BlockData)(0xc421e140e0), Metadata:(*common.BlockMetadata)(0xc421e14120)}, doMVCCValidation=true -peer1.org2.example.com | [544 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [617 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df42]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 314 Proposed new policy Readers for Org1MSP -peer1.org1.example.com | [4aa 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [52b 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -peer1.org2.example.com | [545 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Move state message READY -peer0.org2.example.com | [618 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4ab 01-04 01:51:47.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -peer0.org1.example.com | [52c 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | 2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 315 Proposed new policy Writers for Org1MSP -peer1.org2.example.com | [546 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: READY in state established -peer1.org1.example.com | [4ac 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xce, 0x54, 0x20, 0x1a, 0xf4, 0x6a, 0xac, 0x8f, 0xbc, 0x59, 0x8, 0xbf, 0xd7, 0xbd, 0x23, 0x20, 0x17, 0xe6, 0x36, 0xd, 0xbe, 0xfa, 0x91, 0x3, 0x38, 0x61, 0x2e, 0xf1, 0x4, 0x9f, 0x6e, 0xa2} txOffsets= -peer0.org1.example.com | [52d 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -orderer.example.com | 2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 316 Proposed new policy Admins for Org1MSP -peer1.org2.example.com | [547 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [6e2fc74c]Entered state ready -peer1.org1.example.com | txId=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 locPointer=offset=70, bytesLength=3388 -peer0.org2.example.com | [619 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]sending state message TRANSACTION -peer0.org1.example.com | [52e 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer0.org2.example.com | [61a 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]Received message GET_STATE from shim -peer0.org2.example.com | [61b 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df42]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [61c 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [23f0df42]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | ] -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 317 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [52f 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 318 Processing field: MSP -peer1.org1.example.com | [4ad 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to index -peer1.org1.example.com | [4ae 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to blockNumTranNum index -peer1.org1.example.com | [4af 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49881], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org1.example.com | [4b0 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer1.org1.example.com | [4b1 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [4b2 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [530 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -peer0.org2.example.com | [61d 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [61e 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [23f0df42] getting state for chaincode mycc, key a, channel businesschannel -peer0.org2.example.com | [61f 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org2.example.com | [620 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [23f0df42]Got state. Sending RESPONSE -peer0.org2.example.com | [621 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [23f0df42]handleGetState serial send RESPONSE -peer0.org2.example.com | [622 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]Received message COMPLETED from shim -peer0.org2.example.com | [623 01-04 01:52:24.64 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df42]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [624 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [625 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284 -peer0.org1.example.com | [531 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 319 Initializing protos for *config.ApplicationOrgProtos -peer1.org1.example.com | [4b3 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [548 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 -peer0.org2.example.com | [626 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [532 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 31a Processing field: AnchorPeers -peer1.org1.example.com | [4b4 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org2.example.com | [549 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]sending state message READY -peer0.org2.example.com | [627 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [533 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 31b Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [54a 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 31c Processing field: MSP -peer0.org2.example.com | [628 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [534 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [4b5 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -orderer.example.com | 2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 31d Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [535 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org2.example.com | [629 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [287e7502-985c-4988-bbd3-d3362a514194] -peer1.org2.example.com | [54b 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -peer1.org1.example.com | [4b6 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -orderer.example.com | 2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 31e Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [536 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [54c 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [4b7 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org1.example.com | [4b8 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -peer1.org1.example.com | [4b9 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer1.org1.example.com | [4ba 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | [4bb 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [4bc 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [4bd 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org1.example.com | [4be 01-04 01:51:47.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [4bf 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [537 01-04 01:51:47.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -orderer.example.com | 2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 31f Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 320 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 321 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 322 Processing field: BatchSize -peer1.org1.example.com | [4c0 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4217ffc50 -peer0.org1.example.com | [538 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer1.org2.example.com | [54d 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 323 Processing field: BatchTimeout -peer0.org2.example.com | [62a 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org1.example.com | [4c1 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [539 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [54e 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6e2fc74c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [62b 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284 channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 324 Processing field: KafkaBrokers -peer1.org1.example.com | [4c2 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [4c3 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [53a 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer0.org2.example.com | [62c 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org2.example.com | [62d 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284 channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 325 Processing field: ChannelRestrictions -peer1.org1.example.com | [4c4 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [53b 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [54f 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [62e 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284,syscc=true,proposal=0xc422303900,canname=escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 326 Proposed new policy Writers for Orderer -peer1.org1.example.com | [4c5 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [53c 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424df1470 -peer1.org2.example.com | [550 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [62f 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 327 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 328 Proposed new policy BlockValidation for Orderer -peer1.org1.example.com | [4c6 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421942280, header 0xc4217ffc80 -peer0.org2.example.com | [630 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [631 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org2.example.com | [551 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6e2fc74c]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [53d 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -orderer.example.com | 2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 329 Proposed new policy Readers for Orderer -peer1.org1.example.com | [4c7 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org1.example.com | [4c8 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc -peer0.org1.example.com | [53e 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [53f 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [540 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org1.example.com | [541 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 32a Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [4c9 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc] -peer1.org2.example.com | [552 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Move state message TRANSACTION -peer0.org2.example.com | [632 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [23f0df42]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [633 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [634 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [542 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [4ca 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [4cb 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0a68bf33-d53d-48aa-af24-ca5470bb882e] -peer1.org1.example.com | [4cc 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc channel id: businesschannel -peer1.org1.example.com | [4cd 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc,syscc=true,proposal=0xc421942280,canname=lscc:1.0.2 -peer1.org1.example.com | [4ce 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 32b Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.201 UTC [policies] ProposePolicy -> DEBU 32c Proposed new policy Writers for OrdererOrg -peer1.org2.example.com | [553 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [543 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421bc3500, header channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -peer0.org1.example.com | [544 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [635 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [23f0df42]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [554 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4cf 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [4d0 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [4d1 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c92ff70]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [545 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [546 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [547 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [548 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] -orderer.example.com | 2018-01-04 01:50:57.201 UTC [policies] ProposePolicy -> DEBU 32d Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.201 UTC [policies] ProposePolicy -> DEBU 32e Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.201 UTC [common/config] Validate -> DEBU 32f Anchor peers for org Org1MSP are -peer1.org1.example.com | [4d2 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [549 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [555 01-04 01:52:07.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]sending state message TRANSACTION -peer1.org2.example.com | [556 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Received message GET_STATE from shim -peer1.org1.example.com | [4d3 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.201 UTC [common/config] validateMSP -> DEBU 330 Setting up MSP for org Org1MSP -peer0.org1.example.com | [54a 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [557 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [558 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [6e2fc74c]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [4d4 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c92ff70]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [559 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [55a 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6e2fc74c] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.201 UTC [msp] NewBccspMsp -> DEBU 331 Creating BCCSP-based MSP instance -peer0.org2.example.com | [636 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]Move state message TRANSACTION -peer1.org1.example.com | [4d5 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Move state message TRANSACTION -peer1.org2.example.com | [55b 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [55c 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [6e2fc74c]Got state. Sending RESPONSE -peer1.org2.example.com | [55d 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [6e2fc74c]handleGetState serial send RESPONSE -peer1.org2.example.com | [55e 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Received message COMPLETED from shim -peer1.org2.example.com | [55f 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [4d6 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [4d7 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4d8 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]sending state message TRANSACTION -peer1.org1.example.com | [4d9 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Received message TRANSACTION from shim -peer1.org1.example.com | [4da 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c92ff70]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [4db 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c92ff70]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-04 01:50:57.201 UTC [msp] Setup -> DEBU 332 Setting up MSP instance Org1MSP -peer0.org1.example.com | [54b 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [19efde37-5466-488b-946f-5607002abcc2] -peer1.org2.example.com | [560 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234]HandleMessage- COMPLETED. Notify -peer0.org2.example.com | [637 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df42]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [4dc 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0c92ff70]Sending GET_STATE -orderer.example.com | 2018-01-04 01:50:57.201 UTC [msp/identity] newIdentity -> DEBU 333 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [561 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 -peer1.org1.example.com | [4dd 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Received message GET_STATE from shim -peer0.org1.example.com | [54c 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=235b7aab-023d-44d3-b1e7-8132a86c7d5d,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org2.example.com | [638 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [639 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]sending state message TRANSACTION -peer1.org1.example.com | [4de 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [4df 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0c92ff70]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [4e0 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [4e1 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0c92ff70] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [4e2 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [4e3 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0c92ff70]Got state. Sending RESPONSE -peer1.org1.example.com | [4e4 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0c92ff70]handleGetState serial send RESPONSE -peer1.org1.example.com | [4e5 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Received message RESPONSE from shim -peer1.org1.example.com | [4e6 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c92ff70]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [4e7 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0c92ff70]before send -peer1.org1.example.com | [4e8 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0c92ff70]after send -peer1.org1.example.com | [4e9 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0c92ff70]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [4ea 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0c92ff70]GetState received payload RESPONSE -peer1.org1.example.com | [4eb 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [4ec 01-04 01:52:07.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Move state message COMPLETED -peer1.org1.example.com | [4ed 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c92ff70]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [4ee 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]send state message COMPLETED -peer1.org1.example.com | [4ef 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Received message COMPLETED from shim -peer1.org1.example.com | [4f0 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [4f1 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [4f2 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc -peer1.org1.example.com | [4f3 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [4f4 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org1.example.com | [4f5 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc channel id: businesschannel version: 1.0 -peer1.org1.example.com | [4f6 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc,syscc=false,proposal=0xc421942280,canname=mycc:1.0 -peer1.org1.example.com | [4f7 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc,syscc=true,proposal=0xc421942280,canname=lscc:1.0.2 -peer0.org1.example.com | [54d 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 chaindID businesschannel -peer0.org1.example.com | [54e 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [562 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [563 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [4f8 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org2.example.com | [63a 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]Received message TRANSACTION from shim -peer0.org1.example.com | [54f 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [564 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [550 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [4f9 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [565 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [7fd4839e-36d8-4623-b7c2-e048fe9c0f26] -peer0.org2.example.com | [63b 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23f0df42]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [63c 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [23f0df42]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [63d 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org2.example.com | [63e 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [63f 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [640 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]Move state message COMPLETED -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +peer0.org1.example.com | [923 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 channel id: businesschannel chaincode id: name:"qscc" orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +peer0.org1.example.com | [924 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +peer0.org1.example.com | [925 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 channel id: businesschannel version: 1.0.2 orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== +peer0.org1.example.com | [926 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2,syscc=true,proposal=0xc422574550,canname=escc:1.0.2 orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [4fa 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [551 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [235b7aab]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.201 UTC [msp/identity] newIdentity -> DEBU 334 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [566 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org2.example.com | [641 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [23f0df42]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [4fb 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c92ff70]Inside sendExecuteMessage. Message TRANSACTION +orderer.example.com | 2018-01-14 11:45:32.572 UTC [msp/identity] newIdentity -> DEBU 568 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [927 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [552 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [553 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [235b7aab]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [567 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 channel id: businesschannel chaincode id: name:"mycc" +peer0.org1.example.com | [928 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [4fc 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [554 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [235b7aab]Move state message TRANSACTION -peer1.org2.example.com | [568 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org2.example.com | [642 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [23f0df42]send state message COMPLETED +peer0.org1.example.com | [929 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [569 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 channel id: businesschannel version: 1.0.2 +peer0.org1.example.com | [92a 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0ea537fc]Inside sendExecuteMessage. Message TRANSACTION orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +peer0.org1.example.com | [92b 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [92c 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | [92d 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0ea537fc]sendExecuteMsg trigger event TRANSACTION orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [92e 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]Move state message TRANSACTION +peer0.org1.example.com | [92f 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.202 UTC [msp/identity] newIdentity -> DEBU 335 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [930 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +orderer.example.com | 2018-01-14 11:45:32.573 UTC [msp/identity] newIdentity -> DEBU 569 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [931 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]sending state message TRANSACTION orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [932 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Received message TRANSACTION from shim orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [933 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ea537fc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [934 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0ea537fc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [935 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [936 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +peer0.org1.example.com | [937 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Transaction completed. Sending COMPLETED orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +peer0.org1.example.com | [938 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Move state message COMPLETED orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +peer0.org1.example.com | [939 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ea537fc]Handling ChaincodeMessage of type: COMPLETED(state:ready) orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +peer0.org1.example.com | [93a 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]send state message COMPLETED orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.202 UTC [msp] Validate -> DEBU 336 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.202 UTC [common/config] Validate -> DEBU 337 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:57.202 UTC [common/config] validateMSP -> DEBU 338 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:57.202 UTC [msp] NewBccspMsp -> DEBU 339 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.202 UTC [msp] Setup -> DEBU 33a Setting up MSP instance Org2MSP -peer0.org1.example.com | [555 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [235b7aab]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [4fd 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [4fe 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c92ff70]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [4ff 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Move state message TRANSACTION -peer1.org1.example.com | [500 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.202 UTC [msp/identity] newIdentity -> DEBU 33b Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [56a 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234,syscc=true,proposal=0xc421ff7130,canname=escc:1.0.2 -peer0.org2.example.com | [643 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [23f0df42]Received message COMPLETED from shim -peer1.org1.example.com | [501 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [556 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [56b 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org1.example.com | [502 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]sending state message TRANSACTION +peer0.org1.example.com | [93b 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.574 UTC [msp] Validate -> DEBU 56a MSP Org1MSP validating identity +peer0.org1.example.com | [93c 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [93d 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.575 UTC [common/config] Validate -> DEBU 56b Anchor peers for org Org2MSP are +peer0.org1.example.com | [93e 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 +orderer.example.com | 2018-01-14 11:45:32.575 UTC [common/config] validateMSP -> DEBU 56c Setting up MSP for org Org2MSP +peer0.org1.example.com | [93f 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.576 UTC [msp] NewBccspMsp -> DEBU 56d Creating BCCSP-based MSP instance +peer0.org1.example.com | [940 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.576 UTC [msp] Setup -> DEBU 56e Setting up MSP instance Org2MSP +peer0.org1.example.com | [941 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.578 UTC [msp/identity] newIdentity -> DEBU 56f Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [942 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b0930a0a-6793-4601-8e4e-e8703b937c87] orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [56c 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [557 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [235b7aab]sending state message TRANSACTION -peer1.org2.example.com | [56d 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | [644 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df42]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [503 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Received message TRANSACTION from shim -peer0.org1.example.com | [558 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [235b7aab]Received message TRANSACTION from shim -peer1.org2.example.com | [56e 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6e2fc74c]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [645 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [504 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c92ff70]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer0.org2.example.com | [646 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:23f0df427241eb985872fde350977121cbb0e9ed24924922f0c4e08305efe284 -peer1.org1.example.com | [505 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c92ff70]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [559 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [235b7aab]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [56f 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [647 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [506 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0c92ff70]Sending GET_STATE -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | [570 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [648 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org1.example.com | [507 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Received message GET_STATE from shim -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [55a 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [235b7aab]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [508 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [571 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [6e2fc74c]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer0.org2.example.com | [649 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | [509 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0c92ff70]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [55b 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org2.example.com | [572 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Move state message TRANSACTION -peer1.org2.example.com | [573 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [574 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [575 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]sending state message TRANSACTION -peer1.org2.example.com | [576 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [577 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer1.org1.example.com | [50b 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0c92ff70] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [55c 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [578 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer1.org1.example.com | [50c 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [64a 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [287e7502-985c-4988-bbd3-d3362a514194] -peer0.org1.example.com | [55d 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -peer1.org1.example.com | [50d 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0c92ff70]Got state. Sending RESPONSE -peer0.org2.example.com | [64b 01-04 01:52:24.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [55e 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [579 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [50e 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0c92ff70]handleGetState serial send RESPONSE -peer0.org2.example.com | [64c 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -peer0.org1.example.com | [55f 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x27, 0x8, 0x1, 0x12, 0xb, 0x12, 0x4, 0x6d, 0x79, 0x63, 0x63, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org2.example.com | [57a 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -orderer.example.com | 2018-01-04 01:50:57.203 UTC [msp/identity] newIdentity -> DEBU 33c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [50f 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Received message RESPONSE from shim -peer0.org2.example.com | [64d 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -peer0.org1.example.com | [560 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org2.example.com | [57b 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | [64e 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [561 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f2907564-5d65-483d-9b12-279905d9ff29] -peer0.org1.example.com | [562 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [563 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f2907564-5d65-483d-9b12-279905d9ff29] -peer0.org1.example.com | [564 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -peer0.org1.example.com | [565 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -peer0.org1.example.com | [566 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -peer0.org1.example.com | [567 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [235b7aab]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [568 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [235b7aab]Move state message COMPLETED -peer0.org1.example.com | [569 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [235b7aab]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [56a 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [235b7aab]send state message COMPLETED -peer0.org1.example.com | [56b 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [235b7aab]Received message COMPLETED from shim -peer1.org1.example.com | [510 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c92ff70]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [511 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0c92ff70]before send -peer1.org1.example.com | [512 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0c92ff70]after send -peer1.org1.example.com | [513 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0c92ff70]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [514 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0c92ff70]GetState received payload RESPONSE -peer1.org1.example.com | [515 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [516 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Move state message COMPLETED -peer1.org1.example.com | [517 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c92ff70]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [518 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]send state message COMPLETED -peer1.org1.example.com | [50a 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [519 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Received message COMPLETED from shim -peer1.org1.example.com | [51a 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [51b 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [51c 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc -peer1.org1.example.com | [51d 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.GetCDSFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [51e 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -peer1.org1.example.com | [51f 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -peer1.org1.example.com | [520 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [521 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer1.org1.example.com) -peer1.org1.example.com | [522 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [523 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: -peer1.org1.example.com | CORE_CHAINCODE_ID_NAME=mycc:1.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning -peer1.org1.example.com | CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [56c 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [235b7aab]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [524 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer1.org1.example.com-mycc-1.0) lock -peer1.org2.example.com | [57c 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -peer0.org2.example.com | [64f 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [56d 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [235b7aab-023d-44d3-b1e7-8132a86c7d5d]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [525 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer1.org1.example.com-mycc-1.0) lock -peer1.org2.example.com | [57d 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -peer1.org2.example.com | [57e 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [56e 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:235b7aab-023d-44d3-b1e7-8132a86c7d5d -peer1.org1.example.com | [526 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-mycc-1.0 -peer0.org2.example.com | [650 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer1.org2.example.com | [57f 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | [527 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer1.org1.example.com-mycc-1.0(No such container: dev-peer1.org1.example.com-mycc-1.0) -peer0.org1.example.com | [56f 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [580 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | [528 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) -peer1.org1.example.com | [529 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer1.org1.example.com-mycc-1.0 (No such container: dev-peer1.org1.example.com-mycc-1.0) -peer0.org1.example.com | [570 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917, error Chaincode mycc is already instantiated -peer1.org2.example.com | [581 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org2.example.com | [651 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42029f050 -peer1.org1.example.com | [52a 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer1.org1.example.com-mycc-1.0 -peer0.org1.example.com | [571 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [19efde37-5466-488b-946f-5607002abcc2] -peer1.org2.example.com | [582 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org1.example.com | [52b 01-04 01:52:07.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -peer0.org1.example.com | [572 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 returned error Chaincode mycc is already instantiated -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.203 UTC [msp/identity] newIdentity -> DEBU 33d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | [52c 01-04 01:52:07.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 -peer0.org1.example.com | [573 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org1.example.com | [574 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [575 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc424aa6cc0), Data:(*common.BlockData)(0xc4219d6260), Metadata:(*common.BlockMetadata)(0xc4219d62a0)}, doMVCCValidation=true -peer0.org1.example.com | [576 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [583 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Received message TRANSACTION from shim -peer0.org2.example.com | [652 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\330\221\266\322\005\020\370\254\345\266\001\"\017businesschannel*@926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\224\276\310#\t\021C\316\036@TxH\251\"\250\030\335\rU4\366[\026" -peer1.org1.example.com | [52d 01-04 01:52:07.41 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -peer0.org1.example.com | [577 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [584 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6e2fc74c]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [52e 01-04 01:52:07.41 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org1.example.com | [578 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xce, 0x54, 0x20, 0x1a, 0xf4, 0x6a, 0xac, 0x8f, 0xbc, 0x59, 0x8, 0xbf, 0xd7, 0xbd, 0x23, 0x20, 0x17, 0xe6, 0x36, 0xd, 0xbe, 0xfa, 0x91, 0x3, 0x38, 0x61, 0x2e, 0xf1, 0x4, 0x9f, 0x6e, 0xa2} txOffsets= -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org1.example.com | FROM hyperledger/fabric-baseos:x86_64-0.3.2 -peer0.org2.example.com | [653 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | txId=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 locPointer=offset=70, bytesLength=3388 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | ADD binpackage.tar /usr/local/bin -peer1.org2.example.com | [585 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [6e2fc74c]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [654 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | ] -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ -peer0.org2.example.com | [655 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer1.org2.example.com | [586 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [579 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to index -peer0.org1.example.com | [57a 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to blockNumTranNum index -peer0.org1.example.com | [57b 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49881], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [57c 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -peer0.org1.example.com | [57d 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [57e 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [57f 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [580 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org1.example.com | [581 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer0.org1.example.com | [582 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer0.org1.example.com | [583 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [584 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org1.example.com | [585 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer1.org2.example.com | [587 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org2.example.com | [656 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [586 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | [587 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [588 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer1.org2.example.com | [588 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Transaction completed. Sending COMPLETED -peer0.org2.example.com | [657 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [589 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer1.org1.example.com | org.hyperledger.fabric.version="1.0.2" \ -peer1.org2.example.com | [589 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]Move state message COMPLETED -peer0.org1.example.com | [58a 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [58b 01-04 01:52:07.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org2.example.com | [658 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421a50800, header channel_header:"\010\003\032\014\010\330\221\266\322\005\020\370\254\345\266\001\"\017businesschannel*@926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\224\276\310#\t\021C\316\036@TxH\251\"\250\030\335\rU4\366[\026" -peer1.org2.example.com | [58a 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6e2fc74c]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | org.hyperledger.fabric.base.version="0.3.2" -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [58c 01-04 01:52:07.24 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220b3770 -peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 -peer1.org2.example.com | [58b 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6e2fc74c]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.203 UTC [msp] Validate -> DEBU 33e MSP Org2MSP validating identity -peer1.org1.example.com | ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -orderer.example.com | 2018-01-04 01:50:57.204 UTC [common/config] validateMSP -> DEBU 33f Setting up MSP for org OrdererOrg -peer0.org2.example.com | [659 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [58c 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6e2fc74c]Received message COMPLETED from shim -peer0.org1.example.com | [58d 01-04 01:52:07.24 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-04 01:50:57.204 UTC [msp] NewBccspMsp -> DEBU 340 Creating BCCSP-based MSP instance -peer1.org1.example.com | COPY peer.crt /etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [65a 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [65b 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | 2018-01-04 01:50:57.204 UTC [msp] Setup -> DEBU 341 Setting up MSP instance OrdererMSP -peer1.org1.example.com | [52f 01-04 01:52:07.41 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -peer1.org1.example.com | [530 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [58e 01-04 01:52:07.24 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [58f 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | 2018-01-04 01:50:57.204 UTC [msp/identity] newIdentity -> DEBU 342 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [590 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [531 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [58d 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [65c 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [591 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [65d 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] -peer1.org2.example.com | [58e 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [532 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer1.org2.example.com | [58f 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:6e2fc74c1bceedd5869e62c3edeb562c5be249e68c00576f50aa47fda383a234 -peer0.org2.example.com | [65e 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [592 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421d66550, header 0xc4220b37a0 -peer1.org2.example.com | [590 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [533 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421f83800 -peer0.org1.example.com | [593 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org2.example.com | [65f 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [d194af08-6def-4e0d-98bb-567bb07c886e] -peer1.org1.example.com | [534 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -peer1.org2.example.com | [591 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [594 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -peer0.org2.example.com | [660 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org1.example.com | [535 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [592 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [595 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] -peer0.org2.example.com | [661 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [d194af08-6def-4e0d-98bb-567bb07c886e] -peer1.org1.example.com | [536 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer0.org2.example.com | [662 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [593 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7fd4839e-36d8-4623-b7c2-e048fe9c0f26] -peer0.org1.example.com | [596 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [594 01-04 01:52:07.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [537 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org2.example.com | [663 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6d88b7ad-67a3-4fbb-b6ec-ee554b41b619] -peer0.org1.example.com | [597 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a5221f0a-23c9-42a8-99f2-62837b6b037a] -peer1.org2.example.com | [595 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org1.example.com | [538 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer1.org2.example.com | [596 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer1.org1.example.com | [539 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org2.example.com | [664 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=b47e2742-88b3-4396-88ba-fa1ed09e5a1c,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [598 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec channel id: businesschannel -peer1.org2.example.com | [597 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org2.example.com | [665 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd chaindID businesschannel -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer1.org1.example.com | [53a 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42192b000, header channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -peer1.org2.example.com | [598 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4216f70e0 -peer0.org1.example.com | [599 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec,syscc=true,proposal=0xc421d66550,canname=lscc:1.0.2 -peer0.org2.example.com | [666 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [667 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [599 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -peer0.org1.example.com | [59a 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org1.example.com | [53b 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 2018-01-04 01:50:57.204 UTC [msp/identity] newIdentity -> DEBU 343 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [53c 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [59a 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [59b 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org2.example.com | [668 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [53d 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org2.example.com | [59b 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [59c 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org1.example.com | [53e 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [669 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b47e2742]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [59c 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org1.example.com | [53f 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [59d 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]Inside sendExecuteMessage. Message TRANSACTION -peer0.org2.example.com | [66a 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [59d 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org1.example.com | [540 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [59e 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [66b 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b47e2742]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org2.example.com | [59e 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org1.example.com | [541 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [a60ea8c8-a1a5-47c4-b716-03fd03a46efa] -peer0.org1.example.com | [59f 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org2.example.com | [66c 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b47e2742]Move state message TRANSACTION -peer1.org2.example.com | [59f 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4220d7800, header channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [542 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [5a0 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [5a0 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [543 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [a60ea8c8-a1a5-47c4-b716-03fd03a46efa] -peer0.org2.example.com | [66d 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b47e2742]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [5a1 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message TRANSACTION -peer1.org2.example.com | [5a1 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [544 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org2.example.com | [66e 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5a2 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5a2 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org2.example.com | [66f 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b47e2742]sending state message TRANSACTION -peer1.org1.example.com | [545 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4be0e738-5c73-454d-94dc-f19933daebcf] -peer0.org1.example.com | [5a3 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [670 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b47e2742]Received message TRANSACTION from shim -peer1.org2.example.com | [5a3 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [5a4 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message TRANSACTION -peer1.org1.example.com | [546 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=da5c6372-4dc5-415c-ab05-6e2b44ff5862,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org2.example.com | [671 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b47e2742]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org2.example.com | [672 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b47e2742]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [5a5 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Received message TRANSACTION from shim -peer1.org1.example.com | [547 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec chaindID businesschannel -peer1.org2.example.com | [5a4 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] -peer0.org2.example.com | [673 01-04 01:52:26.57 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org1.example.com | [548 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org1.example.com | [5a6 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [674 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [5a5 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [549 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [675 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [5a7 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7098cf0b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [5a6 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [1d7bd60f-b58a-4008-8866-478cf5347058] -orderer.example.com | 2018-01-04 01:50:57.204 UTC [msp/identity] newIdentity -> DEBU 344 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org2.example.com | [676 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b47e2742]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [54a 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer0.org1.example.com | [5a8 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7098cf0b]Sending GET_STATE -peer0.org2.example.com | [677 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b47e2742]Move state message COMPLETED -peer1.org2.example.com | [5a7 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [678 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b47e2742]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [54b 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [da5c6372]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [5a9 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message GET_STATE from shim -peer0.org2.example.com | [679 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b47e2742]send state message COMPLETED -peer1.org2.example.com | [5a8 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [1d7bd60f-b58a-4008-8866-478cf5347058] -peer0.org1.example.com | [5aa 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [54c 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org2.example.com | [67a 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b47e2742]Received message COMPLETED from shim -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [67b 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b47e2742]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [54d 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [da5c6372]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5ab 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7098cf0b]Received GET_STATE, invoking get state from ledger -peer0.org2.example.com | [67c 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b47e2742-88b3-4396-88ba-fa1ed09e5a1c]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [5a9 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org2.example.com | [67d 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b47e2742-88b3-4396-88ba-fa1ed09e5a1c -peer1.org1.example.com | [54e 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da5c6372]Move state message TRANSACTION -peer0.org1.example.com | [5ac 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [67e 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org2.example.com | [5aa 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [398dded4-b48d-4070-85ab-63e2912440ae] -peer0.org2.example.com | [67f 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6d88b7ad-67a3-4fbb-b6ec-ee554b41b619] -peer1.org1.example.com | [54f 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da5c6372]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [5ad 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [5ab 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=bc808b3e-36c6-4e1d-8c80-e668657cc94f,syscc=true,proposal=0x0,canname=vscc:1.0.2 -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org2.example.com | [5ac 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec chaindID businesschannel -peer0.org2.example.com | [680 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer0.org2.example.com | [681 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [682 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42193c9c0), Data:(*common.BlockData)(0xc4222de140), Metadata:(*common.BlockMetadata)(0xc4222de180)}, doMVCCValidation=true -peer0.org2.example.com | [683 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org2.example.com | [684 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | [685 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org2.example.com | [686 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org2.example.com | [687 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] marked as valid by state validator -peer0.org2.example.com | [688 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xa3, 0x96, 0xc0, 0xf9, 0x28, 0xfe, 0x7e, 0x14, 0xc0, 0xf3, 0x58, 0xaf, 0xa7, 0xcd, 0xfe, 0xbb, 0xfc, 0xc3, 0xe2, 0x1c, 0x33, 0x37, 0xd5, 0x9a, 0xe7, 0x19, 0x56, 0x62, 0xcc, 0x79, 0x72, 0x45} txOffsets= -peer1.org1.example.com | [550 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [551 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da5c6372]sending state message TRANSACTION -peer0.org1.example.com | [5ae 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org2.example.com | txId=926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd locPointer=offset=70, bytesLength=2848 -peer0.org2.example.com | ] -peer0.org2.example.com | [689 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2848] for tx ID: [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] to index -peer0.org2.example.com | [68a 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2848] for tx number:[0] ID: [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] to blockNumTranNum index -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [552 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da5c6372]Received message TRANSACTION from shim -peer1.org2.example.com | [5ad 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer0.org2.example.com | [68b 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59219], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org1.example.com | [553 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da5c6372]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [554 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [da5c6372]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [555 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [556 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [5af 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Got state. Sending RESPONSE -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org1.example.com | [557 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [558 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da5c6372]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [559 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da5c6372]Move state message COMPLETED -peer1.org1.example.com | [55a 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [da5c6372]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [55b 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [da5c6372]send state message COMPLETED -peer1.org1.example.com | [55c 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [da5c6372]Received message COMPLETED from shim -peer1.org1.example.com | [55d 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da5c6372]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [55e 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [da5c6372-4dc5-415c-ab05-6e2b44ff5862]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [55f 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:da5c6372-4dc5-415c-ab05-6e2b44ff5862 -peer1.org1.example.com | [560 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [5b0 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]handleGetState serial send RESPONSE -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [5b1 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Received message RESPONSE from shim -peer1.org1.example.com | [561 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4be0e738-5c73-454d-94dc-f19933daebcf] -peer1.org2.example.com | [5ae 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5af 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [5b0 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bc808b3e]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [5b2 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [562 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org2.example.com | [68c 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -peer1.org2.example.com | [5b1 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [5b3 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7098cf0b]before send -peer0.org1.example.com | [5b4 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7098cf0b]after send -peer1.org1.example.com | [563 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org2.example.com | [5b2 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [bc808b3e]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [5b5 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7098cf0b]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [564 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42192dd00), Data:(*common.BlockData)(0xc4214bfce0), Metadata:(*common.BlockMetadata)(0xc4214bfd20)}, doMVCCValidation=true -peer1.org2.example.com | [5b3 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc808b3e]Move state message TRANSACTION -peer0.org2.example.com | [68d 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [5b6 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7098cf0b]GetState received payload RESPONSE -peer1.org1.example.com | [565 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | 2018-01-04 01:50:57.205 UTC [msp] Validate -> DEBU 345 MSP OrdererMSP validating identity -peer0.org2.example.com | [68e 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [5b7 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [5b4 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bc808b3e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org2.example.com | [68f 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -orderer.example.com | 2018-01-04 01:50:57.205 UTC [msp] Setup -> DEBU 346 Setting up the MSP manager (3 msps) -peer1.org1.example.com | [566 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [5b8 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Move state message COMPLETED -peer1.org2.example.com | [5b5 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org2.example.com | [690 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org1.example.com | [567 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | 2018-01-04 01:50:57.205 UTC [msp] Setup -> DEBU 347 MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [5b9 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org2.example.com | [691 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [5b6 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc808b3e]sending state message TRANSACTION -peer1.org1.example.com | [568 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [5ba 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 348 Adding to config map: [Groups] /Channel -peer0.org2.example.com | [692 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org2.example.com | [5b7 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc808b3e]Received message TRANSACTION from shim -peer0.org1.example.com | [5bb 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 349 Adding to config map: [Groups] /Channel/Orderer -peer1.org1.example.com | [569 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] marked as valid by state validator -peer0.org2.example.com | [693 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org2.example.com | [5b8 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc808b3e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [5bc 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [56a 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xe8, 0x99, 0x74, 0xde, 0xf0, 0x6e, 0x31, 0xc2, 0xbb, 0xbe, 0x2a, 0x50, 0x27, 0x3f, 0xfb, 0x5c, 0x63, 0xb0, 0xc1, 0x65, 0xf4, 0x14, 0xd3, 0x85, 0x3a, 0xd3, 0x86, 0x68, 0x6d, 0x6e, 0x6, 0x7e} txOffsets= -orderer.example.com | 2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34a Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [5b9 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [bc808b3e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org2.example.com | [694 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [5bd 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34b Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [5ba 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | txId=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec locPointer=offset=70, bytesLength=2849 -peer0.org2.example.com | [695 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd -peer0.org1.example.com | [5be 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -orderer.example.com | 2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [5bb 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | ] -peer0.org2.example.com | [696 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -orderer.example.com | 2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [5bf 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5bc 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org1.example.com | [56b 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to index -peer0.org2.example.com | [697 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [5bd 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc808b3e]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [5c0 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | 2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [56c 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx number:[0] ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to blockNumTranNum index -peer0.org2.example.com | [698 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [5c1 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec channel id: businesschannel version: 1.0 -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 34f Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [56d 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org2.example.com | [699 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [5be 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc808b3e]Move state message COMPLETED -peer0.org1.example.com | [5c2 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec,syscc=false,proposal=0xc421d66550,canname=mycc:1.0 -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 350 Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [56e 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer0.org2.example.com | [69a 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 351 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer1.org2.example.com | [5bf 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc808b3e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [5c3 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer0.org2.example.com | [69b 01-04 01:52:26.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org1.example.com | [56f 01-04 01:52:09.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 352 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [5c4 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [5c0 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc808b3e]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 353 Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 354 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 355 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 356 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 357 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 358 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 359 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35a Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35b Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35c Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35d Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [5c1 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bc808b3e]Received message COMPLETED from shim -peer1.org1.example.com | [570 01-04 01:52:23.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d -peer0.org1.example.com | [5c5 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | 2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [5c2 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bc808b3e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [571 01-04 01:52:23.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -peer0.org1.example.com | [5c6 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [5c3 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bc808b3e-36c6-4e1d-8c80-e668657cc94f]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 360 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [572 01-04 01:52:23.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-mycc-1.0 -peer1.org2.example.com | [5c4 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bc808b3e-36c6-4e1d-8c80-e668657cc94f -peer0.org1.example.com | [5c7 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 361 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [5c8 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [573 01-04 01:52:23.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-mycc-1.0-cd123150154e6bf2df7ce682e0b1bcbea40499416f37a6da3aae14c4eb51b08d -peer1.org2.example.com | [5c5 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [5c9 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 362 Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [574 01-04 01:52:24.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer1.org1.example.com-mycc-1.0 -peer1.org2.example.com | [5c6 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [398dded4-b48d-4070-85ab-63e2912440ae] -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 363 Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [5ca 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 364 Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [575 01-04 01:52:24.08 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer1.org1.example.com-mycc-1.0) -peer1.org2.example.com | [5c7 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 365 Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [576 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [5cb 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 366 Adding to config map: [Values] /Channel/OrdererAddresses -peer1.org2.example.com | [5c8 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [577 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 367 Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [5cc 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [578 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [5c9 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421e4bc00), Data:(*common.BlockData)(0xc42207d9c0), Metadata:(*common.BlockMetadata)(0xc42207da00)}, doMVCCValidation=true -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 368 Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [5cd 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message TRANSACTION -peer1.org1.example.com | [579 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -peer1.org2.example.com | [5ca 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 369 Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [5ce 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message GET_STATE from shim -peer1.org2.example.com | [5cb 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [57a 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -peer0.org1.example.com | [5cf 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [57b 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -peer1.org2.example.com | [5cc 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36a Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [57c 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -peer1.org1.example.com | [57d 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -peer1.org1.example.com | [57e 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -peer1.org1.example.com | [57f 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [5cd 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36b Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [5d0 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7098cf0b]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [580 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [5ce 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] marked as valid by state validator -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36c Adding to config map: [Groups] /Channel -peer1.org1.example.com | [581 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Move state message READY -peer0.org1.example.com | [5d1 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36d Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [5cf 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xe8, 0x99, 0x74, 0xde, 0xf0, 0x6e, 0x31, 0xc2, 0xbb, 0xbe, 0x2a, 0x50, 0x27, 0x3f, 0xfb, 0x5c, 0x63, 0xb0, 0xc1, 0x65, 0xf4, 0x14, 0xd3, 0x85, 0x3a, 0xd3, 0x86, 0x68, 0x6d, 0x6e, 0x6, 0x7e} txOffsets= -peer1.org1.example.com | [582 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: READY in state established -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36e Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [5d2 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b] getting state for chaincode mycc, key a, channel businesschannel -peer1.org1.example.com | [583 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0c92ff70]Entered state ready -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36f Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org2.example.com | txId=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec locPointer=offset=70, bytesLength=2849 -peer1.org1.example.com | [584 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc -peer0.org1.example.com | [5d3 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 370 Adding to config map: [Values] /Channel/Consortium -peer1.org1.example.com | [585 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]sending state message READY -peer1.org2.example.com | ] -peer0.org1.example.com | [5d4 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Got state. Sending RESPONSE -peer1.org1.example.com | [586 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU sending init completed -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 371 Adding to config map: [Groups] /Channel -peer1.org1.example.com | [587 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU LaunchChaincode complete -orderer.example.com | 2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 372 Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [5d5 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]handleGetState serial send RESPONSE -peer1.org2.example.com | [5d0 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to index -peer1.org1.example.com | [588 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 373 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [5d6 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message GET_STATE from shim -peer1.org1.example.com | [589 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -peer1.org2.example.com | [5d1 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx number:[0] ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to blockNumTranNum index -peer1.org1.example.com | [58a 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c92ff70]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 374 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer1.org1.example.com | [58b 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [5d7 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 375 Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [58c 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [5d8 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7098cf0b]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [58d 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c92ff70]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 376 Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [58e 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Move state message TRANSACTION -peer1.org2.example.com | [5d2 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -peer0.org1.example.com | [5d9 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 377 Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [58f 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [590 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5da 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b] getting state for chaincode mycc, key b, channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 378 Adding to config map: [Values] /Channel/Consortium -peer1.org2.example.com | [5d3 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer1.org1.example.com | [591 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.208 UTC [policies] GetPolicy -> DEBU 379 Returning policy ChannelCreationPolicy for evaluation -peer1.org2.example.com | [5d4 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [592 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Received message GET_STATE from shim -orderer.example.com | 2018-01-04 01:50:57.208 UTC [cauthdsl] func1 -> DEBU 37a 0xc420026fe8 gate 1515030657208420300 evaluation starts -peer0.org1.example.com | [5db 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [5d5 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [593 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-04 01:50:57.208 UTC [cauthdsl] func2 -> DEBU 37b 0xc420026fe8 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [594 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0c92ff70]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [5dc 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Got state. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.208 UTC [cauthdsl] func2 -> DEBU 37c 0xc420026fe8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer1.org2.example.com | [5d6 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org1.example.com | [595 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [5dd 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.208 UTC [msp/identity] newIdentity -> DEBU 37d Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [596 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0c92ff70] getting state for chaincode mycc, key a, channel businesschannel -peer1.org2.example.com | [5d7 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [5d8 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [5de 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message PUT_STATE from shim -peer1.org2.example.com | [5d9 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org1.example.com | [597 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [5df 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [5da 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org1.example.com | [5e0 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5db 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer1.org2.example.com | [5dc 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -peer0.org1.example.com | [5e1 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]state is ready -peer1.org1.example.com | [598 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0c92ff70]Got state. Sending RESPONSE -peer1.org2.example.com | [5dd 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer1.org1.example.com | [599 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0c92ff70]handleGetState serial send RESPONSE -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [5de 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [5e2 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [5df 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [5e3 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]enterBusyState trigger event RESPONSE -peer1.org2.example.com | [5e0 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org1.example.com | [59a 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Received message COMPLETED from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | [5e1 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [5e4 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message RESPONSE -peer1.org1.example.com | [59b 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [5e2 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [5e5 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [5e3 01-04 01:52:24.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [5e4 01-04 01:52:24.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421c2ba70 -peer0.org1.example.com | [5e6 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5e5 01-04 01:52:24.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org2.example.com | [5e6 01-04 01:52:24.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [59c 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [5e7 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message RESPONSE -peer1.org2.example.com | [5e7 01-04 01:52:24.27 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer1.org2.example.com | [5e8 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [5e8 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message PUT_STATE from shim -peer1.org1.example.com | [59d 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc -peer1.org2.example.com | [5e9 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer1.org1.example.com | [59e 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [5ea 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42155b9f0, header 0xc421c2baa0 -peer0.org1.example.com | [5e9 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org1.example.com | [59f 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org2.example.com | [5eb 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org1.example.com | [5a0 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer0.org1.example.com | [5ea 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5ec 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555 -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [5a1 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0a68bf33-d53d-48aa-af24-ca5470bb882e] -peer1.org2.example.com | [5ed 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555] -peer0.org1.example.com | [5eb 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]state is ready -peer1.org2.example.com | [5ee 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [5a2 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [5ec 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.208 UTC [msp] SatisfiesPrincipal -> DEBU 37e Checking if identity satisfies ADMIN role for Org1MSP -peer1.org2.example.com | [5ef 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3c793725-f853-45c3-8d94-fea97c2d9252] -peer1.org1.example.com | [5a3 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | 2018-01-04 01:50:57.208 UTC [cauthdsl] func2 -> DEBU 37f 0xc420026fe8 principal matched by identity 0 -peer1.org2.example.com | [5f0 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555 channel id: businesschannel -peer0.org1.example.com | [5ed 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]enterBusyState trigger event RESPONSE -peer1.org1.example.com | [5a4 01-04 01:52:24.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org2.example.com | [5f1 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555,syscc=true,proposal=0xc42155b9f0,canname=lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.208 UTC [msp/identity] Verify -> DEBU 380 Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -orderer.example.com | 00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -orderer.example.com | 2018-01-04 01:50:57.208 UTC [msp/identity] Verify -> DEBU 381 Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -peer0.org1.example.com | [5ee 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message RESPONSE -peer1.org1.example.com | [5a5 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc channel id: businesschannel version: 1.0.2 -peer1.org2.example.com | [5f2 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | 00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -peer0.org1.example.com | [5ef 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | 00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -peer1.org1.example.com | [5a6 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc,syscc=true,proposal=0xc421942280,canname=escc:1.0.2 -orderer.example.com | 00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -peer1.org2.example.com | [5f3 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5f0 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5a7 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org1.example.com | [5f1 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message RESPONSE -orderer.example.com | 00000040 de 20 dd a7 3b f5 |. ..;.| -peer1.org2.example.com | [5f4 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [5f2 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.209 UTC [cauthdsl] func2 -> DEBU 382 0xc420026fe8 principal evaluation succeeds for identity 0 -peer1.org1.example.com | [5a8 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [5f3 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [5f5 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ae09485]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.209 UTC [cauthdsl] func1 -> DEBU 383 0xc420026fe8 gate 1515030657208420300 evaluation succeeds -peer1.org1.example.com | [5a9 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [5f4 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [5f6 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 384 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 385 Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [5f5 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -peer1.org2.example.com | [5f7 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5aa 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c92ff70]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 386 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [5f6 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [5f7 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [5f8 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [5f9 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a5221f0a-23c9-42a8-99f2-62837b6b037a] -peer0.org1.example.com | [5fa 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [5fb 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec channel id: businesschannel chaincode id: name:"mycc" -peer0.org1.example.com | [5fc 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [5fd 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [5fe 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec,syscc=true,proposal=0xc421d66550,canname=escc:1.0.2 -peer0.org1.example.com | [5ff 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org2.example.com | [5f8 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ae09485]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 387 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [5ab 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [600 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org1.example.com | [5ac 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [5f9 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 388 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [601 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org2.example.com | [5fa 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae09485]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [5ad 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0c92ff70]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 389 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [602 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [5fb 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5ae 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 38a Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [603 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [604 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [605 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [606 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message TRANSACTION -peer0.org1.example.com | [607 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [5fc 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]sending state message TRANSACTION -peer1.org1.example.com | [5af 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [608 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org1.example.com | [5b0 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [5fd 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 38b Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 38c Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [609 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message TRANSACTION -peer1.org2.example.com | [5fe 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ae09485]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [5b1 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 38d Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [5ff 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2ae09485]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [60a 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 38e Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [5b2 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [60b 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 38f Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [600 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2ae09485]Sending GET_STATE -peer1.org1.example.com | [5b3 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [60c 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7098cf0b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [5b4 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [601 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]Received message GET_STATE from shim -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 390 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [5b5 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [60d 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [602 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae09485]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 391 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [5b6 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer0.org1.example.com | [60e 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 392 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [603 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [2ae09485]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [60f 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [5b7 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer0.org1.example.com | [610 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Move state message COMPLETED -peer1.org2.example.com | [604 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 393 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [5b8 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -peer0.org1.example.com | [611 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 394 Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [605 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2ae09485] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org1.example.com | [5b9 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -peer0.org1.example.com | [612 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 395 Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [606 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 396 Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [5ba 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer0.org1.example.com | [613 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message COMPLETED from shim -peer1.org2.example.com | [607 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2ae09485]Got state. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/configtx] processConfig -> DEBU 397 Beginning new config for channel businesschannel -peer1.org1.example.com | [5bb 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [614 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/config] NewStandardValues -> DEBU 398 Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [608 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2ae09485]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/config] initializeProtosStruct -> DEBU 399 Processing field: HashingAlgorithm -peer0.org1.example.com | [615 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5bc 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/config] initializeProtosStruct -> DEBU 39a Processing field: BlockDataHashingStructure -peer1.org1.example.com | [5bd 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [609 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]Received message RESPONSE from shim -peer0.org1.example.com | [616 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/config] initializeProtosStruct -> DEBU 39b Processing field: OrdererAddresses -peer1.org1.example.com | [5be 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [617 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/config] initializeProtosStruct -> DEBU 39c Processing field: Consortium -peer1.org1.example.com | [5bf 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [60a 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ae09485]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [618 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [60b 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2ae09485]before send -orderer.example.com | 2018-01-04 01:50:57.210 UTC [policies] ProposePolicy -> DEBU 39d Proposed new policy Readers for Channel -peer1.org1.example.com | [5c0 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Received message TRANSACTION from shim -peer0.org1.example.com | [619 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.210 UTC [policies] ProposePolicy -> DEBU 39e Proposed new policy Writers for Channel -peer1.org2.example.com | [60c 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [2ae09485]after send -peer1.org1.example.com | [5c1 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c92ff70]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.210 UTC [policies] ProposePolicy -> DEBU 39f Proposed new policy Admins for Channel -peer0.org1.example.com | [61a 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a5221f0a-23c9-42a8-99f2-62837b6b037a] -peer1.org2.example.com | [60d 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [2ae09485]Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [5c2 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0c92ff70]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [5c3 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [61b 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.210 UTC [common/config] NewStandardValues -> DEBU 3a0 Initializing protos for *config.OrdererProtos -peer1.org2.example.com | [60e 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2ae09485]GetState received payload RESPONSE -peer1.org1.example.com | [5c4 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [61c 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer1.org2.example.com | [60f 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a1 Processing field: ConsensusType -peer1.org2.example.com | [610 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]Move state message COMPLETED -peer1.org1.example.com | [5c5 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [61d 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -orderer.example.com | 2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a2 Processing field: BatchSize -peer1.org2.example.com | [611 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ae09485]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [5c6 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a3 Processing field: BatchTimeout -peer0.org1.example.com | [61e 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [612 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a4 Processing field: KafkaBrokers -peer0.org1.example.com | [61f 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [613 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]Received message COMPLETED from shim -peer1.org1.example.com | [5c7 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0c92ff70]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [620 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -orderer.example.com | 2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a5 Processing field: ChannelRestrictions -peer1.org1.example.com | [5c8 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0c92ff70]send state message COMPLETED -peer1.org2.example.com | [614 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae09485]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.211 UTC [policies] ProposePolicy -> DEBU 3a6 Proposed new policy Writers for Orderer -peer1.org1.example.com | [5c9 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0c92ff70]Received message COMPLETED from shim -peer0.org1.example.com | [621 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217d2db0 -peer1.org2.example.com | [615 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [5ca 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff70]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.211 UTC [policies] ProposePolicy -> DEBU 3a7 Proposed new policy Admins for Orderer -peer1.org2.example.com | [616 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555 -peer0.org1.example.com | [622 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -peer1.org1.example.com | [5cb 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.211 UTC [policies] ProposePolicy -> DEBU 3a8 Proposed new policy BlockValidation for Orderer -peer1.org2.example.com | [617 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [623 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [618 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org1.example.com | [5cc 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0c92ff7003e1fdd437dc8efe921356b4e74e45900e3869de4c6d98c2f34b23fc -orderer.example.com | 2018-01-04 01:50:57.211 UTC [policies] ProposePolicy -> DEBU 3a9 Proposed new policy Readers for Orderer -peer1.org2.example.com | [619 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555 channel id: businesschannel version: 1.0 -peer0.org1.example.com | [624 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org1.example.com | [5cd 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.212 UTC [common/config] NewStandardValues -> DEBU 3aa Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [625 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [61a 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555,syscc=false,proposal=0xc42155b9f0,canname=mycc:1.0 -peer1.org1.example.com | [5ce 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [626 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-04 01:50:57.212 UTC [common/config] initializeProtosStruct -> DEBU 3ab Processing field: MSP -peer1.org2.example.com | [61b 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer1.org1.example.com | [5cf 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -peer0.org1.example.com | [627 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-04 01:50:57.212 UTC [policies] ProposePolicy -> DEBU 3ac Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [628 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42232e800, header channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -peer1.org1.example.com | [5d0 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [0a68bf33-d53d-48aa-af24-ca5470bb882e] -orderer.example.com | 2018-01-04 01:50:57.212 UTC [policies] ProposePolicy -> DEBU 3ad Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | [61c 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [629 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 2018-01-04 01:50:57.212 UTC [policies] ProposePolicy -> DEBU 3ae Proposed new policy Readers for OrdererOrg -peer1.org1.example.com | [5d1 01-04 01:52:24.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [62a 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [61d 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | 2018-01-04 01:50:57.212 UTC [common/config] NewStandardValues -> DEBU 3af Initializing protos for *struct {} -peer1.org1.example.com | [5d2 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer0.org1.example.com | [62b 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [61e 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ae09485]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3b0 Proposed new policy Admins for Application -peer1.org1.example.com | [5d3 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3b1 Proposed new policy Writers for Application -peer0.org1.example.com | [62c 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [61f 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org1.example.com | [5d4 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [62d 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3b2 Proposed new policy Readers for Application -peer1.org2.example.com | [620 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5d5 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422413770 -peer0.org1.example.com | [62e 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [621 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ae09485]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3b3 Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [5d6 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\330\221\266\322\005\020\370\254\345\266\001\"\017businesschannel*@926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\224\276\310#\t\021C\316\036@TxH\251\"\250\030\335\rU4\366[\026" -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3b4 Processing field: MSP -peer0.org1.example.com | [62f 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [678456a4-06ce-4ad7-910a-96b6407ad48e] -peer1.org2.example.com | [622 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]Move state message TRANSACTION -peer1.org1.example.com | [5d7 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3b5 Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [630 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org2.example.com | [623 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae09485]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org1.example.com | [5d8 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [631 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [678456a4-06ce-4ad7-910a-96b6407ad48e] -peer1.org2.example.com | [624 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3b6 Processing field: AnchorPeers -peer1.org1.example.com | [5d9 01-04 01:52:26.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -peer0.org1.example.com | [632 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3b7 Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [5da 01-04 01:52:26.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [633 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [db9c005f-9318-4785-8c1d-e71ade6c3441] -peer1.org2.example.com | [625 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3b8 Processing field: MSP -peer1.org1.example.com | [5db 01-04 01:52:26.51 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [634 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=857be128-025e-43df-a8b1-11300b6f7a7e,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer1.org2.example.com | [626 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]Received message GET_STATE from shim -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3b9 Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [635 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec chaindID businesschannel -peer1.org1.example.com | [5dc 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ba8800, header channel_header:"\010\003\032\014\010\330\221\266\322\005\020\370\254\345\266\001\"\017businesschannel*@926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\224\276\310#\t\021C\316\036@TxH\251\"\250\030\335\rU4\366[\026" -peer1.org2.example.com | [627 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae09485]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3ba Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [636 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -peer1.org2.example.com | [628 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [2ae09485]Received GET_STATE, invoking get state from ledger -peer1.org1.example.com | [5dd 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3bb Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [637 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [629 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3bc Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [5de 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [62a 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2ae09485] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3bd Processing field: MSP -peer0.org1.example.com | [638 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org1.example.com | [5df 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [62b 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3be Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [639 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [857be128]Inside sendExecuteMessage. Message TRANSACTION -peer1.org1.example.com | [5e0 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer1.org2.example.com | [62c 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2ae09485]Got state. Sending RESPONSE -peer0.org1.example.com | [63a 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3bf Processing field: AnchorPeers -peer1.org1.example.com | [5e1 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] -peer1.org2.example.com | [62d 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [2ae09485]handleGetState serial send RESPONSE -peer0.org1.example.com | [63b 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [857be128]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3c0 Initializing protos for *config.OrganizationProtos -peer1.org1.example.com | [5e2 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [62e 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3c1 Processing field: MSP -peer0.org1.example.com | [63c 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [857be128]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3c2 Proposed new policy Admins for Org1MSP -peer1.org1.example.com | [5e3 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [e7f76a3d-8384-4c21-98ad-3c6fd6999ce9] -peer0.org1.example.com | [63d 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [857be128]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3c3 Proposed new policy Readers for Org1MSP -peer1.org2.example.com | [62f 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae09485]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3c4 Proposed new policy Writers for Org1MSP -peer1.org1.example.com | [5e4 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [5e5 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [e7f76a3d-8384-4c21-98ad-3c6fd6999ce9] -peer1.org2.example.com | [630 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [63e 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.213 UTC [common/config] validateMSP -> DEBU 3c5 Setting up MSP for org OrdererOrg -peer1.org1.example.com | [5e6 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [631 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555 -peer0.org1.example.com | [63f 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [857be128]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.213 UTC [msp] NewBccspMsp -> DEBU 3c6 Creating BCCSP-based MSP instance -peer1.org1.example.com | [5e7 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5ce89a0a-e72c-48fa-86c5-a107a106cd67] -peer0.org1.example.com | [640 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [857be128]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.213 UTC [msp] Setup -> DEBU 3c7 Setting up MSP instance OrdererMSP -peer1.org2.example.com | [632 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org1.example.com | [5e8 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=e88c3681-1a13-47b8-a522-e52e87277366,syscc=true,proposal=0x0,canname=vscc:1.0.2 -peer0.org1.example.com | [641 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [857be128]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [5e9 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd chaindID businesschannel -orderer.example.com | 2018-01-04 01:50:57.214 UTC [msp/identity] newIdentity -> DEBU 3c8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [633 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [642 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [857be128]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [634 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [5ea 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [643 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [644 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [5eb 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [645 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer1.org2.example.com | [635 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [3c793725-f853-45c3-8d94-fea97c2d9252] -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [646 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [857be128]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [5ec 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -peer1.org2.example.com | [636 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [647 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [857be128]Move state message COMPLETED -peer1.org1.example.com | [5ed 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e88c3681]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [648 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [857be128]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [637 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555 channel id: businesschannel chaincode id: name:"mycc" -peer0.org1.example.com | [649 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [857be128]send state message COMPLETED -peer1.org1.example.com | [5ee 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -peer1.org2.example.com | [638 01-04 01:52:24.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [64a 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [857be128]Received message COMPLETED from shim -peer1.org1.example.com | [5ef 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [e88c3681]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org2.example.com | [639 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [64b 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [857be128]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [5f0 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e88c3681]Move state message TRANSACTION -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer1.org2.example.com | [63a 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555,syscc=true,proposal=0xc42155b9f0,canname=escc:1.0.2 -peer0.org1.example.com | [64c 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [857be128-025e-43df-a8b1-11300b6f7a7e]HandleMessage- COMPLETED. Notify -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer1.org1.example.com | [5f1 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e88c3681]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [64d 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:857be128-025e-43df-a8b1-11300b6f7a7e -peer1.org2.example.com | [63b 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer1.org1.example.com | [5f2 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [64e 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [63c 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [5f3 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e88c3681]sending state message TRANSACTION -peer0.org1.example.com | [64f 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [db9c005f-9318-4785-8c1d-e71ade6c3441] -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer1.org2.example.com | [63d 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer1.org2.example.com | [63e 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ae09485]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [63f 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -peer0.org1.example.com | [650 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [5f4 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e88c3681]Received message TRANSACTION from shim -peer1.org1.example.com | [5f5 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e88c3681]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [5f6 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [e88c3681]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [651 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [640 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org1.example.com | [5f7 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer1.org1.example.com | [5f8 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [652 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc424aa71c0), Data:(*common.BlockData)(0xc4217eb9a0), Metadata:(*common.BlockMetadata)(0xc4217eb9e0)}, doMVCCValidation=true -peer1.org1.example.com | [5f9 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -orderer.example.com | 2018-01-04 01:50:57.214 UTC [msp/identity] newIdentity -> DEBU 3c9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [641 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [2ae09485]sendExecuteMsg trigger event TRANSACTION -peer1.org1.example.com | [5fa 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e88c3681]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [653 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer1.org2.example.com | [642 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]Move state message TRANSACTION -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [5fb 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e88c3681]Move state message COMPLETED -peer1.org1.example.com | [5fc 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e88c3681]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | [5fd 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e88c3681]send state message COMPLETED -peer0.org1.example.com | [654 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer1.org1.example.com | [5fe 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e88c3681]Received message COMPLETED from shim -peer1.org2.example.com | [643 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae09485]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [5ff 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e88c3681]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [655 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [644 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [600 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e88c3681-1a13-47b8-a522-e52e87277366]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [656 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer1.org2.example.com | [645 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]sending state message TRANSACTION -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org1.example.com | [601 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e88c3681-1a13-47b8-a522-e52e87277366 -peer0.org1.example.com | [657 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] marked as valid by state validator -peer1.org2.example.com | [646 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]Received message TRANSACTION from shim -peer1.org1.example.com | [602 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [658 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xe8, 0x99, 0x74, 0xde, 0xf0, 0x6e, 0x31, 0xc2, 0xbb, 0xbe, 0x2a, 0x50, 0x27, 0x3f, 0xfb, 0x5c, 0x63, 0xb0, 0xc1, 0x65, 0xf4, 0x14, 0xd3, 0x85, 0x3a, 0xd3, 0x86, 0x68, 0x6d, 0x6e, 0x6, 0x7e} txOffsets= -peer1.org2.example.com | [647 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ae09485]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [603 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [5ce89a0a-e72c-48fa-86c5-a107a106cd67] -peer1.org1.example.com | [604 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -peer1.org1.example.com | [605 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | txId=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec locPointer=offset=70, bytesLength=2849 -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [606 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422328840), Data:(*common.BlockData)(0xc42239db20), Metadata:(*common.BlockMetadata)(0xc42239db60)}, doMVCCValidation=true -peer1.org2.example.com | [648 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [2ae09485]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org1.example.com | [607 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | ] -peer1.org2.example.com | [649 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org1.example.com | [608 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer1.org2.example.com | [64a 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [659 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to index -peer1.org1.example.com | [609 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [65a 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx number:[0] ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to blockNumTranNum index -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [64b 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]Transaction completed. Sending COMPLETED -peer1.org1.example.com | [60a 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [65b 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer1.org1.example.com | [60b 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] marked as valid by state validator -peer1.org2.example.com | [64c 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]Move state message COMPLETED -peer0.org1.example.com | [65c 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -peer1.org1.example.com | [60c 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xa3, 0x96, 0xc0, 0xf9, 0x28, 0xfe, 0x7e, 0x14, 0xc0, 0xf3, 0x58, 0xaf, 0xa7, 0xcd, 0xfe, 0xbb, 0xfc, 0xc3, 0xe2, 0x1c, 0x33, 0x37, 0xd5, 0x9a, 0xe7, 0x19, 0x56, 0x62, 0xcc, 0x79, 0x72, 0x45} txOffsets= -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org1.example.com | txId=926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd locPointer=offset=70, bytesLength=2848 -peer1.org2.example.com | [64d 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2ae09485]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org1.example.com | ] -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [65d 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [60d 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2848] for tx ID: [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] to index -peer1.org2.example.com | [64e 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2ae09485]send state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [65e 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [60e 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2848] for tx number:[0] ID: [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] to blockNumTranNum index -peer1.org2.example.com | [64f 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [2ae09485]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.215 UTC [msp/identity] newIdentity -> DEBU 3ca Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [650 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae09485]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [65f 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org2.example.com | [651 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555]HandleMessage- COMPLETED. Notify -peer1.org1.example.com | [60f 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59219], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [660 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [652 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:2ae094852c415982030a50a7d167716c71f32aa0f424f14674b236706d2d0555 -peer1.org1.example.com | [610 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -peer0.org1.example.com | [661 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [611 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [653 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [662 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org1.example.com | [612 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer1.org2.example.com | [654 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [663 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org1.example.com | [613 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer1.org2.example.com | [655 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [664 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org1.example.com | [614 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -peer1.org2.example.com | [656 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [3c793725-f853-45c3-8d94-fea97c2d9252] -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [665 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -peer1.org1.example.com | [615 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [657 01-04 01:52:24.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org1.example.com | [616 01-04 01:52:26.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org2.example.com | [658 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [666 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -peer1.org2.example.com | [659 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4228476b0 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer1.org1.example.com | [617 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org1.example.com | [667 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer1.org2.example.com | [65a 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [618 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer1.org2.example.com | [65b 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [668 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [65c 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [619 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd -peer0.org1.example.com | [669 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer1.org2.example.com | [65d 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-04 01:50:57.215 UTC [msp] Validate -> DEBU 3cb MSP OrdererMSP validating identity -peer1.org1.example.com | [61a 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -peer1.org2.example.com | [65e 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [65f 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421780dc0, header 0xc4228476e0 -orderer.example.com | 2018-01-04 01:50:57.216 UTC [common/config] Validate -> DEBU 3cc Anchor peers for org Org2MSP are -peer1.org1.example.com | [61b 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [66a 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer1.org2.example.com | [660 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer1.org1.example.com | [61c 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-04 01:50:57.216 UTC [common/config] validateMSP -> DEBU 3cd Setting up MSP for org Org2MSP -peer1.org1.example.com | [61d 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -peer0.org1.example.com | [66b 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer1.org2.example.com | [661 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd -peer1.org1.example.com | [61e 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.216 UTC [msp] NewBccspMsp -> DEBU 3ce Creating BCCSP-based MSP instance -peer1.org2.example.com | [662 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] -peer0.org1.example.com | [66c 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer1.org2.example.com | [663 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.216 UTC [msp] Setup -> DEBU 3cf Setting up MSP instance Org2MSP -peer1.org1.example.com | [61f 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -peer0.org1.example.com | [66d 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221c1890 -peer1.org2.example.com | [664 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6afbe142-4d34-4800-9080-b8c58dac897d] -orderer.example.com | 2018-01-04 01:50:57.216 UTC [msp/identity] newIdentity -> DEBU 3d0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [665 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd channel id: businesschannel -peer0.org1.example.com | [66e 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [666 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd,syscc=true,proposal=0xc421780dc0,canname=lscc:1.0.2 -peer1.org2.example.com | [667 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [66f 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [668 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [669 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [670 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [66a 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [926e5ab3]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [671 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [66b 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [672 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer1.org2.example.com | [66c 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [673 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4217843c0, header 0xc4221c18c0 -peer0.org1.example.com | [674 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -peer0.org1.example.com | [675 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | [66d 01-04 01:52:24.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [926e5ab3]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [676 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc] -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer0.org1.example.com | [677 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [678 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f5f40dba-2574-4125-bc5b-1ff1c28c5166] -peer1.org2.example.com | [66e 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Move state message TRANSACTION -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [679 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc channel id: businesschannel -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [67a 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc,syscc=true,proposal=0xc4217843c0,canname=lscc:1.0.2 -peer0.org1.example.com | [67b 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | [66f 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org2.example.com | [670 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [67c 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer0.org1.example.com | [67d 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [67e 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [67f 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [671 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]sending state message TRANSACTION -peer0.org1.example.com | [680 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [681 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [682 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Move state message TRANSACTION -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org1.example.com | [683 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -peer1.org2.example.com | [672 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]Received message TRANSACTION from shim -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer0.org1.example.com | [684 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [673 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [926e5ab3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [685 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]sending state message TRANSACTION -peer1.org2.example.com | [674 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [926e5ab3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -peer0.org1.example.com | [686 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Received message TRANSACTION from shim -orderer.example.com | SCjyRdD3aQ== -peer0.org1.example.com | [687 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [688 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ae249c29]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [675 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [926e5ab3]Sending GET_STATE -orderer.example.com | 2018-01-04 01:50:57.216 UTC [msp/identity] newIdentity -> DEBU 3d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [689 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ae249c29]Sending GET_STATE -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [68a 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message GET_STATE from shim -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [676 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Received message GET_STATE from shim -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [677 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer1.org2.example.com | [678 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [926e5ab3]Received GET_STATE, invoking get state from ledger -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [68b 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [679 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [68c 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ae249c29]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [67a 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer1.org2.example.com | [67b 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [68d 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [67c 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3]Got state. Sending RESPONSE -peer0.org1.example.com | [68e 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae249c29] getting state for chaincode lscc, key mycc, channel businesschannel -peer1.org2.example.com | [67d 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [926e5ab3]handleGetState serial send RESPONSE -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -peer0.org1.example.com | [68f 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | [690 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae249c29]Got state. Sending RESPONSE -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org1.example.com | [691 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae249c29]handleGetState serial send RESPONSE -peer1.org2.example.com | [67e 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]Received message RESPONSE from shim -peer0.org1.example.com | [692 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Received message RESPONSE from shim -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [693 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [694 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ae249c29]before send -peer0.org1.example.com | [696 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ae249c29]GetState received payload RESPONSE -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [67f 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [926e5ab3]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-04 01:50:57.217 UTC [msp/identity] newIdentity -> DEBU 3d2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [680 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [926e5ab3]before send -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [681 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [926e5ab3]after send -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | [682 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [926e5ab3]Received RESPONSE, communicated (state:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [683 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [926e5ab3]GetState received payload RESPONSE -peer0.org1.example.com | [695 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ae249c29]after send -peer1.org2.example.com | [684 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]Transaction completed. Sending COMPLETED -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [698 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [685 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]Move state message COMPLETED -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [697 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ae249c29]Received RESPONSE, communicated (state:ready) -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer1.org2.example.com | [686 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [926e5ab3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [699 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Move state message COMPLETED -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [69a 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer1.org2.example.com | [687 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]send state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [69b 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.217 UTC [msp] Validate -> DEBU 3d3 MSP Org2MSP validating identity -peer1.org2.example.com | [688 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.217 UTC [common/config] Validate -> DEBU 3d4 Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-04 01:50:57.217 UTC [common/config] validateMSP -> DEBU 3d5 Setting up MSP for org Org1MSP -peer0.org1.example.com | [69c 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.217 UTC [msp] NewBccspMsp -> DEBU 3d6 Creating BCCSP-based MSP instance -peer1.org2.example.com | [689 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.217 UTC [msp] Setup -> DEBU 3d7 Setting up MSP instance Org1MSP -peer1.org2.example.com | [68a 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [69d 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.217 UTC [msp/identity] newIdentity -> DEBU 3d8 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [69e 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc]HandleMessage- COMPLETED. Notify -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [68b 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd -peer0.org1.example.com | [69f 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [6a0 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [68c 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer1.org2.example.com | [68d 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [6a1 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [6a2 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc channel id: businesschannel version: 1.0 -peer1.org2.example.com | [68e 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd channel id: businesschannel version: 1.0 -peer0.org1.example.com | [6a3 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc,syscc=false,proposal=0xc4217843c0,canname=mycc:1.0 -peer1.org2.example.com | [68f 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd,syscc=false,proposal=0xc421780dc0,canname=mycc:1.0 -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer0.org1.example.com | [6a4 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -peer1.org2.example.com | [690 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [6a5 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -peer1.org2.example.com | [691 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [6a6 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | 2018-01-04 01:50:57.218 UTC [msp/identity] newIdentity -> DEBU 3d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [692 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [6a7 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | [693 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [926e5ab3]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [694 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [6a8 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | [695 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [6a9 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer1.org2.example.com | [696 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [926e5ab3]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [6aa 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [6ab 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Move state message TRANSACTION -peer1.org2.example.com | [697 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Move state message TRANSACTION -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer1.org2.example.com | [698 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [6ac 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | xHTBvxfK6mAzmUitFmY= -peer1.org2.example.com | [699 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.218 UTC [msp/identity] newIdentity -> DEBU 3da Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | [69a 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]sending state message TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [6ad 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [6ae 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]sending state message TRANSACTION -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer1.org2.example.com | [69b 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Received message GET_STATE from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer1.org2.example.com | [69c 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [6af 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message GET_STATE from shim -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.218 UTC [msp] Validate -> DEBU 3db MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.218 UTC [msp] Setup -> DEBU 3dc Setting up the MSP manager (3 msps) -peer0.org1.example.com | [6b0 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [69d 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [926e5ab3]Received GET_STATE, invoking get state from ledger -orderer.example.com | 2018-01-04 01:50:57.218 UTC [msp] Setup -> DEBU 3dd MSP manager setup complete, setup 3 msps -peer1.org2.example.com | [69e 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3de Returning policy Writers for evaluation -peer0.org1.example.com | [6b1 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ae249c29]Received GET_STATE, invoking get state from ledger -peer1.org2.example.com | [69f 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3df In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e0 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3e1 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e2 Returning policy Readers for evaluation -peer1.org2.example.com | [6a0 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -peer0.org1.example.com | [6b2 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3e3 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e4 Returning policy Writers for evaluation -peer1.org2.example.com | [6a1 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3]Got state. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e5 Returning policy Admins for evaluation -peer0.org1.example.com | [6b3 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae249c29] getting state for chaincode mycc, key a, channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e6 Returning policy Writers for evaluation -peer1.org2.example.com | [6a2 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [926e5ab3]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e7 Returning policy Readers for evaluation -peer0.org1.example.com | [6b4 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e8 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3e9 In commit adding relative sub-policy Org2MSP/Readers to Application -peer1.org2.example.com | [6a3 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Received message GET_STATE from shim -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3ea Returning policy Writers for evaluation -peer1.org2.example.com | [6a4 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [6b5 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae249c29]Got state. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3eb In commit adding relative sub-policy Org2MSP/Writers to Application -peer1.org2.example.com | [6a5 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [926e5ab3]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [6b6 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae249c29]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3ec Returning policy Admins for evaluation -peer0.org1.example.com | [6b7 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message COMPLETED from shim -peer1.org2.example.com | [6a6 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3ed In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [6b8 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3ee Returning policy Admins for evaluation -peer0.org1.example.com | [6b9 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6a7 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3] getting state for chaincode mycc, key b, channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3ef In commit adding relative sub-policy Org1MSP/Admins to Application -peer1.org2.example.com | [6a8 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b -peer0.org1.example.com | [6ba 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f0 Returning policy Readers for evaluation -peer0.org1.example.com | [6bb 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3f1 In commit adding relative sub-policy Org1MSP/Readers to Application -peer1.org2.example.com | [6a9 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3]Got state. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f2 Returning policy Writers for evaluation -peer1.org2.example.com | [6aa 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [926e5ab3]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3f3 In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [6bc 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [6ab 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Received message PUT_STATE from shim -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f4 Returning policy Admins for evaluation -peer0.org1.example.com | [6bd 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f5 Returning policy Admins for evaluation -peer1.org2.example.com | [6ac 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [6be 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f5f40dba-2574-4125-bc5b-1ff1c28c5166] -peer1.org2.example.com | [6ad 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f7 Returning policy Writers for evaluation -peer0.org1.example.com | [6bf 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer1.org2.example.com | [6ae 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3]state is ready -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f8 Returning policy Readers for evaluation -peer1.org2.example.com | [6af 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f9 Returning policy Readers for evaluation -peer0.org1.example.com | [6c0 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | 2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3fa Returning policy Writers for evaluation -peer0.org1.example.com | [6c1 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer1.org2.example.com | [6b0 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [926e5ab3]enterBusyState trigger event RESPONSE -peer0.org1.example.com | [6c2 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 3fb In commit adding relative sub-policy Orderer/Writers to Channel -peer1.org2.example.com | [6b1 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Move state message RESPONSE -peer0.org1.example.com | [6c3 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc,syscc=true,proposal=0xc4217843c0,canname=escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 3fc Returning policy Admins for evaluation -peer1.org2.example.com | [6b2 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 3fd In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [6c4 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org2.example.com | [6b3 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 3fe Returning policy BlockValidation for evaluation -peer0.org1.example.com | [6c5 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [6c6 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer1.org2.example.com | [6b4 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]sending state message RESPONSE -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 3ff In commit adding relative sub-policy Orderer/BlockValidation to Channel -peer1.org2.example.com | [6b5 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Received message PUT_STATE from shim -peer0.org1.example.com | [6c7 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [6b6 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 400 Returning policy Readers for evaluation -peer1.org2.example.com | [6b7 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6c8 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 401 In commit adding relative sub-policy Orderer/Readers to Channel -peer1.org2.example.com | [6b8 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3]state is ready -peer0.org1.example.com | [6c9 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [6b9 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [926e5ab3]Completed PUT_STATE. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 402 Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [6ca 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 403 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [6cb 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 404 Returning policy OrdererOrg/Admins for evaluation -peer0.org1.example.com | [6cc 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [6ba 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [926e5ab3]enterBusyState trigger event RESPONSE -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 405 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [6cd 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6bb 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Move state message RESPONSE -peer0.org1.example.com | [6ce 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 406 Returning policy OrdererOrg/Readers for evaluation -peer1.org2.example.com | [6bc 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -peer0.org1.example.com | [6cf 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 407 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org1.example.com | [6d0 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 408 Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [6d1 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ae249c29]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [6bd 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 409 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer0.org1.example.com | [6d2 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer1.org2.example.com | [6be 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]sending state message RESPONSE -peer1.org2.example.com | [6bf 01-04 01:52:24.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Received message COMPLETED from shim -peer0.org1.example.com | [6d3 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 40a Returning policy Admins for evaluation -peer1.org2.example.com | [6c0 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 40b In commit adding relative sub-policy Application/Admins to Channel -peer0.org1.example.com | [6d4 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [6c1 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [6d5 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 40c Returning policy Writers for evaluation -peer1.org2.example.com | [6c2 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd -peer1.org2.example.com | [6c3 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 40d In commit adding relative sub-policy Application/Writers to Channel -peer1.org2.example.com | [6c4 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [6d6 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [6d7 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 40e Returning policy Readers for evaluation -peer1.org2.example.com | [6c5 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 40f In commit adding relative sub-policy Application/Readers to Channel -peer0.org1.example.com | [6d8 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message COMPLETED from shim -peer1.org2.example.com | [6c6 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [6afbe142-4d34-4800-9080-b8c58dac897d] -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 410 Returning policy Org2MSP/Writers for evaluation -peer1.org2.example.com | [6c7 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 411 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [6d9 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 412 Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [6da 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc]HandleMessage- COMPLETED. Notify -peer1.org2.example.com | [6c8 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd channel id: businesschannel chaincode id: name:"mycc" -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 413 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer1.org2.example.com | [6c9 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -peer0.org1.example.com | [6db 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc -peer1.org2.example.com | [6ca 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 414 Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [6dc 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [6dd 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer1.org2.example.com | [6cb 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd,syscc=true,proposal=0xc421780dc0,canname=escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 415 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer1.org2.example.com | [6cc 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org1.example.com | [6de 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 416 Returning policy Org2MSP/Admins for evaluation -peer1.org2.example.com | [6cd 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 417 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [6df 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f5f40dba-2574-4125-bc5b-1ff1c28c5166] -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 418 Returning policy Org1MSP/Admins for evaluation -peer1.org2.example.com | [6ce 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [6e0 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 419 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [6e1 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41a Returning policy Readers for evaluation -peer0.org1.example.com | [6e2 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a59830 -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41b Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41c Returning policy Writers for evaluation -peer1.org2.example.com | [6cf 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [926e5ab3]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [6e3 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41d Returning policy Writers for evaluation -peer1.org2.example.com | [6d0 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41e Returning policy Admins for evaluation -peer1.org2.example.com | [6d1 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [6e4 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41f Returning policy Admins for evaluation -peer0.org1.example.com | [6e5 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer1.org2.example.com | [6d2 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [926e5ab3]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [6d3 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 420 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 421 As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [6e6 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 422 Returning policy Writers for evaluation -peer0.org1.example.com | [6e7 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [6e8 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421785720, header 0xc421a59860 -peer1.org2.example.com | [6d4 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 423 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 424 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 425 As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [6e9 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [6d5 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 426 Returning policy Application/Writers for evaluation -peer1.org2.example.com | [6d6 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]sending state message TRANSACTION -peer1.org2.example.com | [6d7 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 427 As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [6ea 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf -peer1.org2.example.com | [6d8 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [926e5ab3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 428 Returning policy Application/Admins for evaluation -peer0.org1.example.com | [6eb 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf] -peer1.org2.example.com | [6d9 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [926e5ab3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 429 As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [6da 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [6ec 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [6db 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer1.org2.example.com | [6dc 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [6dd 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]Move state message COMPLETED -peer1.org2.example.com | [6de 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [926e5ab3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 42a Returning policy Orderer/BlockValidation for evaluation -peer1.org2.example.com | [6df 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [926e5ab3]send state message COMPLETED -peer1.org2.example.com | [6e0 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [926e5ab3]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 42b As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [6e1 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [6ed 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3b305756-03fe-43bd-bedf-2f3f6ea5c38a] -peer1.org2.example.com | [6e2 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [6ee 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf channel id: businesschannel -peer1.org2.example.com | [6e3 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd -orderer.example.com | 2018-01-04 01:50:57.221 UTC [common/config] NewStandardValues -> DEBU 42c Initializing protos for *config.ChannelProtos -peer1.org2.example.com | [6e4 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [6ef 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.221 UTC [common/config] initializeProtosStruct -> DEBU 42d Processing field: HashingAlgorithm -peer0.org1.example.com | [6f0 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf,syscc=true,proposal=0xc421785720,canname=lscc:1.0.2 -peer1.org2.example.com | [6e5 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [6f1 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | [6e6 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.221 UTC [common/config] initializeProtosStruct -> DEBU 42e Processing field: BlockDataHashingStructure -peer0.org1.example.com | [6f2 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer1.org2.example.com | [6e7 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [6afbe142-4d34-4800-9080-b8c58dac897d] -peer0.org1.example.com | [6f3 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer1.org2.example.com | [6e8 01-04 01:52:24.40 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer0.org1.example.com | [6f4 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74683b32]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [6e9 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -peer1.org2.example.com | [6ea 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -peer1.org2.example.com | [6eb 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [6f5 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [6ec 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ec6930 -peer0.org1.example.com | [6f6 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [6ed 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\330\221\266\322\005\020\370\254\345\266\001\"\017businesschannel*@926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\224\276\310#\t\021C\316\036@TxH\251\"\250\030\335\rU4\366[\026" -peer0.org1.example.com | [6f7 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74683b32]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.221 UTC [common/config] initializeProtosStruct -> DEBU 42f Processing field: OrdererAddresses -peer1.org2.example.com | [6ee 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [6f8 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Move state message TRANSACTION -peer0.org1.example.com | [6f9 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [6fa 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [6fb 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]sending state message TRANSACTION -peer0.org1.example.com | [6fc 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Received message TRANSACTION from shim -peer1.org2.example.com | [6ef 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [6fd 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [6f0 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-04 01:50:57.221 UTC [common/config] initializeProtosStruct -> DEBU 430 Processing field: Consortium -peer0.org1.example.com | [6fe 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74683b32]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [6f1 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 431 Adding to config map: [Groups] /Channel -peer0.org1.example.com | [6ff 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [74683b32]Sending GET_STATE -peer1.org2.example.com | [6f2 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 432 Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [700 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Received message GET_STATE from shim -peer1.org2.example.com | [6f3 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4220d6800, header channel_header:"\010\003\032\014\010\330\221\266\322\005\020\370\254\345\266\001\"\017businesschannel*@926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\224\276\310#\t\021C\316\036@TxH\251\"\250\030\335\rU4\366[\026" -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 433 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [701 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [6f4 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [702 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [74683b32]Received GET_STATE, invoking get state from ledger -peer0.org1.example.com | [703 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [6f5 01-04 01:52:26.60 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [704 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74683b32] getting state for chaincode lscc, key mycc, channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 434 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [6f6 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [705 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 435 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [6f7 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -peer0.org1.example.com | [706 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74683b32]Got state. Sending RESPONSE -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 436 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [6f8 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] -peer0.org1.example.com | [707 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [74683b32]handleGetState serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 437 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [708 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Received message RESPONSE from shim -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 438 Adding to config map: [Values] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [6f9 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 439 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [709 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [70a 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [74683b32]before send -peer1.org2.example.com | [6fa 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [644ba0dd-361d-4cb2-a2cc-94734d36bf7d] -peer0.org1.example.com | [70b 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [74683b32]after send -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43a Adding to config map: [Values] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [70c 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [74683b32]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43b Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [6fb 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -peer0.org1.example.com | [70d 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [74683b32]GetState received payload RESPONSE -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43c Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [6fc 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [644ba0dd-361d-4cb2-a2cc-94734d36bf7d] -peer0.org1.example.com | [70e 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43d Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [6fd 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43e Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [6fe 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6ca31e23-ef54-4098-999f-6d78e633bdea] -peer0.org1.example.com | [70f 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Move state message COMPLETED -peer1.org2.example.com | [6ff 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=ba1a1d47-0860-49e7-8db9-28394397475b,syscc=true,proposal=0x0,canname=vscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43f Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 440 Adding to config map: [Groups] /Channel/Application -peer1.org2.example.com | [700 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd chaindID businesschannel -peer1.org2.example.com | [701 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 441 Adding to config map: [Groups] /Channel/Application/Org1MSP -peer1.org2.example.com | [702 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [710 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 442 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [711 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]send state message COMPLETED -peer1.org2.example.com | [703 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 443 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [712 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Received message COMPLETED from shim -peer1.org2.example.com | [704 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ba1a1d47]Inside sendExecuteMessage. Message TRANSACTION -peer1.org2.example.com | [705 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 444 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [713 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [706 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ba1a1d47]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [714 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 445 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [715 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf -peer1.org2.example.com | [707 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ba1a1d47]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 446 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [716 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [717 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 447 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [718 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 448 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [719 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [3b305756-03fe-43bd-bedf-2f3f6ea5c38a] -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 449 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [708 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ba1a1d47]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [71a 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44a Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [709 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [71b 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [71c 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer1.org2.example.com | [70a 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ba1a1d47]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44b Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [71d 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44c Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [70b 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba1a1d47]Received message TRANSACTION from shim -peer0.org1.example.com | [71e 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf,syscc=true,proposal=0xc421785720,canname=escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44d Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44e Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44f Adding to config map: [Values] /Channel/OrdererAddresses -peer0.org1.example.com | [71f 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer1.org2.example.com | [70c 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ba1a1d47]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [720 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 450 Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [721 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 451 Adding to config map: [Values] /Channel/HashingAlgorithm -peer1.org2.example.com | [70d 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ba1a1d47]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [722 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74683b32]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [723 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [70e 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 452 Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [70f 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 453 Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [724 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [725 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74683b32]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [710 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [726 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 454 Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [711 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba1a1d47]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [727 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [712 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba1a1d47]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.223 UTC [common/configtx] processConfig -> DEBU 455 Beginning new config for channel businesschannel -peer0.org1.example.com | [728 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer1.org2.example.com | [713 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ba1a1d47]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] NewStandardValues -> DEBU 456 Initializing protos for *config.ChannelProtos -peer0.org1.example.com | [729 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]sending state message TRANSACTION -peer1.org2.example.com | [714 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ba1a1d47]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 457 Processing field: HashingAlgorithm -peer0.org1.example.com | [72a 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Received message TRANSACTION from shim -peer1.org2.example.com | [715 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ba1a1d47]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 458 Processing field: BlockDataHashingStructure -peer0.org1.example.com | [72b 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [716 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ba1a1d47]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [717 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ba1a1d47-0860-49e7-8db9-28394397475b]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [72c 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74683b32]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer1.org2.example.com | [718 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ba1a1d47-0860-49e7-8db9-28394397475b -peer0.org1.example.com | [72d 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [72e 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 459 Processing field: OrdererAddresses -peer0.org1.example.com | [72f 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Transaction completed. Sending COMPLETED -peer1.org2.example.com | [719 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 45a Processing field: Consortium -peer0.org1.example.com | [730 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Move state message COMPLETED -peer1.org2.example.com | [71a 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6ca31e23-ef54-4098-999f-6d78e633bdea] -peer0.org1.example.com | [731 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 45b Proposed new policy Readers for Channel -peer1.org2.example.com | [71b 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 45c Proposed new policy Writers for Channel -peer0.org1.example.com | [732 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]send state message COMPLETED -peer1.org2.example.com | [71c 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [733 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Received message COMPLETED from shim -peer0.org1.example.com | [734 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [71d 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc425087500), Data:(*common.BlockData)(0xc42206c740), Metadata:(*common.BlockMetadata)(0xc42206c780)}, doMVCCValidation=true -peer0.org1.example.com | [735 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [736 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 45d Proposed new policy Admins for Channel -peer1.org2.example.com | [71e 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [737 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] NewStandardValues -> DEBU 45e Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [738 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [739 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 45f Processing field: ConsensusType -peer0.org1.example.com | [73a 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [3b305756-03fe-43bd-bedf-2f3f6ea5c38a] -peer1.org2.example.com | [71f 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 460 Processing field: BatchSize -peer0.org1.example.com | [73b 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -peer1.org2.example.com | [720 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -peer1.org2.example.com | [721 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 461 Processing field: BatchTimeout -peer0.org1.example.com | [73c 01-04 01:52:25.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 462 Processing field: KafkaBrokers -peer1.org2.example.com | [722 01-04 01:52:26.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] marked as valid by state validator -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 463 Processing field: ChannelRestrictions -peer1.org2.example.com | [723 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xa3, 0x96, 0xc0, 0xf9, 0x28, 0xfe, 0x7e, 0x14, 0xc0, 0xf3, 0x58, 0xaf, 0xa7, 0xcd, 0xfe, 0xbb, 0xfc, 0xc3, 0xe2, 0x1c, 0x33, 0x37, 0xd5, 0x9a, 0xe7, 0x19, 0x56, 0x62, 0xcc, 0x79, 0x72, 0x45} txOffsets= -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 464 Proposed new policy Admins for Orderer -peer0.org1.example.com | [73d 01-04 01:52:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424c45170 -peer1.org2.example.com | txId=926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd locPointer=offset=70, bytesLength=2848 -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 465 Proposed new policy BlockValidation for Orderer -peer1.org2.example.com | ] -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 466 Proposed new policy Readers for Orderer -peer0.org1.example.com | [73e 01-04 01:52:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 467 Proposed new policy Writers for Orderer -peer0.org1.example.com | [73f 01-04 01:52:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer1.org2.example.com | [724 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2848] for tx ID: [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] to index -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] NewStandardValues -> DEBU 468 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 469 Processing field: MSP -peer1.org2.example.com | [725 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2848] for tx number:[0] ID: [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] to blockNumTranNum index -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46a Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [740 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46b Proposed new policy Admins for OrdererOrg -peer1.org2.example.com | [726 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59219], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46c Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [741 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer1.org2.example.com | [727 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -peer0.org1.example.com | [742 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-04 01:50:57.224 UTC [common/config] NewStandardValues -> DEBU 46d Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46e Proposed new policy Admins for Application -peer0.org1.example.com | [743 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424c56640, header 0xc424c451a0 -peer1.org2.example.com | [728 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [744 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46f Proposed new policy Writers for Application -peer1.org2.example.com | [729 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -orderer.example.com | 2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 470 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 471 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 472 Processing field: MSP -peer0.org1.example.com | [745 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 -peer1.org2.example.com | [72a 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -peer0.org1.example.com | [746 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5] -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 473 Initializing protos for *config.ApplicationOrgProtos -peer1.org2.example.com | [72b 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 474 Processing field: AnchorPeers -peer1.org2.example.com | [72c 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [747 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 475 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [748 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [612fe2b6-261c-4597-87da-08de532e9503] -peer1.org2.example.com | [72d 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 476 Processing field: MSP -peer0.org1.example.com | [749 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 channel id: businesschannel -orderer.example.com | 2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 477 Proposed new policy Writers for Org1MSP -peer1.org2.example.com | [72e 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org1.example.com | [74a 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [74b 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5,syscc=true,proposal=0xc424c56640,canname=lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 478 Proposed new policy Admins for Org1MSP -peer1.org2.example.com | [72f 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 479 Proposed new policy Readers for Org1MSP -peer0.org1.example.com | [74c 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer1.org2.example.com | [730 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd -peer0.org1.example.com | [74d 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 47a Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [731 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 47b Processing field: MSP -peer0.org1.example.com | [74e 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 47c Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 47d Processing field: AnchorPeers -peer0.org1.example.com | [74f 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f0708c21]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 47e Initializing protos for *config.OrganizationProtos -peer1.org2.example.com | [732 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [750 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer1.org2.example.com | [733 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 47f Processing field: MSP -peer0.org1.example.com | [751 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer1.org2.example.com | [734 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | 2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 480 Proposed new policy Admins for Org2MSP -peer0.org1.example.com | [752 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f0708c21]sendExecuteMsg trigger event TRANSACTION -peer1.org2.example.com | [735 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -peer0.org1.example.com | [753 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 481 Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [754 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer1.org2.example.com | [736 01-04 01:52:26.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 482 Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [755 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.225 UTC [common/config] validateMSP -> DEBU 483 Setting up MSP for org OrdererOrg -peer0.org1.example.com | [756 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.225 UTC [msp] NewBccspMsp -> DEBU 484 Creating BCCSP-based MSP instance -peer0.org1.example.com | [757 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.225 UTC [msp] Setup -> DEBU 485 Setting up MSP instance OrdererMSP -peer0.org1.example.com | [758 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.226 UTC [msp/identity] newIdentity -> DEBU 486 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [759 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f0708c21]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [75a 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f0708c21]Sending GET_STATE -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org1.example.com | [75b 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Received message GET_STATE from shim -peer0.org1.example.com | [75c 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer0.org1.example.com | [75d 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f0708c21]Received GET_STATE, invoking get state from ledger -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -peer0.org1.example.com | [75f 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f0708c21] getting state for chaincode lscc, key mycc, channel businesschannel -peer0.org1.example.com | [760 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [761 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f0708c21]Got state. Sending RESPONSE -peer0.org1.example.com | [762 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f0708c21]handleGetState serial send RESPONSE -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -peer0.org1.example.com | [763 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Received message RESPONSE from shim -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [764 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-04 01:50:57.226 UTC [msp/identity] newIdentity -> DEBU 487 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [765 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f0708c21]before send -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [766 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f0708c21]after send -peer0.org1.example.com | [767 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f0708c21]Received RESPONSE, communicated (state:ready) -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [768 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f0708c21]GetState received payload RESPONSE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [769 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Transaction completed. Sending COMPLETED -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [76a 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Move state message COMPLETED -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [76b 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [76c 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]send state message COMPLETED -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [75e 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [76d 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Received message COMPLETED from shim -peer0.org1.example.com | [76e 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [76f 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.226 UTC [msp/identity] newIdentity -> DEBU 488 Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [770 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [771 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [772 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [773 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [774 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [612fe2b6-261c-4597-87da-08de532e9503] -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [775 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [776 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [777 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [778 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [779 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5,syscc=true,proposal=0xc424c56640,canname=escc:1.0.2 -peer0.org1.example.com | [77a 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org1.example.com | [77b 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [77c 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [77d 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f0708c21]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [77e 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [77f 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [780 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f0708c21]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [781 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Move state message TRANSACTION -peer0.org1.example.com | [782 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [783 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [784 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]sending state message TRANSACTION -peer0.org1.example.com | [785 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Received message TRANSACTION from shim -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [786 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [787 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f0708c21]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [788 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [789 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [78a 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [78b 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Move state message COMPLETED -peer0.org1.example.com | [78c 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [78d 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]send state message COMPLETED -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [78e 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Received message COMPLETED from shim -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.227 UTC [msp] Validate -> DEBU 489 MSP OrdererMSP validating identity -peer0.org1.example.com | [78f 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [790 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.227 UTC [common/config] Validate -> DEBU 48a Anchor peers for org Org1MSP are -peer0.org1.example.com | [791 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 -orderer.example.com | 2018-01-04 01:50:57.227 UTC [common/config] validateMSP -> DEBU 48b Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:57.227 UTC [msp] NewBccspMsp -> DEBU 48c Creating BCCSP-based MSP instance -peer0.org1.example.com | [792 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.227 UTC [msp] Setup -> DEBU 48d Setting up MSP instance Org1MSP -peer0.org1.example.com | [793 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [794 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.227 UTC [msp/identity] newIdentity -> DEBU 48e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [795 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [612fe2b6-261c-4597-87da-08de532e9503] -peer0.org1.example.com | [796 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [797 01-04 01:52:25.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [798 01-04 01:52:25.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424bf6330 -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -peer0.org1.example.com | [799 01-04 01:52:25.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -peer0.org1.example.com | [79a 01-04 01:52:25.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -peer0.org1.example.com | [79b 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -peer0.org1.example.com | [79c 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [79d 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -peer0.org1.example.com | [79e 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42294c0f0, header 0xc424bf6360 -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer0.org1.example.com | [79f 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | H7n8z1pj5w== -peer0.org1.example.com | [7a0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 -peer0.org1.example.com | [7a1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8] -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7a2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.228 UTC [msp/identity] newIdentity -> DEBU 48f Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [7a3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [ad920e34-c9de-4dbd-8f95-23bd005d54d8] -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [7a4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 channel id: businesschannel -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7a5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 channel id: businesschannel version: 1.0.2 -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [7a6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8,syscc=true,proposal=0xc42294c0f0,canname=lscc:1.0.2 -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [7a7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [7a8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [7a9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -peer0.org1.example.com | [7aa 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9ab5b94]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [7ab 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [7ac 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [7ad 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9ab5b94]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | [7ae 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Move state message TRANSACTION -peer0.org1.example.com | [7af 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7b0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [7b1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.228 UTC [msp/identity] newIdentity -> DEBU 490 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [7b2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Received message TRANSACTION from shim -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [7b3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -peer0.org1.example.com | [7b4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f9ab5b94]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [7b5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f9ab5b94]Sending GET_STATE -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.228 UTC [msp] Validate -> DEBU 491 MSP Org1MSP validating identity -peer0.org1.example.com | [7b6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Received message GET_STATE from shim -orderer.example.com | 2018-01-04 01:50:57.228 UTC [common/config] Validate -> DEBU 492 Anchor peers for org Org2MSP are -peer0.org1.example.com | [7b7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -orderer.example.com | 2018-01-04 01:50:57.228 UTC [common/config] validateMSP -> DEBU 493 Setting up MSP for org Org2MSP -peer0.org1.example.com | [7b8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f9ab5b94]Received GET_STATE, invoking get state from ledger -orderer.example.com | 2018-01-04 01:50:57.228 UTC [msp] NewBccspMsp -> DEBU 494 Creating BCCSP-based MSP instance -peer0.org1.example.com | [7b9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.228 UTC [msp] Setup -> DEBU 495 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:57.229 UTC [msp/identity] newIdentity -> DEBU 496 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -peer0.org1.example.com | [7ba 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f9ab5b94] getting state for chaincode lscc, key mycc, channel businesschannel orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [943 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org1.example.com | [7bb 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc +peer0.org1.example.com | [944 01-14 11:47:04.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [945 01-14 11:47:04.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer0.org1.example.com | [946 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org1.example.com | [7bc 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f9ab5b94]Got state. Sending RESPONSE +peer0.org1.example.com | [947 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +peer0.org1.example.com | [948 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +peer0.org1.example.com | [949 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422616330 +peer0.org1.example.com | [94a 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [94b 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +peer0.org1.example.com | [94c 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -peer0.org1.example.com | [7bd 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f9ab5b94]handleGetState serial send RESPONSE +peer0.org1.example.com | [94d 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +peer0.org1.example.com | [94e 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid orderer.example.com | SCjyRdD3aQ== +peer0.org1.example.com | [94f 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +peer0.org1.example.com | [950 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42028d800, header channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.229 UTC [msp/identity] newIdentity -> DEBU 497 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.580 UTC [msp/identity] newIdentity -> DEBU 570 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [951 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [952 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [953 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [7be 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Received message RESPONSE from shim -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org1.example.com | [7bf 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [7c0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f9ab5b94]before send -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.229 UTC [msp/identity] newIdentity -> DEBU 498 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [7c1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f9ab5b94]after send -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org1.example.com | [954 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | [955 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org1.example.com | [956 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org1.example.com | [957 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [14e23183-7cde-40e6-b438-a1b3a254da00] orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org1.example.com | [958 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [7c2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f9ab5b94]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-04 01:50:57.230 UTC [msp] Validate -> DEBU 499 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.230 UTC [msp] Setup -> DEBU 49a Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.230 UTC [msp] Setup -> DEBU 49b MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [7c3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f9ab5b94]GetState received payload RESPONSE -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 49c Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 49d In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 49e Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 49f In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a0 Returning policy Readers for evaluation -peer0.org1.example.com | [7c4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4a1 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org1.example.com | [7c5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a2 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a3 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a4 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a5 Returning policy Writers for evaluation -peer0.org1.example.com | [7c6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a6 Returning policy Writers for evaluation -peer0.org1.example.com | [7c7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4a7 In commit adding relative sub-policy Org1MSP/Writers to Application -peer0.org1.example.com | [7c8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a8 Returning policy Admins for evaluation -peer0.org1.example.com | [7c9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4a9 In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4aa Returning policy Readers for evaluation -peer0.org1.example.com | [7ca 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [7cb 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4ab In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org1.example.com | [7cc 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [7cd 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4ac Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4ad In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [7ce 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [7cf 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ad920e34-c9de-4dbd-8f95-23bd005d54d8] -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4ae Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4af In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4b0 Returning policy Writers for evaluation -peer0.org1.example.com | [7d0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4b1 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4b2 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b3 Returning policy Admins for evaluation -peer0.org1.example.com | [7d1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b4 Returning policy Writers for evaluation -peer0.org1.example.com | [7d2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b5 Returning policy Writers for evaluation -peer0.org1.example.com | [7d3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [7d4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8,syscc=true,proposal=0xc42294c0f0,canname=escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b6 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b7 Returning policy Readers for evaluation -peer0.org1.example.com | [7d5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b8 Returning policy Admins for evaluation -peer0.org1.example.com | [7d6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [7d7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4b9 In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [7d8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9ab5b94]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4ba Returning policy BlockValidation for evaluation -peer0.org1.example.com | [7d9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [7da 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4bb In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4bc Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4bd In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org1.example.com | [7db 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9ab5b94]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [7dc 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4be Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4bf In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org1.example.com | [7dd 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [7de 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c0 Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [7df 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c1 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [7e0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c2 Returning policy OrdererOrg/Admins for evaluation -peer0.org1.example.com | [7e1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c3 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [7e2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f9ab5b94]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c4 Returning policy OrdererOrg/Readers for evaluation -peer0.org1.example.com | [7e3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -peer0.org1.example.com | [7e4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c5 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org1.example.com | [7e5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c6 Returning policy Writers for evaluation -peer0.org1.example.com | [7e6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c7 In commit adding relative sub-policy Application/Writers to Channel -peer0.org1.example.com | [7e7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [7e8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c8 Returning policy Readers for evaluation -peer0.org1.example.com | [7e9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Received message COMPLETED from shim -peer0.org1.example.com | [7ea 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c9 In commit adding relative sub-policy Application/Readers to Channel -peer0.org1.example.com | [7eb 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4ca Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [7ec 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4cb In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4cc Returning policy Org1MSP/Admins for evaluation -peer0.org1.example.com | [7ed 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4cd In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [7ee 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4ce Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4cf In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4d0 Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [7ef 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4d1 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [7f0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ad920e34-c9de-4dbd-8f95-23bd005d54d8] -peer0.org1.example.com | [7f1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4d2 Returning policy Admins for evaluation -peer0.org1.example.com | [7f2 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4d3 In commit adding relative sub-policy Application/Admins to Channel -peer0.org1.example.com | [7f3 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424bf7890 -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4d4 Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [7f4 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [7f5 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4d5 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [7f6 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4d6 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4d7 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -peer0.org1.example.com | [7f7 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4d8 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4d9 Returning policy Readers for evaluation -peer0.org1.example.com | [7f8 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [7f9 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42294ce10, header 0xc424bf78c0 -peer0.org1.example.com | [7fa 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [7fb 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a -peer0.org1.example.com | [7fc 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a] -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4da Returning policy Writers for evaluation -peer0.org1.example.com | [7fd 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [7fe 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5c803ec6-82ec-434a-9943-6396becd8365] -peer0.org1.example.com | [7ff 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a channel id: businesschannel -peer0.org1.example.com | [800 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [801 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a,syscc=true,proposal=0xc42294ce10,canname=lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4db Returning policy Writers for evaluation -peer0.org1.example.com | [802 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -peer0.org1.example.com | [803 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [804 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4dc Returning policy Admins for evaluation -peer0.org1.example.com | [805 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1c8370]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [806 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [807 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4dd Returning policy Admins for evaluation -peer0.org1.example.com | [808 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1c8370]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [809 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]Move state message TRANSACTION -peer0.org1.example.com | [80a 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4de Returning policy Readers for evaluation -peer0.org1.example.com | [80b 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [80c 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]sending state message TRANSACTION -peer0.org1.example.com | [80d 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4df As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [80e 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1c8370]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e0 Returning policy Writers for evaluation -peer0.org1.example.com | [80f 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3e1c8370]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e1 As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [810 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e2 Returning policy Application/Readers for evaluation -peer0.org1.example.com | [811 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e3 As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [812 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1c8370]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e4 Returning policy Application/Writers for evaluation -peer0.org1.example.com | [813 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e5 As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [814 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e6 Returning policy Application/Admins for evaluation -peer0.org1.example.com | [815 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e7 As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [816 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e8 Returning policy Orderer/BlockValidation for evaluation -peer0.org1.example.com | [817 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a -orderer.example.com | 2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e9 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [818 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.232 UTC [orderer/common/broadcast] Handle -> DEBU 4ea [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.233 UTC [policies] GetPolicy -> DEBU 4eb Returning policy Writers for evaluation -peer0.org1.example.com | [819 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.233 UTC [cauthdsl] func1 -> DEBU 4ec 0xc420026fb8 gate 1515030657233435400 evaluation starts -peer0.org1.example.com | [81a 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-04 01:50:57.233 UTC [cauthdsl] func2 -> DEBU 4ed 0xc420026fb8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [81b 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5c803ec6-82ec-434a-9943-6396becd8365] -orderer.example.com | 2018-01-04 01:50:57.233 UTC [cauthdsl] func2 -> DEBU 4ee 0xc420026fb8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [81c 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.233 UTC [msp/identity] newIdentity -> DEBU 4ef Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [81d 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a channel id: businesschannel chaincode id: name:"lscc" -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [81e 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [81f 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a channel id: businesschannel version: 1.0.2 -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [820 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a,syscc=true,proposal=0xc42294ce10,canname=escc:1.0.2 -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -peer0.org1.example.com | [821 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org1.example.com | [822 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [823 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -peer0.org1.example.com | [824 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1c8370]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -peer0.org1.example.com | [825 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -peer0.org1.example.com | [826 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -peer0.org1.example.com | [827 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1c8370]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -peer0.org1.example.com | [828 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]Move state message TRANSACTION -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [829 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.233 UTC [orderer/common/broadcast] Handle -> WARN 4f0 Error reading from stream: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [82a 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.234 UTC [orderer/main] func1 -> DEBU 4f1 Closing Broadcast stream -peer0.org1.example.com | [82b 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.234 UTC [msp] SatisfiesPrincipal -> DEBU 4f2 Checking if identity satisfies MEMBER role for OrdererMSP -peer0.org1.example.com | [82c 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.234 UTC [msp] Validate -> DEBU 4f3 MSP OrdererMSP validating identity -peer0.org1.example.com | [82d 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1c8370]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.234 UTC [orderer/common/deliver] Handle -> DEBU 4f4 Rejecting deliver because channel businesschannel not found -peer0.org1.example.com | [82e 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3e1c8370]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-04 01:50:57.234 UTC [orderer/main] func1 -> DEBU 4f5 Closing Deliver stream -orderer.example.com | 2018-01-04 01:50:57.234 UTC [cauthdsl] func2 -> DEBU 4f6 0xc420026fb8 principal matched by identity 0 -peer0.org1.example.com | [82f 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | 2018-01-04 01:50:57.235 UTC [msp/identity] Verify -> DEBU 4f7 Verify: digest = 00000000 e9 bb 79 c8 67 09 78 a6 f9 9a 21 cf 62 d2 6a 9f |..y.g.x...!.b.j.| -peer0.org1.example.com | [830 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 00000010 a2 61 1d 8a 73 24 14 63 42 b8 1f 86 be 8f 39 48 |.a..s$.cB.....9H| -peer0.org1.example.com | [831 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.235 UTC [msp/identity] Verify -> DEBU 4f8 Verify: sig = 00000000 30 44 02 20 5f 02 7c 3d e8 74 c3 bf d1 25 0f 5f |0D. _.|=.t...%._| -peer0.org1.example.com | [832 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Move state message COMPLETED -orderer.example.com | 00000010 b6 7d 7e e9 68 a6 33 80 fb 14 46 9a 5d f9 5f 68 |.}~.h.3...F.]._h| -peer0.org1.example.com | [833 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1c8370]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 00000020 46 29 b4 76 02 20 50 52 83 8d 44 e7 86 b7 4c 2f |F).v. PR..D...L/| -peer0.org1.example.com | [834 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]send state message COMPLETED -orderer.example.com | 00000030 6b e1 d5 27 02 df 89 de cb c7 5d 11 8b 5b a7 96 |k..'......]..[..| -peer0.org1.example.com | [835 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]Received message COMPLETED from shim -orderer.example.com | 00000040 4d 2e fe b4 07 2b |M....+| -orderer.example.com | 2018-01-04 01:50:57.236 UTC [cauthdsl] func2 -> DEBU 4f9 0xc420026fb8 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [836 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.236 UTC [cauthdsl] func1 -> DEBU 4fa 0xc420026fb8 gate 1515030657233435400 evaluation succeeds -peer0.org1.example.com | [837 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.236 UTC [orderer/common/sigfilter] Apply -> DEBU 4fb Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420367520 1 [0xc42010e410]}) Writers]} -peer0.org1.example.com | [838 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a -orderer.example.com | 2018-01-04 01:50:57.236 UTC [msp] GetLocalMSP -> DEBU 4fc Returning existing local MSP -peer0.org1.example.com | [839 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [83a 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.236 UTC [msp] GetDefaultSigningIdentity -> DEBU 4fd Obtaining default signing identity -peer0.org1.example.com | [83b 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.237 UTC [msp] GetLocalMSP -> DEBU 4fe Returning existing local MSP -peer0.org1.example.com | [83c 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5c803ec6-82ec-434a-9943-6396becd8365] -peer0.org1.example.com | [83d 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.237 UTC [msp] GetDefaultSigningIdentity -> DEBU 4ff Obtaining default signing identity -peer0.org1.example.com | [83e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -peer0.org1.example.com | [83f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221632c0 -orderer.example.com | 2018-01-04 01:50:57.237 UTC [msp/identity] Sign -> DEBU 500 Sign: plaintext: 0AB7060A1B08011A06088191B6D20522...41646D696E7310021A0641646D696E73 -orderer.example.com | 2018-01-04 01:50:57.237 UTC [msp/identity] Sign -> DEBU 501 Sign: digest: C1135109A4480FC9751165F324B34761BE239EC3C319D9765D88B6160FB8481F -peer0.org1.example.com | [840 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-04 01:50:57.238 UTC [common/config] NewStandardValues -> DEBU 502 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.238 UTC [common/config] initializeProtosStruct -> DEBU 503 Processing field: HashingAlgorithm -peer0.org1.example.com | [841 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-04 01:50:57.238 UTC [common/config] initializeProtosStruct -> DEBU 504 Processing field: BlockDataHashingStructure -peer0.org1.example.com | [842 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | 2018-01-04 01:50:57.238 UTC [common/config] initializeProtosStruct -> DEBU 505 Processing field: OrdererAddresses -peer0.org1.example.com | [843 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | 2018-01-04 01:50:57.238 UTC [common/config] initializeProtosStruct -> DEBU 506 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 507 Adding to config map: [Groups] /Channel -peer0.org1.example.com | [844 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 508 Adding to config map: [Groups] /Channel/Orderer -peer0.org1.example.com | [845 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42294dd60, header 0xc4221632f0 -orderer.example.com | 2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 509 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [846 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -orderer.example.com | 2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 50a Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [847 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 -orderer.example.com | 2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 50b Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 50c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [848 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510] -orderer.example.com | 2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 50d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [849 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.240 UTC [common/configtx] addToMap -> DEBU 50e Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.240 UTC [common/configtx] addToMap -> DEBU 50f Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [84a 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [46b35e5e-7a8e-4154-8082-8a5ab4f95562] -orderer.example.com | 2018-01-04 01:50:57.240 UTC [common/configtx] addToMap -> DEBU 510 Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:57.240 UTC [common/configtx] addToMap -> DEBU 511 Adding to config map: [Values] /Channel/Orderer/BatchSize -peer0.org1.example.com | [84b 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 channel id: businesschannel -orderer.example.com | 2018-01-04 01:50:57.241 UTC [common/configtx] addToMap -> DEBU 512 Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [84c 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.241 UTC [common/configtx] addToMap -> DEBU 513 Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [84d 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510,syscc=true,proposal=0xc42294dd60,canname=lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 514 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [84e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 515 Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [84f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [850 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 516 Adding to config map: [Groups] /Channel/Application -peer0.org1.example.com | [851 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1e5fc5dd]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 517 Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [852 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 518 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [853 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 519 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [854 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1e5fc5dd]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51a Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [855 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51b Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [856 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51c Adding to config map: [Groups] /Channel/Application/Org1MSP -peer0.org1.example.com | [857 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [858 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51e Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [859 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [85a 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [85b 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1e5fc5dd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 520 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [85c 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [1e5fc5dd]Sending GET_STATE_BY_RANGE -orderer.example.com | 2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 521 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -peer0.org1.example.com | [85d 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Received message GET_STATE_BY_RANGE from shim -orderer.example.com | 2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 522 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 523 Adding to config map: [Values] /Channel/HashingAlgorithm -peer0.org1.example.com | [85e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -orderer.example.com | 2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 524 Adding to config map: [Values] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [85f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger -orderer.example.com | 2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 525 Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [860 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -orderer.example.com | 2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 526 Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [861 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 527 Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [862 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -orderer.example.com | 2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 528 Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [863 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -orderer.example.com | 2018-01-04 01:50:57.244 UTC [common/configtx] processConfig -> DEBU 529 Beginning new config for channel businesschannel -peer0.org1.example.com | [864 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -peer0.org1.example.com | [865 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1e5fc5dd]handleGetStateByRange serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.244 UTC [common/config] NewStandardValues -> DEBU 52a Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.244 UTC [common/config] initializeProtosStruct -> DEBU 52b Processing field: HashingAlgorithm -peer0.org1.example.com | [866 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Received message RESPONSE from shim -orderer.example.com | 2018-01-04 01:50:57.244 UTC [common/config] initializeProtosStruct -> DEBU 52c Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.244 UTC [common/config] initializeProtosStruct -> DEBU 52d Processing field: OrdererAddresses -peer0.org1.example.com | [867 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-04 01:50:57.244 UTC [common/config] initializeProtosStruct -> DEBU 52e Processing field: Consortium -peer0.org1.example.com | [868 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1e5fc5dd]before send -orderer.example.com | 2018-01-04 01:50:57.244 UTC [policies] ProposePolicy -> DEBU 52f Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:57.244 UTC [policies] ProposePolicy -> DEBU 530 Proposed new policy Admins for Channel -peer0.org1.example.com | [869 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1e5fc5dd]after send -orderer.example.com | 2018-01-04 01:50:57.244 UTC [policies] ProposePolicy -> DEBU 531 Proposed new policy Readers for Channel -peer0.org1.example.com | [86a 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [1e5fc5dd]Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [86b 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [1e5fc5dd]Received RESPONSE. Successfully got range -orderer.example.com | 2018-01-04 01:50:57.245 UTC [common/config] NewStandardValues -> DEBU 532 Initializing protos for *struct {} -peer0.org1.example.com | [86c 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [1e5fc5dd]Sending QUERY_STATE_CLOSE -peer0.org1.example.com | [86d 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Received message QUERY_STATE_CLOSE from shim -orderer.example.com | 2018-01-04 01:50:57.245 UTC [policies] ProposePolicy -> DEBU 533 Proposed new policy ChannelCreationPolicy for Application -peer0.org1.example.com | [86e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -orderer.example.com | 2018-01-04 01:50:57.245 UTC [common/config] NewStandardValues -> DEBU 534 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [86f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger -orderer.example.com | 2018-01-04 01:50:57.245 UTC [common/config] initializeProtosStruct -> DEBU 535 Processing field: MSP -peer0.org1.example.com | [870 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -peer0.org1.example.com | [871 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.245 UTC [common/config] NewStandardValues -> DEBU 536 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.245 UTC [common/config] initializeProtosStruct -> DEBU 537 Processing field: AnchorPeers -peer0.org1.example.com | [872 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -peer0.org1.example.com | [873 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1e5fc5dd]handleQueryStateClose serial send RESPONSE -orderer.example.com | 2018-01-04 01:50:57.245 UTC [common/config] NewStandardValues -> DEBU 538 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [874 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Received message RESPONSE from shim -peer0.org1.example.com | [875 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -orderer.example.com | 2018-01-04 01:50:57.245 UTC [common/config] initializeProtosStruct -> DEBU 539 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.245 UTC [policies] ProposePolicy -> DEBU 53a Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.245 UTC [policies] ProposePolicy -> DEBU 53b Proposed new policy Writers for Org1MSP -peer0.org1.example.com | [876 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1e5fc5dd]before send -orderer.example.com | 2018-01-04 01:50:57.245 UTC [policies] ProposePolicy -> DEBU 53c Proposed new policy Admins for Org1MSP -peer0.org1.example.com | [877 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1e5fc5dd]after send -peer0.org1.example.com | [878 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [1e5fc5dd]Received RESPONSE, communicated (state:ready) -orderer.example.com | 2018-01-04 01:50:57.246 UTC [common/config] NewStandardValues -> DEBU 53d Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [879 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [1e5fc5dd]Received RESPONSE. Successfully got range -orderer.example.com | 2018-01-04 01:50:57.246 UTC [common/config] initializeProtosStruct -> DEBU 53e Processing field: MSP -peer0.org1.example.com | [87a 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [87b 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.246 UTC [common/config] NewStandardValues -> DEBU 53f Initializing protos for *config.ApplicationOrgProtos -peer0.org1.example.com | [87c 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [87d 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.246 UTC [common/config] initializeProtosStruct -> DEBU 540 Processing field: AnchorPeers -peer0.org1.example.com | [87e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Received message COMPLETED from shim -peer0.org1.example.com | [87f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [880 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [881 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 -peer0.org1.example.com | [882 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [883 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.246 UTC [common/config] NewStandardValues -> DEBU 541 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [884 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [885 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [46b35e5e-7a8e-4154-8082-8a5ab4f95562] -peer0.org1.example.com | [886 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.246 UTC [common/config] initializeProtosStruct -> DEBU 542 Processing field: MSP -peer0.org1.example.com | [887 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 channel id: businesschannel chaincode id: name:"lscc" -peer0.org1.example.com | [888 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -peer0.org1.example.com | [889 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.246 UTC [policies] ProposePolicy -> DEBU 543 Proposed new policy Writers for Org2MSP -peer0.org1.example.com | [88a 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510,syscc=true,proposal=0xc42294dd60,canname=escc:1.0.2 -peer0.org1.example.com | [88b 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -peer0.org1.example.com | [88c 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [88d 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [88e 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1e5fc5dd]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [88f 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [890 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [891 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1e5fc5dd]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [892 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.246 UTC [policies] ProposePolicy -> DEBU 544 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 545 Proposed new policy Readers for Org2MSP -peer0.org1.example.com | [893 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [894 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.247 UTC [common/config] NewStandardValues -> DEBU 546 Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [895 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]sending state message TRANSACTION -peer0.org1.example.com | [896 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 547 Processing field: ConsensusType -peer0.org1.example.com | [897 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [898 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1e5fc5dd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 548 Processing field: BatchSize -peer0.org1.example.com | [899 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | 2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 549 Processing field: BatchTimeout -peer0.org1.example.com | [89a 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | 2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 54a Processing field: KafkaBrokers -peer0.org1.example.com | [89b 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 54b Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 54c Proposed new policy Admins for Orderer -peer0.org1.example.com | [89c 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 54d Proposed new policy BlockValidation for Orderer -peer0.org1.example.com | [89d 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [89e 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 54e Proposed new policy Readers for Orderer -peer0.org1.example.com | [89f 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 54f Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:57.247 UTC [common/config] NewStandardValues -> DEBU 550 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 551 Processing field: MSP -peer0.org1.example.com | [8a0 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.248 UTC [policies] ProposePolicy -> DEBU 552 Proposed new policy Writers for OrdererOrg -peer0.org1.example.com | [8a1 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.248 UTC [policies] ProposePolicy -> DEBU 553 Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [8a2 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 -peer0.org1.example.com | [8a3 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.248 UTC [policies] ProposePolicy -> DEBU 554 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.248 UTC [common/config] Validate -> DEBU 555 Anchor peers for org Org1MSP are -peer0.org1.example.com | [8a4 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.248 UTC [common/config] validateMSP -> DEBU 556 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:57.248 UTC [msp] NewBccspMsp -> DEBU 557 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.248 UTC [msp] Setup -> DEBU 558 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:57.256 UTC [msp/identity] newIdentity -> DEBU 559 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8a5 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +peer0.org1.example.com | [959 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [14e23183-7cde-40e6-b438-a1b3a254da00] +orderer.example.com | 2018-01-14 11:45:32.580 UTC [msp/identity] newIdentity -> DEBU 571 Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [95a 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +peer0.org1.example.com | [95b 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [79439eab-2df1-41f4-a85b-fa5e649521a2] orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8a6 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [46b35e5e-7a8e-4154-8082-8a5ab4f95562] -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -peer0.org1.example.com | [8a7 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -peer0.org1.example.com | [8a8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | H7n8z1pj5w== +peer0.org1.example.com | [95c 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=4e08599a-d5c5-44e2-96f8-ed097f9774a7,syscc=true,proposal=0x0,canname=vscc:1.0.2 +peer0.org1.example.com | [95d 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 chaindID businesschannel +peer0.org1.example.com | [95e 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org1.example.com | [95f 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +peer0.org1.example.com | [960 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org1.example.com | [961 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4e08599a]Inside sendExecuteMessage. Message TRANSACTION +peer0.org1.example.com | [962 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [963 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4e08599a]sendExecuteMsg trigger event TRANSACTION +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +peer0.org1.example.com | [964 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e08599a]Move state message TRANSACTION +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +peer0.org1.example.com | [965 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e08599a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +peer0.org1.example.com | [966 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +peer0.org1.example.com | [967 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e08599a]sending state message TRANSACTION +peer0.org1.example.com | [968 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e08599a]Received message TRANSACTION from shim +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +peer0.org1.example.com | [969 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e08599a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +peer0.org1.example.com | [96a 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4e08599a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +orderer.example.com | AXYxULZpXYDQXt1KaLI= +peer0.org1.example.com | [96b 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.256 UTC [orderer/main] Deliver -> DEBU 55a Starting new Deliver handler -orderer.example.com | 2018-01-04 01:50:57.256 UTC [orderer/common/deliver] Handle -> DEBU 55b Starting new deliver loop -peer0.org1.example.com | [8a9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421e90f60 -orderer.example.com | 2018-01-04 01:50:57.256 UTC [orderer/common/deliver] Handle -> DEBU 55c Attempting to read seek info message -orderer.example.com | 2018-01-04 01:50:57.257 UTC [msp/identity] newIdentity -> DEBU 55d Creating identity instance for ID -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [96c 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | 2018-01-14 11:45:32.581 UTC [msp] Validate -> DEBU 572 MSP Org2MSP validating identity +peer0.org1.example.com | [96d 01-14 11:47:04.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +orderer.example.com | 2018-01-14 11:45:32.581 UTC [orderer/main] Deliver -> DEBU 573 Starting new Deliver handler +peer0.org1.example.com | [96e 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e08599a]Transaction completed. Sending COMPLETED +orderer.example.com | 2018-01-14 11:45:32.581 UTC [orderer/common/deliver] Handle -> DEBU 574 Starting new deliver loop +peer0.org1.example.com | [96f 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e08599a]Move state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.582 UTC [orderer/common/deliver] Handle -> DEBU 575 Attempting to read seek info message +peer0.org1.example.com | [970 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e08599a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +orderer.example.com | 2018-01-14 11:45:32.582 UTC [msp] Setup -> DEBU 576 Setting up the MSP manager (3 msps) +peer0.org1.example.com | [971 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e08599a]send state message COMPLETED +orderer.example.com | 2018-01-14 11:45:32.582 UTC [msp] Setup -> DEBU 577 MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [972 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e08599a]Received message COMPLETED from shim +orderer.example.com | 2018-01-14 11:45:32.582 UTC [policies] GetPolicy -> DEBU 578 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.582 UTC [policies] CommitProposals -> DEBU 579 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-14 11:45:32.582 UTC [policies] GetPolicy -> DEBU 57a Returning policy Admins for evaluation +peer0.org1.example.com | [973 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e08599a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | 2018-01-14 11:45:32.583 UTC [policies] CommitProposals -> DEBU 57b In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 57c Returning policy Readers for evaluation +peer0.org1.example.com | [974 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e08599a-d5c5-44e2-96f8-ed097f9774a7]HandleMessage- COMPLETED. Notify +orderer.example.com | 2018-01-14 11:45:32.583 UTC [policies] CommitProposals -> DEBU 57d In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 57e Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 57f Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 580 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 581 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 582 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] CommitProposals -> DEBU 583 In commit adding relative sub-policy Org1MSP/Readers to Application +peer0.org1.example.com | [975 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4e08599a-d5c5-44e2-96f8-ed097f9774a7 +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 584 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] CommitProposals -> DEBU 585 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 586 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] CommitProposals -> DEBU 587 In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 588 Returning policy Writers for evaluation +peer0.org1.example.com | [976 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] CommitProposals -> DEBU 589 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 58a Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.585 UTC [policies] CommitProposals -> DEBU 58b In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 58c Returning policy Readers for evaluation +peer0.org1.example.com | [977 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [79439eab-2df1-41f4-a85b-fa5e649521a2] +orderer.example.com | 2018-01-14 11:45:32.585 UTC [policies] CommitProposals -> DEBU 58d In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 58e Returning policy Admins for evaluation +peer0.org1.example.com | [978 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +orderer.example.com | 2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 58f Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 590 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.585 UTC [policies] CommitProposals -> DEBU 591 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 592 Returning policy BlockValidation for evaluation +peer0.org1.example.com | [979 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | 2018-01-14 11:45:32.586 UTC [policies] CommitProposals -> DEBU 593 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-14 11:45:32.586 UTC [policies] GetPolicy -> DEBU 594 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.586 UTC [policies] CommitProposals -> DEBU 595 In commit adding relative sub-policy Orderer/Readers to Channel +peer0.org1.example.com | [97a 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421d2a800), Data:(*common.BlockData)(0xc42218ac40), Metadata:(*common.BlockMetadata)(0xc42218ac80)}, doMVCCValidation=true +orderer.example.com | 2018-01-14 11:45:32.586 UTC [policies] GetPolicy -> DEBU 596 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.586 UTC [policies] CommitProposals -> DEBU 597 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.586 UTC [policies] GetPolicy -> DEBU 598 Returning policy OrdererOrg/Admins for evaluation +peer0.org1.example.com | [97b 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +orderer.example.com | 2018-01-14 11:45:32.586 UTC [policies] CommitProposals -> DEBU 599 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +peer0.org1.example.com | [97c 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +orderer.example.com | 2018-01-14 11:45:32.586 UTC [policies] GetPolicy -> DEBU 59a Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.587 UTC [policies] CommitProposals -> DEBU 59b In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.587 UTC [policies] GetPolicy -> DEBU 59c Returning policy Writers for evaluation +peer0.org1.example.com | [97d 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +orderer.example.com | 2018-01-14 11:45:32.587 UTC [policies] CommitProposals -> DEBU 59d In commit adding relative sub-policy Orderer/Writers to Channel +peer0.org1.example.com | [97e 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | 2018-01-14 11:45:32.587 UTC [policies] GetPolicy -> DEBU 59e Returning policy Org2MSP/Admins for evaluation +peer0.org1.example.com | [97f 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] marked as valid by state validator +orderer.example.com | 2018-01-14 11:45:32.587 UTC [policies] CommitProposals -> DEBU 59f In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.587 UTC [policies] GetPolicy -> DEBU 5a0 Returning policy Org2MSP/Readers for evaluation +peer0.org1.example.com | [980 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x66, 0x95, 0xb9, 0xa7, 0xea, 0xde, 0xdc, 0xbc, 0x49, 0xd1, 0x7a, 0xf8, 0xb7, 0x8c, 0x68, 0x5, 0x62, 0x2d, 0x2f, 0x0, 0x6e, 0x1f, 0x51, 0x6, 0xe8, 0xa0, 0xe7, 0xba, 0x94, 0x12, 0xd3, 0x72} txOffsets= +orderer.example.com | 2018-01-14 11:45:32.587 UTC [policies] CommitProposals -> DEBU 5a1 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +peer0.org1.example.com | txId=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 locPointer=offset=70, bytesLength=2856 +orderer.example.com | 2018-01-14 11:45:32.587 UTC [policies] GetPolicy -> DEBU 5a2 Returning policy ChannelCreationPolicy for evaluation +peer0.org1.example.com | ] +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5a3 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +peer0.org1.example.com | [981 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to index +peer0.org1.example.com | [982 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx number:[0] ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to blockNumTranNum index +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] GetPolicy -> DEBU 5a4 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5a5 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +peer0.org1.example.com | [983 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59245], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] GetPolicy -> DEBU 5a6 Returning policy Org1MSP/Writers for evaluation +peer0.org1.example.com | [984 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +peer0.org1.example.com | [985 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5a7 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +peer0.org1.example.com | [986 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] GetPolicy -> DEBU 5a8 Returning policy Org1MSP/Admins for evaluation +peer0.org1.example.com | [987 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [988 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5a9 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +peer0.org1.example.com | [989 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [98a 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] GetPolicy -> DEBU 5aa Returning policy Org2MSP/Writers for evaluation +peer0.org1.example.com | [98b 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +orderer.example.com | 2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5ab In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +peer0.org1.example.com | [98c 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +peer0.org1.example.com | [98d 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +orderer.example.com | 2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5ac Returning policy Admins for evaluation +peer0.org1.example.com | [98e 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +peer0.org1.example.com | [98f 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +orderer.example.com | 2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5ad Returning dummy reject all policy because Admins could not be found in /Application/Admins +peer0.org1.example.com | [990 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [991 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +orderer.example.com | 2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5ae Returning policy Readers for evaluation +peer0.org1.example.com | [992 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5af Returning dummy reject all policy because Readers could not be found in /Application/Readers +peer0.org1.example.com | [993 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +orderer.example.com | 2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5b0 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5b1 Returning dummy reject all policy because Writers could not be found in /Application/Writers +orderer.example.com | 2018-01-14 11:45:32.589 UTC [common/configtx] addToMap -> DEBU 5b2 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.590 UTC [common/configtx] addToMap -> DEBU 5b3 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.590 UTC [common/configtx] addToMap -> DEBU 5b4 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.590 UTC [common/configtx] addToMap -> DEBU 5b5 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.590 UTC [common/configtx] addToMap -> DEBU 5b6 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5b7 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5b8 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5b9 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5ba Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5bb Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5bc Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:32.592 UTC [common/configtx] addToMap -> DEBU 5bd Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:32.592 UTC [common/configtx] addToMap -> DEBU 5be Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.592 UTC [policies] GetPolicy -> DEBU 5bf Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | 2018-01-14 11:45:32.592 UTC [cauthdsl] func1 -> DEBU 5c0 0xc4200265a8 gate 1515930332592908164 evaluation starts +orderer.example.com | 2018-01-14 11:45:32.593 UTC [cauthdsl] func2 -> DEBU 5c1 0xc4200265a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:32.593 UTC [cauthdsl] func2 -> DEBU 5c2 0xc4200265a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:32.593 UTC [msp/identity] newIdentity -> DEBU 5c3 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8aa 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8ab 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [8ac 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.258 UTC [msp/identity] newIdentity -> DEBU 55e Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8ad 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8ae 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [8af 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ed4c30, header 0xc421e90f90 -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -peer0.org1.example.com | [8b0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -peer0.org1.example.com | [8b1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8b2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef] -orderer.example.com | 2018-01-04 01:50:57.259 UTC [msp] Validate -> DEBU 55f MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.259 UTC [common/config] Validate -> DEBU 560 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:57.259 UTC [common/config] validateMSP -> DEBU 561 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:57.259 UTC [msp] NewBccspMsp -> DEBU 562 Creating BCCSP-based MSP instance -peer0.org1.example.com | [8b3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | 2018-01-04 01:50:57.259 UTC [msp] Setup -> DEBU 563 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:57.260 UTC [msp/identity] newIdentity -> DEBU 564 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -peer0.org1.example.com | [8b4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b080f1ef-f32d-48a9-b333-981457345866] -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -peer0.org1.example.com | [8b5 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef channel id: businesschannel -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -peer0.org1.example.com | [8b6 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef channel id: businesschannel version: 1.0.2 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.260 UTC [msp/identity] newIdentity -> DEBU 565 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [8b7 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef,syscc=true,proposal=0xc421ed4c30,canname=qscc:1.0.2 -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org1.example.com | [8b8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -peer0.org1.example.com | [8b9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [8ba 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org1.example.com | [8bb 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c64dc950]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [8bc 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [8bd 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8be 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c64dc950]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.261 UTC [msp/identity] newIdentity -> DEBU 566 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -peer0.org1.example.com | [8bf 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]Move state message TRANSACTION -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8c0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc950]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org1.example.com | [8c1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -peer0.org1.example.com | [8c2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]sending state message TRANSACTION -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org1.example.com | [8c3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Received message TRANSACTION from shim -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org1.example.com | [8c4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c64dc950]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -peer0.org1.example.com | [8c5 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c64dc950]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [8c6 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -peer0.org1.example.com | [8c7 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Transaction completed. Sending COMPLETED -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -peer0.org1.example.com | [8c8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Move state message COMPLETED -orderer.example.com | AXYxULZpXYDQXt1KaLI= -peer0.org1.example.com | [8c9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c64dc950]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [8ca 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]send state message COMPLETED -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8cb 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.262 UTC [msp] Validate -> DEBU 567 MSP Org2MSP validating identity -peer0.org1.example.com | [8cc 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc950]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [8cd 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef]HandleMessage- COMPLETED. Notify -orderer.example.com | 2018-01-04 01:50:57.262 UTC [common/config] validateMSP -> DEBU 568 Setting up MSP for org OrdererOrg -peer0.org1.example.com | [8ce 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef -peer0.org1.example.com | [8cf 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.262 UTC [msp] NewBccspMsp -> DEBU 569 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.262 UTC [msp] Setup -> DEBU 56a Setting up MSP instance OrdererMSP -peer0.org1.example.com | [8d0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [8d1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-04 01:50:57.263 UTC [msp/identity] newIdentity -> DEBU 56b Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8d2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b080f1ef-f32d-48a9-b333-981457345866] -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -peer0.org1.example.com | [8d3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [8d4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef channel id: businesschannel chaincode id: name:"qscc" -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org1.example.com | [8d5 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer0.org1.example.com | [8d6 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef channel id: businesschannel version: 1.0.2 -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer0.org1.example.com | [8d7 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef,syscc=true,proposal=0xc421ed4c30,canname=escc:1.0.2 -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -peer0.org1.example.com | [8d8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer0.org1.example.com | [8d9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -peer0.org1.example.com | [8da 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8db 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c64dc950]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [8dc 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -orderer.example.com | 2018-01-04 01:50:57.263 UTC [msp/identity] newIdentity -> DEBU 56c Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8dd 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -peer0.org1.example.com | [8de 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c64dc950]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [8df 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]Move state message TRANSACTION -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [8e0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc950]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [8e1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [8e2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]sending state message TRANSACTION -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [8e3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Received message TRANSACTION from shim -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer0.org1.example.com | [8e4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c64dc950]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -peer0.org1.example.com | [8e5 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c64dc950]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [8e6 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [8e7 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8e8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.264 UTC [msp/identity] newIdentity -> DEBU 56d Creating identity instance for ID -----BEGIN CERTIFICATE----- -peer0.org1.example.com | [8e9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Move state message COMPLETED -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org1.example.com | [8ea 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c64dc950]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [8eb 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]send state message COMPLETED -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer0.org1.example.com | [8ec 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]Received message COMPLETED from shim -peer0.org1.example.com | [8ed 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc950]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -peer0.org1.example.com | [8ee 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef]HandleMessage- COMPLETED. Notify -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer0.org1.example.com | [8ef 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef -peer0.org1.example.com | [8f0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -peer0.org1.example.com | [8f1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -peer0.org1.example.com | [8f2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -peer0.org1.example.com | [8f3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b080f1ef-f32d-48a9-b333-981457345866] -peer0.org1.example.com | [8f4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [8f5 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.264 UTC [msp] Validate -> DEBU 56e MSP OrdererMSP validating identity -peer0.org1.example.com | [8f6 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220ded20 -orderer.example.com | 2018-01-04 01:50:57.265 UTC [msp] Setup -> DEBU 56f Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.265 UTC [msp] Setup -> DEBU 570 MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [8f7 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [8f8 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -peer0.org1.example.com | [8f9 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -orderer.example.com | 2018-01-04 01:50:57.265 UTC [policies] GetPolicy -> DEBU 571 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.265 UTC [policies] CommitProposals -> DEBU 572 In commit adding relative sub-policy Org1MSP/Readers to Application -peer0.org1.example.com | [8fa 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [8fb 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -peer0.org1.example.com | [8fc 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424dad5e0, header 0xc4220ded50 -orderer.example.com | 2018-01-04 01:50:57.265 UTC [policies] GetPolicy -> DEBU 573 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.265 UTC [policies] CommitProposals -> DEBU 574 In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.265 UTC [policies] GetPolicy -> DEBU 575 Returning policy Admins for evaluation -peer0.org1.example.com | [8fd 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -peer0.org1.example.com | [8fe 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 -orderer.example.com | 2018-01-04 01:50:57.265 UTC [policies] CommitProposals -> DEBU 576 In commit adding relative sub-policy Org1MSP/Admins to Application -peer0.org1.example.com | [8ff 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0] -peer0.org1.example.com | [900 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [901 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [bac0d146-c7df-4b08-bb41-f4564a43827f] -orderer.example.com | 2018-01-04 01:50:57.265 UTC [policies] GetPolicy -> DEBU 577 Returning policy Writers for evaluation -peer0.org1.example.com | [902 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 channel id: businesschannel -peer0.org1.example.com | [903 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 channel id: businesschannel version: 1.0.2 -peer0.org1.example.com | [904 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0,syscc=true,proposal=0xc424dad5e0,canname=qscc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.265 UTC [policies] CommitProposals -> DEBU 578 In commit adding relative sub-policy Org2MSP/Writers to Application -peer0.org1.example.com | [905 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -peer0.org1.example.com | [906 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [907 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -peer0.org1.example.com | [908 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39dd82a8]Inside sendExecuteMessage. Message TRANSACTION -peer0.org1.example.com | [909 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [90a 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [90b 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39dd82a8]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [90c 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]Move state message TRANSACTION -peer0.org1.example.com | [90d 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 579 Returning policy Admins for evaluation -peer0.org1.example.com | [90e 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [90f 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]sending state message TRANSACTION -peer0.org1.example.com | [910 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.266 UTC [policies] CommitProposals -> DEBU 57a In commit adding relative sub-policy Org2MSP/Admins to Application -peer0.org1.example.com | [911 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39dd82a8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [912 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [39dd82a8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [913 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -orderer.example.com | 2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 57b Returning policy Readers for evaluation -peer0.org1.example.com | [914 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-04 01:50:57.266 UTC [policies] CommitProposals -> DEBU 57c In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 57d Returning policy Admins for evaluation -peer0.org1.example.com | [915 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[25667] -peer0.org1.example.com | [916 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28884], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 57e Returning policy Admins for evaluation -peer0.org1.example.com | [917 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13792], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} -orderer.example.com | 2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 57f Returning policy Writers for evaluation -peer0.org1.example.com | [918 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.266 UTC [policies] CommitProposals -> DEBU 580 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -peer0.org1.example.com | [919 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 581 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] CommitProposals -> DEBU 582 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -peer0.org1.example.com | [91a 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39dd82a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 583 Returning policy Readers for evaluation -peer0.org1.example.com | [91b 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]send state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] CommitProposals -> DEBU 584 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -peer0.org1.example.com | [91c 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 585 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 586 Returning policy Writers for evaluation -peer0.org1.example.com | [91d 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 587 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 588 Returning policy Writers for evaluation -peer0.org1.example.com | [91e 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [91f 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 589 Returning policy Org2MSP/Writers for evaluation -peer0.org1.example.com | [920 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [921 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] CommitProposals -> DEBU 58a In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -peer0.org1.example.com | [922 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 58b Returning policy Org2MSP/Admins for evaluation -peer0.org1.example.com | [923 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [bac0d146-c7df-4b08-bb41-f4564a43827f] -peer0.org1.example.com | [924 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -peer0.org1.example.com | [925 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 channel id: businesschannel chaincode id: name:"qscc" -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] CommitProposals -> DEBU 58c In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -peer0.org1.example.com | [926 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -peer0.org1.example.com | [927 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 channel id: businesschannel version: 1.0.2 -orderer.example.com | 2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 58d Returning policy Org2MSP/Readers for evaluation -peer0.org1.example.com | [928 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0,syscc=true,proposal=0xc424dad5e0,canname=escc:1.0.2 -peer0.org1.example.com | [929 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 58e In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -peer0.org1.example.com | [92a 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -peer0.org1.example.com | [92b 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -peer0.org1.example.com | [92c 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39dd82a8]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 58f Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [92d 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [92e 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -peer0.org1.example.com | [92f 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39dd82a8]sendExecuteMsg trigger event TRANSACTION -peer0.org1.example.com | [930 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]Move state message TRANSACTION -peer0.org1.example.com | [931 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -peer0.org1.example.com | [932 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -peer0.org1.example.com | [933 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]sending state message TRANSACTION -peer0.org1.example.com | [934 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Received message TRANSACTION from shim -peer0.org1.example.com | [935 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39dd82a8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 590 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -peer0.org1.example.com | [936 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [39dd82a8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -peer0.org1.example.com | [937 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 591 Returning policy Org1MSP/Readers for evaluation -peer0.org1.example.com | [938 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -peer0.org1.example.com | [939 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Transaction completed. Sending COMPLETED -peer0.org1.example.com | [93a 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Move state message COMPLETED -peer0.org1.example.com | [93b 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39dd82a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -peer0.org1.example.com | [93c 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]send state message COMPLETED -peer0.org1.example.com | [93d 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 592 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 593 Returning policy Org1MSP/Writers for evaluation -peer0.org1.example.com | [93e 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 594 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -peer0.org1.example.com | [93f 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [940 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 595 Returning policy Org1MSP/Admins for evaluation -peer0.org1.example.com | [941 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -peer0.org1.example.com | [942 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -peer0.org1.example.com | [943 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 596 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -peer0.org1.example.com | [944 01-04 01:52:26.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [bac0d146-c7df-4b08-bb41-f4564a43827f] -orderer.example.com | 2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 597 Returning policy BlockValidation for evaluation -peer0.org1.example.com | [945 01-04 01:52:26.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 598 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 599 Returning policy Readers for evaluation -peer0.org1.example.com | [946 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 59a In commit adding relative sub-policy Orderer/Readers to Channel -peer0.org1.example.com | [947 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 59b Returning policy Writers for evaluation -peer0.org1.example.com | [948 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 59c In commit adding relative sub-policy Orderer/Writers to Channel -peer0.org1.example.com | [949 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 59d Returning policy OrdererOrg/Writers for evaluation -peer0.org1.example.com | [94a 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -peer0.org1.example.com | [94b 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217f8870 -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 59e In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -peer0.org1.example.com | [94c 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\330\221\266\322\005\020\370\254\345\266\001\"\017businesschannel*@926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\224\276\310#\t\021C\316\036@TxH\251\"\250\030\335\rU4\366[\026" -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 59f Returning policy OrdererOrg/Admins for evaluation -peer0.org1.example.com | [94d 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 5a0 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -peer0.org1.example.com | [94e 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -orderer.example.com | 2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 5a1 Returning policy OrdererOrg/Readers for evaluation -peer0.org1.example.com | [94f 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] CommitProposals -> DEBU 5a2 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -peer0.org1.example.com | [950 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -peer0.org1.example.com | [951 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a3 Returning policy Admins for evaluation -peer0.org1.example.com | [952 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4220e3000, header channel_header:"\010\003\032\014\010\330\221\266\322\005\020\370\254\345\266\001\"\017businesschannel*@926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\224\276\310#\t\021C\316\036@TxH\251\"\250\030\335\rU4\366[\026" -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] CommitProposals -> DEBU 5a4 In commit adding relative sub-policy Orderer/Admins to Channel -peer0.org1.example.com | [953 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a5 Returning dummy reject all policy because Writers could not be found in /Application/Writers -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a7 Returning dummy reject all policy because Admins could not be found in /Application/Admins -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a8 Returning policy Admins for evaluation -peer0.org1.example.com | [954 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a9 Returning dummy reject all policy because Readers could not be found in /Application/Readers -peer0.org1.example.com | [955 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -orderer.example.com | 2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5aa Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5ab Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5ac Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5ad Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5ae Adding to config map: [Groups] /Channel/Application/Org2MSP -peer0.org1.example.com | [956 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -orderer.example.com | 2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5af Adding to config map: [Values] /Channel/Consortium -peer0.org1.example.com | [957 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] -orderer.example.com | 2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5b0 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5b1 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5b2 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b3 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b4 Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b5 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b6 Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b7 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.272 UTC [policies] GetPolicy -> DEBU 5b8 Returning policy ChannelCreationPolicy for evaluation -peer0.org1.example.com | [958 01-04 01:52:26.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -orderer.example.com | 2018-01-04 01:50:57.272 UTC [cauthdsl] func1 -> DEBU 5b9 0xc420026648 gate 1515030657272820100 evaluation starts -orderer.example.com | 2018-01-04 01:50:57.272 UTC [cauthdsl] func2 -> DEBU 5ba 0xc420026648 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:57.273 UTC [cauthdsl] func2 -> DEBU 5bb 0xc420026648 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -peer0.org1.example.com | [959 01-04 01:52:26.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [c7c5aa43-6185-436d-8220-f3ad16359126] -orderer.example.com | 2018-01-04 01:50:57.273 UTC [msp/identity] newIdentity -> DEBU 5bc Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -peer0.org1.example.com | [95a 01-04 01:52:26.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -peer0.org1.example.com | [95b 01-04 01:52:26.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c7c5aa43-6185-436d-8220-f3ad16359126] -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -peer0.org1.example.com | [95c 01-04 01:52:26.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.273 UTC [msp] SatisfiesPrincipal -> DEBU 5bd Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.273 UTC [cauthdsl] func2 -> DEBU 5be 0xc420026648 principal matched by identity 0 -peer0.org1.example.com | [95d 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [bfcd68a0-b68f-4179-a0d6-de0b25a05627] -orderer.example.com | 2018-01-04 01:50:57.273 UTC [msp/identity] Verify -> DEBU 5bf Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -peer0.org1.example.com | [95e 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=263ac741-b24d-483d-af7e-a91dfe308e57,syscc=true,proposal=0x0,canname=vscc:1.0.2 -orderer.example.com | 00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -peer0.org1.example.com | [95f 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd chaindID businesschannel -orderer.example.com | 2018-01-04 01:50:57.274 UTC [msp/identity] Verify -> DEBU 5c0 Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -peer0.org1.example.com | [960 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -orderer.example.com | 00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -peer0.org1.example.com | [961 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -orderer.example.com | 00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -peer0.org1.example.com | [962 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -orderer.example.com | 00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -peer0.org1.example.com | [963 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [263ac741]Inside sendExecuteMessage. Message TRANSACTION -orderer.example.com | 00000040 de 20 dd a7 3b f5 |. ..;.| -peer0.org1.example.com | [964 01-04 01:52:26.50 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -peer0.org1.example.com | [965 01-04 01:52:26.51 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [263ac741]sendExecuteMsg trigger event TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.274 UTC [cauthdsl] func2 -> DEBU 5c1 0xc420026648 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [966 01-04 01:52:26.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [263ac741]Move state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.274 UTC [cauthdsl] func1 -> DEBU 5c2 0xc420026648 gate 1515030657272820100 evaluation succeeds -peer0.org1.example.com | [967 01-04 01:52:26.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [263ac741]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -orderer.example.com | 2018-01-04 01:50:57.274 UTC [common/configtx] recurseConfigMap -> DEBU 5c3 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.274 UTC [common/configtx] recurseConfigMap -> DEBU 5c4 Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [968 01-04 01:52:26.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -orderer.example.com | 2018-01-04 01:50:57.274 UTC [common/configtx] recurseConfigMap -> DEBU 5c5 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.274 UTC [common/configtx] recurseConfigMap -> DEBU 5c6 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5c7 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [969 01-04 01:52:26.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [263ac741]sending state message TRANSACTION -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5c8 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [96a 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [263ac741]Received message TRANSACTION from shim -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5c9 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [96b 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [263ac741]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5ca Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [96c 01-04 01:52:26.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [263ac741]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5cb Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [96d 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -peer0.org1.example.com | [96e 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5cc Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [96f 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -peer0.org1.example.com | [970 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [263ac741]Transaction completed. Sending COMPLETED -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5cd Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [971 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [263ac741]Move state message COMPLETED -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5ce Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5cf Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5d0 Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [972 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [263ac741]Handling ChaincodeMessage of type: COMPLETED(state:ready) -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d1 Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [973 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [263ac741]send state message COMPLETED -peer0.org1.example.com | [974 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [263ac741]Received message COMPLETED from shim -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d2 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [975 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [263ac741]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d3 Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [976 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [263ac741-b24d-483d-af7e-a91dfe308e57]HandleMessage- COMPLETED. Notify -peer0.org1.example.com | [977 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:263ac741-b24d-483d-af7e-a91dfe308e57 -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d4 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d5 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/configtx] processConfig -> DEBU 5d6 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/config] NewStandardValues -> DEBU 5d7 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/config] initializeProtosStruct -> DEBU 5d8 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.276 UTC [common/config] initializeProtosStruct -> DEBU 5d9 Processing field: BlockDataHashingStructure -peer0.org1.example.com | [978 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5da Processing field: OrdererAddresses -peer0.org1.example.com | [979 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [bfcd68a0-b68f-4179-a0d6-de0b25a05627] -peer0.org1.example.com | [97a 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5db Processing field: Consortium -peer0.org1.example.com | [97b 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5dc Proposed new policy Writers for Channel -peer0.org1.example.com | [97c 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42033ccc0), Data:(*common.BlockData)(0xc422672ce0), Metadata:(*common.BlockMetadata)(0xc422672d20)}, doMVCCValidation=true -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5dd Proposed new policy Admins for Channel -peer0.org1.example.com | [97d 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -peer0.org1.example.com | [97e 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5de Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] NewStandardValues -> DEBU 5df Initializing protos for *config.OrdererProtos -peer0.org1.example.com | [97f 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e0 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e1 Processing field: BatchSize -peer0.org1.example.com | [980 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e2 Processing field: BatchTimeout -peer0.org1.example.com | [981 01-04 01:52:26.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] marked as valid by state validator -peer0.org1.example.com | [982 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0xa3, 0x96, 0xc0, 0xf9, 0x28, 0xfe, 0x7e, 0x14, 0xc0, 0xf3, 0x58, 0xaf, 0xa7, 0xcd, 0xfe, 0xbb, 0xfc, 0xc3, 0xe2, 0x1c, 0x33, 0x37, 0xd5, 0x9a, 0xe7, 0x19, 0x56, 0x62, 0xcc, 0x79, 0x72, 0x45} txOffsets= -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e3 Processing field: KafkaBrokers -peer0.org1.example.com | txId=926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd locPointer=offset=70, bytesLength=2848 -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e4 Processing field: ChannelRestrictions -peer0.org1.example.com | ] -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5e5 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5e6 Proposed new policy BlockValidation for Orderer -peer0.org1.example.com | [983 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2848] for tx ID: [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] to index -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5e7 Proposed new policy Readers for Orderer -peer0.org1.example.com | [984 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54621, bytesLength=2848] for tx number:[0] ID: [926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd] to blockNumTranNum index -peer0.org1.example.com | [985 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59219], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5e8 Proposed new policy Writers for Orderer -peer0.org1.example.com | [986 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) -peer0.org1.example.com | [987 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] NewStandardValues -> DEBU 5e9 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [988 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [989 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5ea Processing field: MSP -peer0.org1.example.com | [98a 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5eb Proposed new policy Admins for OrdererOrg -peer0.org1.example.com | [98b 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [98c 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org1.example.com | [98d 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5ec Proposed new policy Readers for OrdererOrg -peer0.org1.example.com | [98e 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5ed Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] NewStandardValues -> DEBU 5ee Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5ef Proposed new policy Admins for Application -peer0.org1.example.com | [98f 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd -peer0.org1.example.com | [990 01-04 01:52:26.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5f0 Proposed new policy Writers for Application -peer0.org1.example.com | [991 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -peer0.org1.example.com | [992 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -orderer.example.com | 2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5f1 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] NewStandardValues -> DEBU 5f2 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [993 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -orderer.example.com | 2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5f3 Processing field: MSP -peer0.org1.example.com | [994 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5f4 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 5f5 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5f6 Initializing protos for *config.OrganizationProtos -peer0.org1.example.com | [995 01-04 01:52:26.56 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 5f7 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 5f8 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 5f9 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 5fa Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5fb Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 5fc Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5fd Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 5fe Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5ff Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 600 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 601 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 602 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 603 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [common/config] validateMSP -> DEBU 604 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.278 UTC [msp] NewBccspMsp -> DEBU 605 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.278 UTC [msp] Setup -> DEBU 606 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:50:57.278 UTC [msp/identity] newIdentity -> DEBU 607 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.594 UTC [msp] SatisfiesPrincipal -> DEBU 5c4 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.594 UTC [cauthdsl] func2 -> DEBU 5c5 0xc4200265a8 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:32.594 UTC [msp/identity] Verify -> DEBU 5c6 Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +orderer.example.com | 00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +orderer.example.com | 2018-01-14 11:45:32.594 UTC [msp/identity] Verify -> DEBU 5c7 Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +orderer.example.com | 00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +orderer.example.com | 00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +orderer.example.com | 00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +orderer.example.com | 00000040 12 a6 8e 7f 16 50 |.....P| +orderer.example.com | 2018-01-14 11:45:32.594 UTC [cauthdsl] func2 -> DEBU 5c8 0xc4200265a8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:32.594 UTC [cauthdsl] func1 -> DEBU 5c9 0xc4200265a8 gate 1515930332592908164 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5ca Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5cb Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5cc Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5cd Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5ce Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5cf Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5d0 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5d1 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5d2 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5d3 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d4 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d5 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d6 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d7 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d8 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d9 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.598 UTC [common/configtx] recurseConfigMap -> DEBU 5da Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.598 UTC [common/configtx] recurseConfigMap -> DEBU 5db Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.598 UTC [common/configtx] recurseConfigMap -> DEBU 5dc Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.598 UTC [common/configtx] processConfig -> DEBU 5dd Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.598 UTC [common/config] NewStandardValues -> DEBU 5de Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:32.598 UTC [common/config] initializeProtosStruct -> DEBU 5df Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.598 UTC [common/config] initializeProtosStruct -> DEBU 5e0 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.598 UTC [common/config] initializeProtosStruct -> DEBU 5e1 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.599 UTC [common/config] initializeProtosStruct -> DEBU 5e2 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.599 UTC [policies] ProposePolicy -> DEBU 5e3 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:32.599 UTC [policies] ProposePolicy -> DEBU 5e4 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:32.599 UTC [policies] ProposePolicy -> DEBU 5e5 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:32.599 UTC [common/config] NewStandardValues -> DEBU 5e6 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:32.599 UTC [common/config] initializeProtosStruct -> DEBU 5e7 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:32.599 UTC [common/config] initializeProtosStruct -> DEBU 5e8 Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:32.599 UTC [common/config] initializeProtosStruct -> DEBU 5e9 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.600 UTC [common/config] initializeProtosStruct -> DEBU 5ea Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:32.600 UTC [common/config] initializeProtosStruct -> DEBU 5eb Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.600 UTC [policies] ProposePolicy -> DEBU 5ec Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:32.600 UTC [policies] ProposePolicy -> DEBU 5ed Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:32.600 UTC [policies] ProposePolicy -> DEBU 5ee Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:32.600 UTC [policies] ProposePolicy -> DEBU 5ef Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:32.600 UTC [common/config] NewStandardValues -> DEBU 5f0 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.600 UTC [common/config] initializeProtosStruct -> DEBU 5f1 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f2 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f3 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f4 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.601 UTC [common/config] NewStandardValues -> DEBU 5f5 Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f6 Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f7 Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f8 Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:32.601 UTC [common/config] NewStandardValues -> DEBU 5f9 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.602 UTC [common/config] initializeProtosStruct -> DEBU 5fa Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.602 UTC [common/config] NewStandardValues -> DEBU 5fb Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.602 UTC [common/config] initializeProtosStruct -> DEBU 5fc Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.602 UTC [common/config] NewStandardValues -> DEBU 5fd Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.602 UTC [common/config] initializeProtosStruct -> DEBU 5fe Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.602 UTC [policies] ProposePolicy -> DEBU 5ff Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.602 UTC [policies] ProposePolicy -> DEBU 600 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.602 UTC [policies] ProposePolicy -> DEBU 601 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.603 UTC [common/config] NewStandardValues -> DEBU 602 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.603 UTC [common/config] initializeProtosStruct -> DEBU 603 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.603 UTC [common/config] NewStandardValues -> DEBU 604 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.603 UTC [common/config] initializeProtosStruct -> DEBU 605 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.603 UTC [common/config] NewStandardValues -> DEBU 606 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.603 UTC [common/config] initializeProtosStruct -> DEBU 607 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.603 UTC [policies] ProposePolicy -> DEBU 608 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.603 UTC [policies] ProposePolicy -> DEBU 609 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.603 UTC [policies] ProposePolicy -> DEBU 60a Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.603 UTC [common/config] validateMSP -> DEBU 60b Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.604 UTC [msp] NewBccspMsp -> DEBU 60c Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.604 UTC [msp] Setup -> DEBU 60d Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:32.604 UTC [msp/identity] newIdentity -> DEBU 60e Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -10628,7 +10642,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.278 UTC [msp/identity] newIdentity -> DEBU 608 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.604 UTC [msp/identity] newIdentity -> DEBU 60f Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -10641,7 +10655,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.278 UTC [msp/identity] newIdentity -> DEBU 609 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.605 UTC [msp/identity] newIdentity -> DEBU 610 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -10654,60 +10668,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.280 UTC [msp] Validate -> DEBU 60a MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:57.280 UTC [common/config] Validate -> DEBU 60b Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:57.280 UTC [common/config] validateMSP -> DEBU 60c Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:57.280 UTC [msp] NewBccspMsp -> DEBU 60d Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.280 UTC [msp] Setup -> DEBU 60e Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:57.280 UTC [msp/identity] newIdentity -> DEBU 60f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.281 UTC [msp/identity] newIdentity -> DEBU 610 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.281 UTC [msp/identity] newIdentity -> DEBU 611 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.282 UTC [msp] Validate -> DEBU 612 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.282 UTC [common/config] Validate -> DEBU 613 Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-04 01:50:57.282 UTC [common/config] validateMSP -> DEBU 614 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:57.282 UTC [msp] NewBccspMsp -> DEBU 615 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.282 UTC [msp] Setup -> DEBU 616 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:57.282 UTC [msp/identity] newIdentity -> DEBU 617 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.605 UTC [msp] Validate -> DEBU 611 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:32.606 UTC [common/config] Validate -> DEBU 612 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-14 11:45:32.606 UTC [common/config] validateMSP -> DEBU 613 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:32.606 UTC [msp] NewBccspMsp -> DEBU 614 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.606 UTC [msp] Setup -> DEBU 615 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:32.607 UTC [msp/identity] newIdentity -> DEBU 616 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10722,7 +10688,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.283 UTC [msp/identity] newIdentity -> DEBU 618 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.607 UTC [msp/identity] newIdentity -> DEBU 617 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10736,7 +10702,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.283 UTC [msp/identity] newIdentity -> DEBU 619 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.607 UTC [msp/identity] newIdentity -> DEBU 618 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -10750,249 +10716,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.284 UTC [msp] Validate -> DEBU 61a MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.284 UTC [msp] Setup -> DEBU 61b Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.284 UTC [msp] Setup -> DEBU 61c MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:57.284 UTC [common/configtx] addToMap -> DEBU 61d Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.284 UTC [common/configtx] addToMap -> DEBU 61e Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-04 01:50:57.284 UTC [common/configtx] addToMap -> DEBU 61f Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 620 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 621 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 622 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 623 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 624 Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 625 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 626 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 627 Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 628 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 629 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62a Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62b Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62c Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62d Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62f Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 630 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 631 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 632 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 633 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 634 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 635 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 636 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 637 Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 638 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 639 Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 63a Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 63b Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 63c Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 63d Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 63e Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 63f Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 640 Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 641 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 642 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 643 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 644 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 645 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 646 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 647 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 648 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 649 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 64a Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 64b Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 64c Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 64d Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.289 UTC [policies] GetPolicy -> DEBU 64e Returning policy ChannelCreationPolicy for evaluation -orderer.example.com | 2018-01-04 01:50:57.289 UTC [cauthdsl] func1 -> DEBU 64f 0xc420026d90 gate 1515030657289641600 evaluation starts -orderer.example.com | 2018-01-04 01:50:57.289 UTC [cauthdsl] func2 -> DEBU 650 0xc420026d90 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:57.289 UTC [cauthdsl] func2 -> DEBU 651 0xc420026d90 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:57.290 UTC [msp/identity] newIdentity -> DEBU 652 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.290 UTC [msp] SatisfiesPrincipal -> DEBU 653 Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.290 UTC [cauthdsl] func2 -> DEBU 654 0xc420026d90 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:57.290 UTC [msp/identity] Verify -> DEBU 655 Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -orderer.example.com | 00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -orderer.example.com | 2018-01-04 01:50:57.290 UTC [msp/identity] Verify -> DEBU 656 Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -orderer.example.com | 00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -orderer.example.com | 00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -orderer.example.com | 00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -orderer.example.com | 00000040 de 20 dd a7 3b f5 |. ..;.| -orderer.example.com | 2018-01-04 01:50:57.290 UTC [cauthdsl] func2 -> DEBU 657 0xc420026d90 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:50:57.290 UTC [cauthdsl] func1 -> DEBU 658 0xc420026d90 gate 1515030657289641600 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 659 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65a Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65b Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65c Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65d Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65e Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65f Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 660 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 661 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 662 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 663 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 664 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 665 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 666 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 667 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 668 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 669 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 66a Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/configtx] recurseConfigMap -> DEBU 66b Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/configtx] processConfig -> DEBU 66c Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/config] NewStandardValues -> DEBU 66d Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 66e Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 66f Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 670 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 671 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.293 UTC [policies] ProposePolicy -> DEBU 672 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:57.293 UTC [policies] ProposePolicy -> DEBU 673 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:57.293 UTC [policies] ProposePolicy -> DEBU 674 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/config] NewStandardValues -> DEBU 675 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 676 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 677 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 678 Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 679 Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 67a Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 67b Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 67c Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 67d Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 67e Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:57.294 UTC [common/config] NewStandardValues -> DEBU 67f Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 680 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 681 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 682 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 683 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 684 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 685 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 686 Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 687 Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 688 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 689 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 68a Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 68b Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 68c Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 68d Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 68e Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 68f Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 690 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 691 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 692 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 693 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 694 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.296 UTC [common/config] NewStandardValues -> DEBU 695 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.296 UTC [common/config] initializeProtosStruct -> DEBU 696 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.296 UTC [policies] ProposePolicy -> DEBU 697 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.296 UTC [policies] ProposePolicy -> DEBU 698 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.296 UTC [policies] ProposePolicy -> DEBU 699 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.296 UTC [common/config] validateMSP -> DEBU 69a Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.296 UTC [msp] NewBccspMsp -> DEBU 69b Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.296 UTC [msp] Setup -> DEBU 69c Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:50:57.296 UTC [msp/identity] newIdentity -> DEBU 69d Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.297 UTC [msp/identity] newIdentity -> DEBU 69e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.297 UTC [msp/identity] newIdentity -> DEBU 69f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.298 UTC [msp] Validate -> DEBU 6a0 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:57.298 UTC [common/config] Validate -> DEBU 6a1 Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-04 01:50:57.298 UTC [common/config] validateMSP -> DEBU 6a2 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:57.298 UTC [msp] NewBccspMsp -> DEBU 6a3 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.298 UTC [msp] Setup -> DEBU 6a4 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:57.299 UTC [msp/identity] newIdentity -> DEBU 6a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.299 UTC [msp/identity] newIdentity -> DEBU 6a6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.300 UTC [msp/identity] newIdentity -> DEBU 6a7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.300 UTC [msp] Validate -> DEBU 6a8 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.300 UTC [common/config] Validate -> DEBU 6a9 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:57.300 UTC [common/config] validateMSP -> DEBU 6aa Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:57.300 UTC [msp] NewBccspMsp -> DEBU 6ab Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.301 UTC [msp] Setup -> DEBU 6ac Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:57.301 UTC [msp/identity] newIdentity -> DEBU 6ad Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.608 UTC [msp] Validate -> DEBU 619 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.608 UTC [common/config] Validate -> DEBU 61a Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:32.608 UTC [common/config] validateMSP -> DEBU 61b Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:32.608 UTC [msp] NewBccspMsp -> DEBU 61c Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.609 UTC [msp] Setup -> DEBU 61d Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:32.609 UTC [msp/identity] newIdentity -> DEBU 61e Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -11007,7 +10736,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.301 UTC [msp/identity] newIdentity -> DEBU 6ae Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.609 UTC [msp/identity] newIdentity -> DEBU 61f Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11021,7 +10750,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.302 UTC [msp/identity] newIdentity -> DEBU 6af Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.610 UTC [msp/identity] newIdentity -> DEBU 620 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11035,178 +10764,156 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.302 UTC [msp] Validate -> DEBU 6b0 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.302 UTC [msp] Setup -> DEBU 6b1 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.303 UTC [msp] Setup -> DEBU 6b2 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6b3 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6b4 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6b5 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6b6 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6b7 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6b8 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6b9 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6ba Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6bb Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6bc Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6bd Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6be In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6bf Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6c0 In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6c1 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6c2 In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6c3 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6c4 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6c5 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6c6 In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6c7 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6c8 In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6c9 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6ca Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6cb Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6cc Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6cd Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6ce Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6cf Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6d0 In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6d1 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6d2 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6d3 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6d4 In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6d5 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6d6 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6d7 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6d8 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6d9 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6da In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6db Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6dc In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6dd Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6de In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6df Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e0 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6e1 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e2 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6e3 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e4 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6e5 Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e6 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6e7 Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e8 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6e9 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6ea In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6eb Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6ec In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6ed Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6ee In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6ef Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f0 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f1 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f2 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f3 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f4 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f5 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6f6 As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f7 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6f8 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f9 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6fa As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6fb Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6fc As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-04 01:50:57.307 UTC [policies] GetPolicy -> DEBU 6fd Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.307 UTC [policies] CommitProposals -> DEBU 6fe As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-04 01:50:57.307 UTC [policies] GetPolicy -> DEBU 6ff Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:57.307 UTC [policies] CommitProposals -> DEBU 700 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-04 01:50:57.307 UTC [common/config] NewStandardValues -> DEBU 701 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.307 UTC [common/config] initializeProtosStruct -> DEBU 702 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.307 UTC [common/config] initializeProtosStruct -> DEBU 703 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.307 UTC [common/config] initializeProtosStruct -> DEBU 704 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.307 UTC [common/config] initializeProtosStruct -> DEBU 705 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.309 UTC [common/configtx] addToMap -> DEBU 706 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.309 UTC [common/configtx] addToMap -> DEBU 707 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 708 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 709 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70a Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70b Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70c Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70d Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70f Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 710 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 711 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 712 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 713 Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 714 Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 715 Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 716 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 717 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 718 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 719 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71b Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71c Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71d Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71e Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71f Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 720 Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 721 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 722 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 723 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 724 Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 725 Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 726 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 727 Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 728 Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 729 Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-04 01:50:57.312 UTC [common/configtx] processConfig -> DEBU 72a Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.313 UTC [common/config] NewStandardValues -> DEBU 72b Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.313 UTC [common/config] initializeProtosStruct -> DEBU 72c Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.313 UTC [common/config] initializeProtosStruct -> DEBU 72d Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.313 UTC [common/config] initializeProtosStruct -> DEBU 72e Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.313 UTC [common/config] initializeProtosStruct -> DEBU 72f Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.313 UTC [policies] ProposePolicy -> DEBU 730 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:57.313 UTC [policies] ProposePolicy -> DEBU 731 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:57.313 UTC [policies] ProposePolicy -> DEBU 732 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:57.314 UTC [common/config] NewStandardValues -> DEBU 733 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 734 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 735 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 736 Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 737 Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 738 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 739 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 73a Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 73b Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 73c Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:57.314 UTC [common/config] NewStandardValues -> DEBU 73d Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 73e Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 73f Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 740 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 741 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 742 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 743 Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 744 Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 745 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 746 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 747 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 748 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 749 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 74a Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 74b Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 74c Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 74d Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 74e Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 74f Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 750 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 751 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 752 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 753 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 754 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.316 UTC [policies] ProposePolicy -> DEBU 755 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.316 UTC [policies] ProposePolicy -> DEBU 756 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.316 UTC [policies] ProposePolicy -> DEBU 757 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.316 UTC [common/config] validateMSP -> DEBU 758 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.316 UTC [msp] NewBccspMsp -> DEBU 759 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.316 UTC [msp] Setup -> DEBU 75a Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:50:57.316 UTC [msp/identity] newIdentity -> DEBU 75b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.611 UTC [msp] Validate -> DEBU 621 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.611 UTC [msp] Setup -> DEBU 622 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:32.611 UTC [msp] Setup -> DEBU 623 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:32.611 UTC [common/configtx] addToMap -> DEBU 624 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.611 UTC [common/configtx] addToMap -> DEBU 625 Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-14 11:45:32.611 UTC [common/configtx] addToMap -> DEBU 626 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 627 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 628 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 629 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 62a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 62b Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 62c Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 62d Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 62e Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 62f Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 630 Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 631 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 632 Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 633 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 634 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 635 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 636 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 637 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 638 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 639 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63a Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63d Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63e Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 63f Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 640 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 641 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 642 Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 643 Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 644 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 645 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 646 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 647 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 648 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 649 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64a Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64b Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64c Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64d Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64e Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64f Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 650 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 651 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 652 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 653 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 654 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.617 UTC [policies] GetPolicy -> DEBU 655 Returning policy ChannelCreationPolicy for evaluation +orderer.example.com | 2018-01-14 11:45:32.618 UTC [cauthdsl] func1 -> DEBU 656 0xc420026cf0 gate 1515930332618073264 evaluation starts +orderer.example.com | 2018-01-14 11:45:32.618 UTC [cauthdsl] func2 -> DEBU 657 0xc420026cf0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:32.618 UTC [cauthdsl] func2 -> DEBU 658 0xc420026cf0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:32.618 UTC [msp/identity] newIdentity -> DEBU 659 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.618 UTC [msp] SatisfiesPrincipal -> DEBU 65a Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.619 UTC [cauthdsl] func2 -> DEBU 65b 0xc420026cf0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:32.619 UTC [msp/identity] Verify -> DEBU 65c Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +orderer.example.com | 00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +orderer.example.com | 2018-01-14 11:45:32.619 UTC [msp/identity] Verify -> DEBU 65d Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +orderer.example.com | 00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +orderer.example.com | 00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +orderer.example.com | 00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +orderer.example.com | 00000040 12 a6 8e 7f 16 50 |.....P| +orderer.example.com | 2018-01-14 11:45:32.619 UTC [cauthdsl] func2 -> DEBU 65e 0xc420026cf0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:32.619 UTC [cauthdsl] func1 -> DEBU 65f 0xc420026cf0 gate 1515930332618073264 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:32.619 UTC [common/configtx] recurseConfigMap -> DEBU 660 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.619 UTC [common/configtx] recurseConfigMap -> DEBU 661 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.619 UTC [common/configtx] recurseConfigMap -> DEBU 662 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 663 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 664 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 665 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 666 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 667 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 668 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 669 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66a Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66b Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66c Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66d Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66e Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.622 UTC [common/configtx] recurseConfigMap -> DEBU 66f Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.622 UTC [common/configtx] recurseConfigMap -> DEBU 670 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.622 UTC [common/configtx] recurseConfigMap -> DEBU 671 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.622 UTC [common/configtx] recurseConfigMap -> DEBU 672 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:32.622 UTC [common/configtx] processConfig -> DEBU 673 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.622 UTC [common/config] NewStandardValues -> DEBU 674 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:32.623 UTC [common/config] initializeProtosStruct -> DEBU 675 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.623 UTC [common/config] initializeProtosStruct -> DEBU 676 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.623 UTC [common/config] initializeProtosStruct -> DEBU 677 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.623 UTC [common/config] initializeProtosStruct -> DEBU 678 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.623 UTC [policies] ProposePolicy -> DEBU 679 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:32.623 UTC [policies] ProposePolicy -> DEBU 67a Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:32.623 UTC [policies] ProposePolicy -> DEBU 67b Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:32.624 UTC [common/config] NewStandardValues -> DEBU 67c Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 67d Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 67e Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 67f Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 680 Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 681 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.624 UTC [policies] ProposePolicy -> DEBU 682 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:32.624 UTC [policies] ProposePolicy -> DEBU 683 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:32.624 UTC [policies] ProposePolicy -> DEBU 684 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:32.624 UTC [policies] ProposePolicy -> DEBU 685 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:32.624 UTC [common/config] NewStandardValues -> DEBU 686 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.625 UTC [common/config] initializeProtosStruct -> DEBU 687 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 688 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 689 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 68a Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.625 UTC [common/config] NewStandardValues -> DEBU 68b Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 68c Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 68d Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 68e Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:32.625 UTC [common/config] NewStandardValues -> DEBU 68f Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.625 UTC [common/config] initializeProtosStruct -> DEBU 690 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.626 UTC [common/config] NewStandardValues -> DEBU 691 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.626 UTC [common/config] initializeProtosStruct -> DEBU 692 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.626 UTC [common/config] NewStandardValues -> DEBU 693 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.626 UTC [common/config] initializeProtosStruct -> DEBU 694 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.626 UTC [policies] ProposePolicy -> DEBU 695 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.626 UTC [policies] ProposePolicy -> DEBU 696 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.626 UTC [policies] ProposePolicy -> DEBU 697 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.627 UTC [common/config] NewStandardValues -> DEBU 698 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.627 UTC [common/config] initializeProtosStruct -> DEBU 699 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.627 UTC [common/config] NewStandardValues -> DEBU 69a Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.627 UTC [common/config] initializeProtosStruct -> DEBU 69b Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.627 UTC [common/config] NewStandardValues -> DEBU 69c Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.627 UTC [common/config] initializeProtosStruct -> DEBU 69d Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.627 UTC [policies] ProposePolicy -> DEBU 69e Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.628 UTC [policies] ProposePolicy -> DEBU 69f Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.628 UTC [policies] ProposePolicy -> DEBU 6a0 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.628 UTC [common/config] validateMSP -> DEBU 6a1 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.628 UTC [msp] NewBccspMsp -> DEBU 6a2 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.628 UTC [msp] Setup -> DEBU 6a3 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:32.628 UTC [msp/identity] newIdentity -> DEBU 6a4 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -11220,7 +10927,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.317 UTC [msp/identity] newIdentity -> DEBU 75c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.629 UTC [msp/identity] newIdentity -> DEBU 6a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11233,7 +10940,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.317 UTC [msp/identity] newIdentity -> DEBU 75d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.629 UTC [msp/identity] newIdentity -> DEBU 6a6 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11246,12 +10953,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.318 UTC [msp] Validate -> DEBU 75e MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:57.318 UTC [common/config] Validate -> DEBU 75f Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-04 01:50:57.318 UTC [common/config] validateMSP -> DEBU 760 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:57.318 UTC [msp] NewBccspMsp -> DEBU 761 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.318 UTC [msp] Setup -> DEBU 762 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:57.318 UTC [msp/identity] newIdentity -> DEBU 763 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.630 UTC [msp] Validate -> DEBU 6a7 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:32.634 UTC [common/config] Validate -> DEBU 6a8 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-14 11:45:32.636 UTC [common/config] validateMSP -> DEBU 6a9 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:32.636 UTC [msp] NewBccspMsp -> DEBU 6aa Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.636 UTC [msp] Setup -> DEBU 6ab Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:32.637 UTC [msp/identity] newIdentity -> DEBU 6ac Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11266,7 +10973,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.319 UTC [msp/identity] newIdentity -> DEBU 764 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.637 UTC [msp/identity] newIdentity -> DEBU 6ad Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11280,7 +10987,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.319 UTC [msp/identity] newIdentity -> DEBU 765 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.638 UTC [msp/identity] newIdentity -> DEBU 6ae Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11294,12 +11001,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.320 UTC [msp] Validate -> DEBU 766 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.320 UTC [common/config] Validate -> DEBU 767 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:57.320 UTC [common/config] validateMSP -> DEBU 768 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:57.320 UTC [msp] NewBccspMsp -> DEBU 769 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.320 UTC [msp] Setup -> DEBU 76a Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:57.320 UTC [msp/identity] newIdentity -> DEBU 76b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.638 UTC [msp] Validate -> DEBU 6af MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.639 UTC [common/config] Validate -> DEBU 6b0 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:32.639 UTC [common/config] validateMSP -> DEBU 6b1 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:32.639 UTC [msp] NewBccspMsp -> DEBU 6b2 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.639 UTC [msp] Setup -> DEBU 6b3 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:32.640 UTC [msp/identity] newIdentity -> DEBU 6b4 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -11314,7 +11021,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.321 UTC [msp/identity] newIdentity -> DEBU 76c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.640 UTC [msp/identity] newIdentity -> DEBU 6b5 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11328,7 +11035,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.321 UTC [msp/identity] newIdentity -> DEBU 76d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.641 UTC [msp/identity] newIdentity -> DEBU 6b6 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11342,183 +11049,178 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.322 UTC [msp] Validate -> DEBU 76e MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.322 UTC [msp] Setup -> DEBU 76f Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.322 UTC [msp] Setup -> DEBU 770 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:57.322 UTC [policies] GetPolicy -> DEBU 771 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.322 UTC [policies] CommitProposals -> DEBU 772 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:57.322 UTC [policies] GetPolicy -> DEBU 773 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 774 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 775 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 776 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 777 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 778 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 779 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 77a Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 77b Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 77c In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 77d Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 77e In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 77f Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 780 In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 781 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 782 In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 783 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 784 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 785 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 786 In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 787 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 788 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 789 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78a Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78b Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78c Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78d Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 78e In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78f Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 790 In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 791 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 792 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 793 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 794 In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 795 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 796 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 797 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 798 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 799 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 79a In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 79b Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 79c In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 79d Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 79e In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 79f Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a0 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a1 Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a2 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a3 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a4 In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a5 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a6 In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a7 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a8 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a9 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7aa In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7ab Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7ac In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7ad Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7ae Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7af Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b0 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b1 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b2 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b3 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7b4 As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b5 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7b6 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b7 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7b8 As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b9 Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7ba As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-04 01:50:57.327 UTC [policies] GetPolicy -> DEBU 7bb Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.327 UTC [policies] CommitProposals -> DEBU 7bc As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-04 01:50:57.327 UTC [policies] GetPolicy -> DEBU 7bd Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:57.327 UTC [policies] CommitProposals -> DEBU 7be As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-04 01:50:57.327 UTC [orderer/common/blockcutter] Ordered -> DEBU 7bf Found message which requested to be isolated, cutting into its own batch -orderer.example.com | 2018-01-04 01:50:57.327 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 7c0 retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-04 01:50:57.327 UTC [fsblkstorage] newBlockfileStream -> DEBU 7c1 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-04 01:50:57.327 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7c2 Remaining bytes=[9082], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:50:57.327 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7c3 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/config] NewStandardValues -> DEBU 7c4 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/config] initializeProtosStruct -> DEBU 7c5 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/config] initializeProtosStruct -> DEBU 7c6 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/config] initializeProtosStruct -> DEBU 7c7 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/config] initializeProtosStruct -> DEBU 7c8 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/configtx] addToMap -> DEBU 7c9 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/configtx] addToMap -> DEBU 7ca Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/configtx] addToMap -> DEBU 7cb Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.328 UTC [common/configtx] addToMap -> DEBU 7cc Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7cd Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7ce Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7cf Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d0 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d1 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d2 Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d3 Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d4 Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d5 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d6 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d7 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d8 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d9 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7da Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7db Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7dc Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7dd Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7de Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7df Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e0 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e1 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e2 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e3 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e4 Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e5 Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e6 Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7e7 Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7e8 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7e9 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7ea Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7eb Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7ec Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/configtx] processConfig -> DEBU 7ed Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/config] NewStandardValues -> DEBU 7ee Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/config] initializeProtosStruct -> DEBU 7ef Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/config] initializeProtosStruct -> DEBU 7f0 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/config] initializeProtosStruct -> DEBU 7f1 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:57.331 UTC [common/config] initializeProtosStruct -> DEBU 7f2 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:57.331 UTC [policies] ProposePolicy -> DEBU 7f3 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7f4 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7f5 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:57.332 UTC [common/config] NewStandardValues -> DEBU 7f6 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7f7 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7f8 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7f9 Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7fa Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7fb Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7fc Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7fd Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7fe Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7ff Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:57.332 UTC [common/config] NewStandardValues -> DEBU 800 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 801 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 802 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 803 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 804 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.333 UTC [common/config] NewStandardValues -> DEBU 805 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 806 Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 807 Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 808 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:57.333 UTC [common/config] NewStandardValues -> DEBU 809 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.333 UTC [common/config] initializeProtosStruct -> DEBU 80a Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.333 UTC [common/config] NewStandardValues -> DEBU 80b Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.333 UTC [common/config] initializeProtosStruct -> DEBU 80c Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.333 UTC [common/config] NewStandardValues -> DEBU 80d Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.333 UTC [common/config] initializeProtosStruct -> DEBU 80e Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 80f Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 810 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 811 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:50:57.334 UTC [common/config] NewStandardValues -> DEBU 812 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.334 UTC [common/config] initializeProtosStruct -> DEBU 813 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.334 UTC [common/config] NewStandardValues -> DEBU 814 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:57.334 UTC [common/config] initializeProtosStruct -> DEBU 815 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:57.334 UTC [common/config] NewStandardValues -> DEBU 816 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:57.334 UTC [common/config] initializeProtosStruct -> DEBU 817 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 818 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 819 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 81a Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.334 UTC [common/config] validateMSP -> DEBU 81b Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:57.334 UTC [msp] NewBccspMsp -> DEBU 81c Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.334 UTC [msp] Setup -> DEBU 81d Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:50:57.335 UTC [msp/identity] newIdentity -> DEBU 81e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.641 UTC [msp] Validate -> DEBU 6b7 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.641 UTC [msp] Setup -> DEBU 6b8 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:32.641 UTC [msp] Setup -> DEBU 6b9 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6ba Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] CommitProposals -> DEBU 6bb In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6bc Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] CommitProposals -> DEBU 6bd In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6be Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] CommitProposals -> DEBU 6bf In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c0 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c1 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c2 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c3 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c4 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.643 UTC [policies] CommitProposals -> DEBU 6c5 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.643 UTC [policies] GetPolicy -> DEBU 6c6 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.643 UTC [policies] CommitProposals -> DEBU 6c7 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.643 UTC [policies] GetPolicy -> DEBU 6c8 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.643 UTC [policies] CommitProposals -> DEBU 6c9 In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.643 UTC [policies] GetPolicy -> DEBU 6ca Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.644 UTC [policies] CommitProposals -> DEBU 6cb In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6cc Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.644 UTC [policies] CommitProposals -> DEBU 6cd In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6ce Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.644 UTC [policies] CommitProposals -> DEBU 6cf In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6d0 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6d1 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6d2 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d3 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d4 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d5 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d6 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.645 UTC [policies] CommitProposals -> DEBU 6d7 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d8 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.645 UTC [policies] CommitProposals -> DEBU 6d9 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6da Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.646 UTC [policies] CommitProposals -> DEBU 6db In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-14 11:45:32.646 UTC [policies] GetPolicy -> DEBU 6dc Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.646 UTC [policies] CommitProposals -> DEBU 6dd In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.646 UTC [policies] GetPolicy -> DEBU 6de Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.647 UTC [policies] CommitProposals -> DEBU 6df In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.647 UTC [policies] GetPolicy -> DEBU 6e0 Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.647 UTC [policies] CommitProposals -> DEBU 6e1 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.647 UTC [policies] GetPolicy -> DEBU 6e2 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.647 UTC [policies] CommitProposals -> DEBU 6e3 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.647 UTC [policies] GetPolicy -> DEBU 6e4 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.647 UTC [policies] CommitProposals -> DEBU 6e5 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.647 UTC [policies] GetPolicy -> DEBU 6e6 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6e7 In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] GetPolicy -> DEBU 6e8 Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6e9 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] GetPolicy -> DEBU 6ea Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6eb In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] GetPolicy -> DEBU 6ec Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6ed In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] GetPolicy -> DEBU 6ee Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6ef In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f0 Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] CommitProposals -> DEBU 6f1 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f2 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] CommitProposals -> DEBU 6f3 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f4 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] CommitProposals -> DEBU 6f5 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f6 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f7 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f8 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f9 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6fa Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 6fb Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 6fc Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] CommitProposals -> DEBU 6fd As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 6fe Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] CommitProposals -> DEBU 6ff As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 700 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] CommitProposals -> DEBU 701 As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 702 Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] CommitProposals -> DEBU 703 As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 704 Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.651 UTC [policies] CommitProposals -> DEBU 705 As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-14 11:45:32.651 UTC [policies] GetPolicy -> DEBU 706 Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.651 UTC [policies] CommitProposals -> DEBU 707 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-14 11:45:32.651 UTC [common/config] NewStandardValues -> DEBU 708 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:32.651 UTC [common/config] initializeProtosStruct -> DEBU 709 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.651 UTC [common/config] initializeProtosStruct -> DEBU 70a Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.651 UTC [common/config] initializeProtosStruct -> DEBU 70b Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.651 UTC [common/config] initializeProtosStruct -> DEBU 70c Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 70d Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 70e Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 70f Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 710 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 711 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 712 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 713 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 714 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 715 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 716 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 717 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 718 Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 719 Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 71a Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71b Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71c Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71d Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 720 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 721 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 722 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 723 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 724 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 725 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 726 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 727 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 728 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 729 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72a Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72b Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72c Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72d Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72e Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72f Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 730 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:32.656 UTC [common/configtx] processConfig -> DEBU 731 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.657 UTC [common/config] NewStandardValues -> DEBU 732 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 733 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 734 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 735 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 736 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.657 UTC [policies] ProposePolicy -> DEBU 737 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:32.657 UTC [policies] ProposePolicy -> DEBU 738 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:32.657 UTC [policies] ProposePolicy -> DEBU 739 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:32.657 UTC [common/config] NewStandardValues -> DEBU 73a Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 73b Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:32.658 UTC [common/config] initializeProtosStruct -> DEBU 73c Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:32.658 UTC [common/config] initializeProtosStruct -> DEBU 73d Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.658 UTC [common/config] initializeProtosStruct -> DEBU 73e Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:32.658 UTC [common/config] initializeProtosStruct -> DEBU 73f Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.658 UTC [policies] ProposePolicy -> DEBU 740 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:32.658 UTC [policies] ProposePolicy -> DEBU 741 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:32.658 UTC [policies] ProposePolicy -> DEBU 742 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 743 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:32.659 UTC [common/config] NewStandardValues -> DEBU 744 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.659 UTC [common/config] initializeProtosStruct -> DEBU 745 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 746 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 747 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 748 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.659 UTC [common/config] NewStandardValues -> DEBU 749 Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 74a Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:32.660 UTC [policies] ProposePolicy -> DEBU 74b Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:32.660 UTC [policies] ProposePolicy -> DEBU 74c Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:32.660 UTC [common/config] NewStandardValues -> DEBU 74d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.660 UTC [common/config] initializeProtosStruct -> DEBU 74e Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.660 UTC [common/config] NewStandardValues -> DEBU 74f Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.660 UTC [common/config] initializeProtosStruct -> DEBU 750 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.660 UTC [common/config] NewStandardValues -> DEBU 751 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.660 UTC [common/config] initializeProtosStruct -> DEBU 752 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.660 UTC [policies] ProposePolicy -> DEBU 753 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.661 UTC [policies] ProposePolicy -> DEBU 754 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.661 UTC [policies] ProposePolicy -> DEBU 755 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.661 UTC [common/config] NewStandardValues -> DEBU 756 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.661 UTC [common/config] initializeProtosStruct -> DEBU 757 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.661 UTC [common/config] NewStandardValues -> DEBU 758 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.661 UTC [common/config] initializeProtosStruct -> DEBU 759 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.662 UTC [common/config] NewStandardValues -> DEBU 75a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.662 UTC [common/config] initializeProtosStruct -> DEBU 75b Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.662 UTC [policies] ProposePolicy -> DEBU 75c Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.662 UTC [policies] ProposePolicy -> DEBU 75d Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.662 UTC [policies] ProposePolicy -> DEBU 75e Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.663 UTC [common/config] validateMSP -> DEBU 75f Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.663 UTC [msp] NewBccspMsp -> DEBU 760 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.663 UTC [msp] Setup -> DEBU 761 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:32.663 UTC [msp/identity] newIdentity -> DEBU 762 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -11532,7 +11234,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.336 UTC [msp/identity] newIdentity -> DEBU 81f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.664 UTC [msp/identity] newIdentity -> DEBU 763 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11545,7 +11247,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.336 UTC [msp/identity] newIdentity -> DEBU 820 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.664 UTC [msp/identity] newIdentity -> DEBU 764 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -11558,60 +11260,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.337 UTC [msp] Validate -> DEBU 821 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:57.337 UTC [common/config] Validate -> DEBU 822 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:57.337 UTC [common/config] validateMSP -> DEBU 823 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:57.337 UTC [msp] NewBccspMsp -> DEBU 824 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.337 UTC [msp] Setup -> DEBU 825 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:57.337 UTC [msp/identity] newIdentity -> DEBU 826 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -orderer.example.com | SCjyRdD3aQ== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.338 UTC [msp/identity] newIdentity -> DEBU 827 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.338 UTC [msp/identity] newIdentity -> DEBU 828 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.339 UTC [msp] Validate -> DEBU 829 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.339 UTC [common/config] Validate -> DEBU 82a Anchor peers for org Org1MSP are -orderer.example.com | 2018-01-04 01:50:57.339 UTC [common/config] validateMSP -> DEBU 82b Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:57.339 UTC [msp] NewBccspMsp -> DEBU 82c Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:57.339 UTC [msp] Setup -> DEBU 82d Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:57.340 UTC [msp/identity] newIdentity -> DEBU 82e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.665 UTC [msp] Validate -> DEBU 765 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:32.665 UTC [common/config] Validate -> DEBU 766 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-14 11:45:32.665 UTC [common/config] validateMSP -> DEBU 767 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:32.666 UTC [msp] NewBccspMsp -> DEBU 768 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.666 UTC [msp] Setup -> DEBU 769 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:32.666 UTC [msp/identity] newIdentity -> DEBU 76a Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11626,7 +11280,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.340 UTC [msp/identity] newIdentity -> DEBU 82f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.667 UTC [msp/identity] newIdentity -> DEBU 76b Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11640,7 +11294,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.340 UTC [msp/identity] newIdentity -> DEBU 830 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.667 UTC [msp/identity] newIdentity -> DEBU 76c Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11654,132 +11308,492 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.341 UTC [msp] Validate -> DEBU 831 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.341 UTC [msp] Setup -> DEBU 832 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:57.341 UTC [msp] Setup -> DEBU 833 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:57.341 UTC [policies] GetPolicy -> DEBU 834 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.341 UTC [policies] CommitProposals -> DEBU 835 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:57.341 UTC [policies] GetPolicy -> DEBU 836 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.341 UTC [policies] CommitProposals -> DEBU 837 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:57.341 UTC [policies] GetPolicy -> DEBU 838 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 839 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83a Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83b Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83c Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83d Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83e Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 83f In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 840 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 841 In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 842 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 843 In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 844 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 845 In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 846 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 847 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 848 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 849 In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84a Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84b Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84c Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84d Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84e Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84f Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 850 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 851 In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 852 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 853 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 854 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 855 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 856 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 857 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 858 Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 859 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 85a Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 85b In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 85c Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 85d In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 85e Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 85f In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 860 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 861 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 862 Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 863 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 864 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 865 In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 866 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 867 In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 868 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 869 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 86a Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 86b In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 86c Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 86d In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 86e Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 86f In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 870 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 871 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 872 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 873 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 874 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 875 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 876 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 877 As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 878 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 879 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-04 01:50:57.346 UTC [policies] GetPolicy -> DEBU 87a Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.346 UTC [policies] CommitProposals -> DEBU 87b As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-04 01:50:57.346 UTC [policies] GetPolicy -> DEBU 87c Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:57.346 UTC [policies] CommitProposals -> DEBU 87d As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-04 01:50:57.346 UTC [policies] GetPolicy -> DEBU 87e Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:57.346 UTC [policies] CommitProposals -> DEBU 87f As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-04 01:50:57.346 UTC [policies] GetPolicy -> DEBU 880 Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:57.346 UTC [policies] CommitProposals -> DEBU 881 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-04 01:50:57.346 UTC [fsblkstorage] newBlockfileMgr -> DEBU 882 newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -orderer.example.com | 2018-01-04 01:50:57.346 UTC [kvledger.util] CreateDirIfMissing -> DEBU 883 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -orderer.example.com | 2018-01-04 01:50:57.346 UTC [kvledger.util] logDirStatus -> DEBU 884 Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -orderer.example.com | 2018-01-04 01:50:57.347 UTC [kvledger.util] logDirStatus -> DEBU 885 After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -orderer.example.com | 2018-01-04 01:50:57.349 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 886 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -orderer.example.com | 2018-01-04 01:50:57.349 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 887 status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -orderer.example.com | 2018-01-04 01:50:57.349 UTC [fsblkstorage] newBlockIndex -> DEBU 888 newBlockIndex() - indexItems:[[BlockNum]] -orderer.example.com | 2018-01-04 01:50:57.349 UTC [fsblkstorage] newBlockfileStream -> DEBU 889 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-04 01:50:57.349 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 88a Finished reading file number [0] -orderer.example.com | 2018-01-04 01:50:57.349 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 88b blockbytes [0] read from file [0] -orderer.example.com | 2018-01-04 01:50:57.351 UTC [fsblkstorage] indexBlock -> DEBU 88c Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0x61, 0xe4, 0x69, 0xf1, 0xee, 0xa5, 0x26, 0xf8, 0x82, 0xb2, 0x7f, 0xf9, 0x50, 0x2d, 0xfb, 0x67, 0xc4, 0xd7, 0xc4, 0x2b, 0xd6, 0x9c, 0x67, 0x53, 0x48, 0x11, 0x32, 0xbd, 0xf, 0xe6, 0x98} txOffsets= +orderer.example.com | 2018-01-14 11:45:32.669 UTC [msp] Validate -> DEBU 76d MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.669 UTC [common/config] Validate -> DEBU 76e Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:32.669 UTC [common/config] validateMSP -> DEBU 76f Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:32.669 UTC [msp] NewBccspMsp -> DEBU 770 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.669 UTC [msp] Setup -> DEBU 771 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:32.670 UTC [msp/identity] newIdentity -> DEBU 772 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.670 UTC [msp/identity] newIdentity -> DEBU 773 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.671 UTC [msp/identity] newIdentity -> DEBU 774 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.672 UTC [msp] Validate -> DEBU 775 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.672 UTC [msp] Setup -> DEBU 776 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:32.672 UTC [msp] Setup -> DEBU 777 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 778 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] CommitProposals -> DEBU 779 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 77a Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] CommitProposals -> DEBU 77b In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 77c Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] CommitProposals -> DEBU 77d In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 77e Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 77f Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 780 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 781 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 782 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.673 UTC [policies] CommitProposals -> DEBU 783 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 784 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 785 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 786 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 787 In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 788 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 789 In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 78a Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 78b In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 78c Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 78d In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 78e Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 78f Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 790 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 791 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 792 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 793 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 794 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] CommitProposals -> DEBU 795 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 796 Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] CommitProposals -> DEBU 797 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 798 Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.675 UTC [policies] CommitProposals -> DEBU 799 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 79a Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] CommitProposals -> DEBU 79b In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 79c Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] CommitProposals -> DEBU 79d In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 79e Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] CommitProposals -> DEBU 79f In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 7a0 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] CommitProposals -> DEBU 7a1 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 7a2 Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7a3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7a4 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7a5 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7a6 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7a7 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7a8 Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7a9 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7aa Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7ab In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7ac Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7ad In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.679 UTC [policies] GetPolicy -> DEBU 7ae Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.680 UTC [policies] CommitProposals -> DEBU 7af In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b0 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.680 UTC [policies] CommitProposals -> DEBU 7b1 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b2 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.680 UTC [policies] CommitProposals -> DEBU 7b3 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b4 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b5 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b6 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7b7 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7b8 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7b9 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7ba Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] CommitProposals -> DEBU 7bb As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7bc Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] CommitProposals -> DEBU 7bd As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7be Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] CommitProposals -> DEBU 7bf As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7c0 Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.681 UTC [policies] CommitProposals -> DEBU 7c1 As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-14 11:45:32.682 UTC [policies] GetPolicy -> DEBU 7c2 Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.682 UTC [policies] CommitProposals -> DEBU 7c3 As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-14 11:45:32.682 UTC [policies] GetPolicy -> DEBU 7c4 Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.682 UTC [policies] CommitProposals -> DEBU 7c5 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-14 11:45:32.682 UTC [orderer/common/blockcutter] Ordered -> DEBU 7c6 Found message which requested to be isolated, cutting into its own batch +orderer.example.com | 2018-01-14 11:45:32.682 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 7c7 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-14 11:45:32.682 UTC [fsblkstorage] newBlockfileStream -> DEBU 7c8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-14 11:45:32.683 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7c9 Remaining bytes=[9082], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:32.683 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7ca Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-14 11:45:32.683 UTC [common/config] NewStandardValues -> DEBU 7cb Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:32.683 UTC [common/config] initializeProtosStruct -> DEBU 7cc Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.683 UTC [common/config] initializeProtosStruct -> DEBU 7cd Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.683 UTC [common/config] initializeProtosStruct -> DEBU 7ce Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.683 UTC [common/config] initializeProtosStruct -> DEBU 7cf Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d0 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d1 Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d2 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d3 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d4 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d5 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d6 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d7 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7d8 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7d9 Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7da Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7db Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7dc Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7dd Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7de Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7df Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e0 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e1 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e2 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e3 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e5 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e6 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7e7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7e8 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7e9 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7ea Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7eb Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7ec Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7ed Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7ee Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7ef Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7f0 Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7f1 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7f2 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7f3 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-14 11:45:32.688 UTC [common/configtx] processConfig -> DEBU 7f4 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:32.688 UTC [common/config] NewStandardValues -> DEBU 7f5 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:32.688 UTC [common/config] initializeProtosStruct -> DEBU 7f6 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7f7 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7f8 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7f9 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:32.689 UTC [policies] ProposePolicy -> DEBU 7fa Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:32.689 UTC [policies] ProposePolicy -> DEBU 7fb Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:32.689 UTC [policies] ProposePolicy -> DEBU 7fc Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:32.689 UTC [common/config] NewStandardValues -> DEBU 7fd Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7fe Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7ff Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:32.690 UTC [common/config] initializeProtosStruct -> DEBU 800 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:32.690 UTC [common/config] initializeProtosStruct -> DEBU 801 Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:32.690 UTC [common/config] initializeProtosStruct -> DEBU 802 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:32.690 UTC [policies] ProposePolicy -> DEBU 803 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:32.690 UTC [policies] ProposePolicy -> DEBU 804 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:32.690 UTC [policies] ProposePolicy -> DEBU 805 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:32.690 UTC [policies] ProposePolicy -> DEBU 806 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:32.690 UTC [common/config] NewStandardValues -> DEBU 807 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.691 UTC [common/config] initializeProtosStruct -> DEBU 808 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 809 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80a Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80b Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.691 UTC [common/config] NewStandardValues -> DEBU 80c Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80d Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80e Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80f Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:32.691 UTC [common/config] NewStandardValues -> DEBU 810 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.691 UTC [common/config] initializeProtosStruct -> DEBU 811 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.691 UTC [common/config] NewStandardValues -> DEBU 812 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.691 UTC [common/config] initializeProtosStruct -> DEBU 813 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.692 UTC [common/config] NewStandardValues -> DEBU 814 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.692 UTC [common/config] initializeProtosStruct -> DEBU 815 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.692 UTC [policies] ProposePolicy -> DEBU 816 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.692 UTC [policies] ProposePolicy -> DEBU 817 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.692 UTC [policies] ProposePolicy -> DEBU 818 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.692 UTC [common/config] NewStandardValues -> DEBU 819 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.692 UTC [common/config] initializeProtosStruct -> DEBU 81a Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.692 UTC [common/config] NewStandardValues -> DEBU 81b Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:32.692 UTC [common/config] initializeProtosStruct -> DEBU 81c Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:32.692 UTC [common/config] NewStandardValues -> DEBU 81d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:32.692 UTC [common/config] initializeProtosStruct -> DEBU 81e Processing field: MSP +orderer.example.com | 2018-01-14 11:45:32.693 UTC [policies] ProposePolicy -> DEBU 81f Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.693 UTC [policies] ProposePolicy -> DEBU 820 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.693 UTC [policies] ProposePolicy -> DEBU 821 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:32.693 UTC [common/config] validateMSP -> DEBU 822 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:32.693 UTC [msp] NewBccspMsp -> DEBU 823 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.693 UTC [msp] Setup -> DEBU 824 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:32.694 UTC [msp/identity] newIdentity -> DEBU 825 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.694 UTC [msp/identity] newIdentity -> DEBU 826 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.695 UTC [msp/identity] newIdentity -> DEBU 827 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.695 UTC [msp] Validate -> DEBU 828 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:32.695 UTC [common/config] Validate -> DEBU 829 Anchor peers for org Org1MSP are +orderer.example.com | 2018-01-14 11:45:32.696 UTC [common/config] validateMSP -> DEBU 82a Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:32.696 UTC [msp] NewBccspMsp -> DEBU 82b Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.696 UTC [msp] Setup -> DEBU 82c Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:32.696 UTC [msp/identity] newIdentity -> DEBU 82d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.697 UTC [msp/identity] newIdentity -> DEBU 82e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.697 UTC [msp/identity] newIdentity -> DEBU 82f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.698 UTC [msp] Validate -> DEBU 830 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.698 UTC [common/config] Validate -> DEBU 831 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:32.698 UTC [common/config] validateMSP -> DEBU 832 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:32.698 UTC [msp] NewBccspMsp -> DEBU 833 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:32.698 UTC [msp] Setup -> DEBU 834 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:32.699 UTC [msp/identity] newIdentity -> DEBU 835 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +orderer.example.com | sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +orderer.example.com | xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +orderer.example.com | SCjyRdD3aQ== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.699 UTC [msp/identity] newIdentity -> DEBU 836 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.699 UTC [msp/identity] newIdentity -> DEBU 837 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.700 UTC [msp] Validate -> DEBU 838 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.701 UTC [msp] Setup -> DEBU 839 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:32.701 UTC [msp] Setup -> DEBU 83a MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:32.701 UTC [policies] GetPolicy -> DEBU 83b Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.701 UTC [policies] CommitProposals -> DEBU 83c In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-14 11:45:32.701 UTC [policies] GetPolicy -> DEBU 83d Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.701 UTC [policies] CommitProposals -> DEBU 83e In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-14 11:45:32.701 UTC [policies] GetPolicy -> DEBU 83f Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.701 UTC [policies] CommitProposals -> DEBU 840 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-14 11:45:32.701 UTC [policies] GetPolicy -> DEBU 841 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 842 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 843 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 844 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 845 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] CommitProposals -> DEBU 846 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 847 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] CommitProposals -> DEBU 848 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 849 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] CommitProposals -> DEBU 84a In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 84b Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] CommitProposals -> DEBU 84c In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 84d Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] CommitProposals -> DEBU 84e In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 84f Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] CommitProposals -> DEBU 850 In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 851 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 852 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 853 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 854 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 855 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 856 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 857 Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 858 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 859 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 85a In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 85b Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 85c In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 85d Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 85e In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 85f Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 860 In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 861 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 862 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 863 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 864 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 865 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 866 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 867 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 868 In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 869 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 86a In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 86b Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 86c In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 86d Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 86e In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 86f Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] CommitProposals -> DEBU 870 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 871 Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] CommitProposals -> DEBU 872 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 873 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] CommitProposals -> DEBU 874 In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 875 Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] CommitProposals -> DEBU 876 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 877 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 878 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 879 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87a Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87b Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87c Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87d Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] CommitProposals -> DEBU 87e As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87f Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] CommitProposals -> DEBU 880 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 881 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] CommitProposals -> DEBU 882 As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 883 Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:32.708 UTC [policies] CommitProposals -> DEBU 884 As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-14 11:45:32.708 UTC [policies] GetPolicy -> DEBU 885 Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:32.708 UTC [policies] CommitProposals -> DEBU 886 As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-14 11:45:32.708 UTC [policies] GetPolicy -> DEBU 887 Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:32.708 UTC [policies] CommitProposals -> DEBU 888 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-14 11:45:32.708 UTC [fsblkstorage] newBlockfileMgr -> DEBU 889 newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | 2018-01-14 11:45:32.708 UTC [kvledger.util] CreateDirIfMissing -> DEBU 88a CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +orderer.example.com | 2018-01-14 11:45:32.708 UTC [kvledger.util] logDirStatus -> DEBU 88b Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +orderer.example.com | 2018-01-14 11:45:32.709 UTC [kvledger.util] logDirStatus -> DEBU 88c After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +orderer.example.com | 2018-01-14 11:45:32.712 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 88d Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +orderer.example.com | 2018-01-14 11:45:32.712 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 88e status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +orderer.example.com | 2018-01-14 11:45:32.712 UTC [fsblkstorage] newBlockIndex -> DEBU 88f newBlockIndex() - indexItems:[[BlockNum]] +orderer.example.com | 2018-01-14 11:45:32.713 UTC [fsblkstorage] newBlockfileStream -> DEBU 890 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-14 11:45:32.713 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 891 Finished reading file number [0] +orderer.example.com | 2018-01-14 11:45:32.713 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 892 blockbytes [0] read from file [0] +orderer.example.com | 2018-01-14 11:45:32.714 UTC [fsblkstorage] indexBlock -> DEBU 893 Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0xc4, 0xf6, 0xef, 0x6e, 0xea, 0xc7, 0xd1, 0xa2, 0x1, 0xa, 0x48, 0x37, 0x3d, 0xf9, 0x14, 0x71, 0x13, 0xd2, 0x9, 0x4f, 0x96, 0x3b, 0x2c, 0xc3, 0xaf, 0xef, 0x96, 0xc4, 0x7b, 0xba, 0x6d} txOffsets= orderer.example.com | txId= locPointer=offset=38, bytesLength=11890 orderer.example.com | ] -orderer.example.com | 2018-01-04 01:50:57.351 UTC [fsblkstorage] updateCheckpoint -> DEBU 88d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11933], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | 2018-01-04 01:50:57.351 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 88e retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-04 01:50:57.351 UTC [fsblkstorage] newBlockfileStream -> DEBU 88f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-04 01:50:57.351 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 890 Remaining bytes=[11933], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:50:57.351 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 891 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-04 01:50:57.351 UTC [orderer/multichain] newChainSupport -> DEBU 892 [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): -orderer.example.com | 2018-01-04 01:50:57.352 UTC [orderer/multichain] newChain -> INFO 893 Created and starting new chain businesschannel -orderer.example.com | 2018-01-04 01:50:57.352 UTC [orderer/multichain] addBlockSignature -> DEBU 894 &{ledgerResources:0xc4201528a0 chain:0xc420152cc0 cutter:0xc4201992c0 filters:0xc420152900 signer:0x1274e88 lastConfig:0 lastConfigSeq:0} -orderer.example.com | 2018-01-04 01:50:57.352 UTC [orderer/multichain] addBlockSignature -> DEBU 895 &{} -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp] GetLocalMSP -> DEBU 896 Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp] GetDefaultSigningIdentity -> DEBU 897 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp] GetLocalMSP -> DEBU 898 Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp] GetDefaultSigningIdentity -> DEBU 899 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp/identity] Sign -> DEBU 89a Sign: plaintext: 0AFA050A0A4F7264657265724D535012...145E0DFB038FE7ED8A7F8643C7821D0B -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp/identity] Sign -> DEBU 89b Sign: digest: DC3F58AEFB5EC1CF80094E8CA4B2FC6BF8712D3E5BEFC16571F01851884A7FCD -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp] GetLocalMSP -> DEBU 89c Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp] GetDefaultSigningIdentity -> DEBU 89d Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:57.352 UTC [orderer/multichain] addLastConfigSignature -> DEBU 89e [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp] GetLocalMSP -> DEBU 89f Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:57.352 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a0 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:57.353 UTC [msp/identity] Sign -> DEBU 8a1 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...145E0DFB038FE7ED8A7F8643C7821D0B -orderer.example.com | 2018-01-04 01:50:57.353 UTC [msp/identity] Sign -> DEBU 8a2 Sign: digest: 325730C5868945790F91C3791E285931126A52EA69DAB80022628422C67C0A9F -orderer.example.com | 2018-01-04 01:50:57.354 UTC [fsblkstorage] indexBlock -> DEBU 8a3 Indexing block [blockNum=1, blockHash=[]byte{0xaf, 0x23, 0x62, 0xfd, 0xff, 0xb1, 0xdf, 0xbb, 0x98, 0x4d, 0xd8, 0x9b, 0xf0, 0x5b, 0xcc, 0x86, 0xc9, 0x2c, 0x65, 0x4c, 0x46, 0x9, 0x6, 0x47, 0x5c, 0x37, 0x27, 0x42, 0xdd, 0xd7, 0xb6, 0x64} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=12790 +orderer.example.com | 2018-01-14 11:45:32.715 UTC [fsblkstorage] updateCheckpoint -> DEBU 894 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11933], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | 2018-01-14 11:45:32.715 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 895 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-14 11:45:32.715 UTC [fsblkstorage] newBlockfileStream -> DEBU 896 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-14 11:45:32.715 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 897 Remaining bytes=[11933], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:32.715 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 898 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-14 11:45:32.715 UTC [orderer/multichain] newChainSupport -> DEBU 899 [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): +orderer.example.com | 2018-01-14 11:45:32.715 UTC [orderer/multichain] newChain -> INFO 89a Created and starting new chain businesschannel +orderer.example.com | 2018-01-14 11:45:32.716 UTC [orderer/multichain] addBlockSignature -> DEBU 89b &{ledgerResources:0xc42023a840 chain:0xc42023ac60 cutter:0xc420010b90 filters:0xc42023a8a0 signer:0x1274e88 lastConfig:0 lastConfigSeq:0} +orderer.example.com | 2018-01-14 11:45:32.716 UTC [orderer/multichain] addBlockSignature -> DEBU 89c &{} +orderer.example.com | 2018-01-14 11:45:32.716 UTC [msp] GetLocalMSP -> DEBU 89d Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.716 UTC [msp] GetDefaultSigningIdentity -> DEBU 89e Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:32.716 UTC [msp] GetLocalMSP -> DEBU 89f Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.716 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a0 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:32.716 UTC [msp/identity] Sign -> DEBU 8a1 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...CCB2FFBEAF756C1FE35264DCC1A9C917 +orderer.example.com | 2018-01-14 11:45:32.716 UTC [msp/identity] Sign -> DEBU 8a2 Sign: digest: B5CC83CA0A7B95C7903F1824B14DFE7DB296E5C065B10571721D83D40167B017 +orderer.example.com | 2018-01-14 11:45:32.716 UTC [msp] GetLocalMSP -> DEBU 8a3 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.717 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a4 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:32.717 UTC [orderer/multichain] addLastConfigSignature -> DEBU 8a5 [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +orderer.example.com | 2018-01-14 11:45:32.717 UTC [msp] GetLocalMSP -> DEBU 8a6 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:32.717 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a7 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:32.717 UTC [msp/identity] Sign -> DEBU 8a8 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...CCB2FFBEAF756C1FE35264DCC1A9C917 +orderer.example.com | 2018-01-14 11:45:32.717 UTC [msp/identity] Sign -> DEBU 8a9 Sign: digest: 3B42A1499A259A484AAB24383A840729AA165EFD8AC9513627A1A1502326F193 +orderer.example.com | 2018-01-14 11:45:32.720 UTC [fsblkstorage] indexBlock -> DEBU 8aa Indexing block [blockNum=1, blockHash=[]byte{0x17, 0xa, 0xfa, 0xca, 0x57, 0xb4, 0x56, 0x0, 0xa3, 0xe1, 0x3b, 0xe8, 0x11, 0x6d, 0x2c, 0x97, 0x9e, 0xa7, 0xe6, 0x2, 0x4c, 0x5b, 0x8a, 0xf0, 0x5a, 0xe3, 0xca, 0xba, 0xc1, 0x1d, 0x5b, 0xff} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=12791 orderer.example.com | ] -orderer.example.com | 2018-01-04 01:50:57.354 UTC [fsblkstorage] updateCheckpoint -> DEBU 8a4 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23688], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | 2018-01-04 01:50:57.354 UTC [orderer/multichain] WriteBlock -> DEBU 8a5 [channel: testchainid] Wrote block 1 -orderer.example.com | 2018-01-04 01:50:57.451 UTC [policies] GetPolicy -> DEBU 8a6 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:57.452 UTC [cauthdsl] func1 -> DEBU 8a7 0xc420027680 gate 1515030657451955600 evaluation starts -orderer.example.com | 2018-01-04 01:50:57.452 UTC [cauthdsl] func2 -> DEBU 8a8 0xc420027680 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:57.452 UTC [cauthdsl] func2 -> DEBU 8a9 0xc420027680 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:57.453 UTC [msp/identity] newIdentity -> DEBU 8aa Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.720 UTC [fsblkstorage] updateCheckpoint -> DEBU 8ab Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23688], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | 2018-01-14 11:45:32.721 UTC [orderer/multichain] WriteBlock -> DEBU 8ac [channel: testchainid] Wrote block 1 +orderer.example.com | 2018-01-14 11:45:32.783 UTC [policies] GetPolicy -> DEBU 8ad Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:32.783 UTC [cauthdsl] func1 -> DEBU 8ae 0xc420150408 gate 1515930332783291764 evaluation starts +orderer.example.com | 2018-01-14 11:45:32.783 UTC [cauthdsl] func2 -> DEBU 8af 0xc420150408 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:32.783 UTC [cauthdsl] func2 -> DEBU 8b0 0xc420150408 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:32.785 UTC [msp/identity] newIdentity -> DEBU 8b1 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11793,13 +11807,13 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.453 UTC [cauthdsl] func2 -> DEBU 8ab 0xc420027680 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | 2018-01-04 01:50:57.453 UTC [cauthdsl] func2 -> DEBU 8ac 0xc420027680 principal evaluation fails -orderer.example.com | 2018-01-04 01:50:57.453 UTC [cauthdsl] func1 -> DEBU 8ad 0xc420027680 gate 1515030657451955600 evaluation fails -orderer.example.com | 2018-01-04 01:50:57.453 UTC [cauthdsl] func1 -> DEBU 8ae 0xc420027690 gate 1515030657453814600 evaluation starts -orderer.example.com | 2018-01-04 01:50:57.453 UTC [cauthdsl] func2 -> DEBU 8af 0xc420027690 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:57.453 UTC [cauthdsl] func2 -> DEBU 8b0 0xc420027690 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:57.454 UTC [msp/identity] newIdentity -> DEBU 8b1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.789 UTC [cauthdsl] func2 -> DEBU 8b2 0xc420150408 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | 2018-01-14 11:45:32.790 UTC [cauthdsl] func2 -> DEBU 8b3 0xc420150408 principal evaluation fails +orderer.example.com | 2018-01-14 11:45:32.790 UTC [cauthdsl] func1 -> DEBU 8b4 0xc420150408 gate 1515930332783291764 evaluation fails +orderer.example.com | 2018-01-14 11:45:32.790 UTC [cauthdsl] func1 -> DEBU 8b5 0xc420150420 gate 1515930332790392664 evaluation starts +orderer.example.com | 2018-01-14 11:45:32.790 UTC [cauthdsl] func2 -> DEBU 8b6 0xc420150420 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:32.790 UTC [cauthdsl] func2 -> DEBU 8b7 0xc420150420 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:32.791 UTC [msp/identity] newIdentity -> DEBU 8b8 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11813,56 +11827,56 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:57.454 UTC [msp] SatisfiesPrincipal -> DEBU 8b2 Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-04 01:50:57.455 UTC [msp] Validate -> DEBU 8b3 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:57.455 UTC [cauthdsl] func2 -> DEBU 8b4 0xc420027690 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:57.455 UTC [msp/identity] Verify -> DEBU 8b5 Verify: digest = 00000000 c6 fe aa c5 b9 0e 2c 43 2c d7 80 fe 55 3f 85 e0 |......,C,...U?..| -orderer.example.com | 00000010 83 50 2a 82 f9 20 74 0a f1 94 d5 94 f2 98 72 e7 |.P*.. t.......r.| -orderer.example.com | 2018-01-04 01:50:57.455 UTC [msp/identity] Verify -> DEBU 8b6 Verify: sig = 00000000 30 44 02 20 5e d9 94 70 a0 62 ac 3d da 6e a7 58 |0D. ^..p.b.=.n.X| -orderer.example.com | 00000010 ad 5a 56 26 60 b6 ef 99 ff 44 09 d3 95 49 49 eb |.ZV&`....D...II.| -orderer.example.com | 00000020 dc e0 59 fe 02 20 42 a3 3f 24 4e f5 82 c0 e1 40 |..Y.. B.?$N....@| -orderer.example.com | 00000030 57 43 c5 16 5b 21 25 b0 c5 af 78 bc 7e 10 08 07 |WC..[!%...x.~...| -orderer.example.com | 00000040 3e 9f da 55 f4 3b |>..U.;| -orderer.example.com | 2018-01-04 01:50:57.456 UTC [cauthdsl] func2 -> DEBU 8b7 0xc420027690 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:50:57.456 UTC [cauthdsl] func1 -> DEBU 8b8 0xc420027690 gate 1515030657453814600 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:57.456 UTC [orderer/common/sigfilter] Apply -> DEBU 8b9 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a6d3c0 1 [0xc420027420]}) %!s(*policies.implicitMetaPolicy=&{0xc420a6db80 1 [0xc420027560 0xc4200274a0]})]} -orderer.example.com | 2018-01-04 01:50:57.456 UTC [orderer/common/deliver] Handle -> DEBU 8ba [channel: businesschannel] Received seekInfo (0xc420153d80) start: > stop: > -orderer.example.com | 2018-01-04 01:50:57.457 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8bb retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-04 01:50:57.457 UTC [fsblkstorage] newBlockfileStream -> DEBU 8bc newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-04 01:50:57.458 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8bd Remaining bytes=[11933], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:50:57.458 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8be Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-04 01:50:57.458 UTC [orderer/common/deliver] Handle -> DEBU 8bf [channel: businesschannel] Delivering block for (0xc420153d80) -orderer.example.com | 2018-01-04 01:50:57.460 UTC [orderer/common/deliver] Handle -> DEBU 8c0 [channel: businesschannel] Done delivering for (0xc420153d80), waiting for new SeekInfo -orderer.example.com | 2018-01-04 01:50:57.460 UTC [orderer/common/deliver] Handle -> DEBU 8c1 Attempting to read seek info message -orderer.example.com | 2018-01-04 01:50:57.461 UTC [orderer/common/deliver] Handle -> WARN 8c2 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:50:57.461 UTC [orderer/main] func1 -> DEBU 8c3 Closing Deliver stream -orderer.example.com | 2018-01-04 01:50:58.481 UTC [orderer/main] Deliver -> DEBU 8c4 Starting new Deliver handler -orderer.example.com | 2018-01-04 01:50:58.481 UTC [orderer/common/deliver] Handle -> DEBU 8c5 Starting new deliver loop -orderer.example.com | 2018-01-04 01:50:58.481 UTC [orderer/common/deliver] Handle -> DEBU 8c6 Attempting to read seek info message -orderer.example.com | 2018-01-04 01:50:58.494 UTC [orderer/main] Broadcast -> DEBU 8c7 Starting new Broadcast handler -orderer.example.com | 2018-01-04 01:50:58.494 UTC [orderer/common/broadcast] Handle -> DEBU 8c8 Starting new broadcast loop -orderer.example.com | 2018-01-04 01:50:58.494 UTC [orderer/common/broadcast] Handle -> DEBU 8c9 Preprocessing CONFIG_UPDATE -orderer.example.com | 2018-01-04 01:50:58.494 UTC [orderer/configupdate] Process -> DEBU 8ca Processing channel reconfiguration request for channel businesschannel -orderer.example.com | 2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8cb Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8cc Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8cd Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8ce Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8cf Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8d0 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d1 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d2 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d3 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d4 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d5 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.497 UTC [common/configtx] addToMap -> DEBU 8d6 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.497 UTC [common/configtx] addToMap -> DEBU 8d7 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.497 UTC [common/configtx] addToMap -> DEBU 8d8 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.497 UTC [common/configtx] addToMap -> DEBU 8d9 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.497 UTC [policies] GetPolicy -> DEBU 8da Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.497 UTC [cauthdsl] func1 -> DEBU 8db 0xc42010e710 gate 1515030658497619000 evaluation starts -orderer.example.com | 2018-01-04 01:50:58.497 UTC [cauthdsl] func2 -> DEBU 8dc 0xc42010e710 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:58.497 UTC [cauthdsl] func2 -> DEBU 8dd 0xc42010e710 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:58.498 UTC [msp/identity] newIdentity -> DEBU 8de Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:32.791 UTC [msp] SatisfiesPrincipal -> DEBU 8b9 Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-14 11:45:32.791 UTC [msp] Validate -> DEBU 8ba MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:32.791 UTC [cauthdsl] func2 -> DEBU 8bb 0xc420150420 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:32.792 UTC [msp/identity] Verify -> DEBU 8bc Verify: digest = 00000000 09 58 47 2b 22 7a 9d ee 1a ca 00 e9 d2 b2 5d f2 |.XG+"z........].| +orderer.example.com | 00000010 d1 c6 37 a4 a2 0c 0e d5 58 01 43 3b 6d df bb 94 |..7.....X.C;m...| +orderer.example.com | 2018-01-14 11:45:32.792 UTC [msp/identity] Verify -> DEBU 8bd Verify: sig = 00000000 30 44 02 20 34 59 b1 57 b9 7b 74 62 96 17 62 5e |0D. 4Y.W.{tb..b^| +orderer.example.com | 00000010 86 00 be 31 18 9e 8d 0c f0 da 6f b6 1a 8e 30 c8 |...1......o...0.| +orderer.example.com | 00000020 f7 33 a2 a7 02 20 1c f9 d7 9c 62 82 40 0d 1c 6a |.3... ....b.@..j| +orderer.example.com | 00000030 9d 6f 30 36 c6 29 8c c6 d0 4a 7e 9f 2e 86 fb 42 |.o06.)...J~....B| +orderer.example.com | 00000040 10 f4 86 fc 7d cb |....}.| +orderer.example.com | 2018-01-14 11:45:32.792 UTC [cauthdsl] func2 -> DEBU 8be 0xc420150420 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:32.792 UTC [cauthdsl] func1 -> DEBU 8bf 0xc420150420 gate 1515930332790392664 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:32.792 UTC [orderer/common/sigfilter] Apply -> DEBU 8c0 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420281d40 1 [0xc420151708]}) %!s(*policies.implicitMetaPolicy=&{0xc42081c4c0 1 [0xc4201517b0 0xc420151898]})]} +orderer.example.com | 2018-01-14 11:45:32.793 UTC [orderer/common/deliver] Handle -> DEBU 8c1 [channel: businesschannel] Received seekInfo (0xc4208ddfa0) start: > stop: > +orderer.example.com | 2018-01-14 11:45:32.793 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8c2 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-14 11:45:32.793 UTC [fsblkstorage] newBlockfileStream -> DEBU 8c3 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-14 11:45:32.793 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8c4 Remaining bytes=[11933], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:32.793 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8c5 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-14 11:45:32.794 UTC [orderer/common/deliver] Handle -> DEBU 8c6 [channel: businesschannel] Delivering block for (0xc4208ddfa0) +orderer.example.com | 2018-01-14 11:45:32.794 UTC [orderer/common/deliver] Handle -> DEBU 8c7 [channel: businesschannel] Done delivering for (0xc4208ddfa0), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:45:32.794 UTC [orderer/common/deliver] Handle -> DEBU 8c8 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:45:32.795 UTC [orderer/common/deliver] Handle -> WARN 8c9 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:45:32.795 UTC [orderer/main] func1 -> DEBU 8ca Closing Deliver stream +orderer.example.com | 2018-01-14 11:45:34.097 UTC [orderer/main] Deliver -> DEBU 8cb Starting new Deliver handler +orderer.example.com | 2018-01-14 11:45:34.097 UTC [orderer/common/deliver] Handle -> DEBU 8cc Starting new deliver loop +orderer.example.com | 2018-01-14 11:45:34.098 UTC [orderer/common/deliver] Handle -> DEBU 8cd Attempting to read seek info message +orderer.example.com | 2018-01-14 11:45:34.115 UTC [orderer/main] Broadcast -> DEBU 8ce Starting new Broadcast handler +orderer.example.com | 2018-01-14 11:45:34.115 UTC [orderer/common/broadcast] Handle -> DEBU 8cf Starting new broadcast loop +orderer.example.com | 2018-01-14 11:45:34.115 UTC [orderer/common/broadcast] Handle -> DEBU 8d0 Preprocessing CONFIG_UPDATE +orderer.example.com | 2018-01-14 11:45:34.115 UTC [orderer/configupdate] Process -> DEBU 8d1 Processing channel reconfiguration request for channel businesschannel +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d2 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d3 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d4 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d5 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d6 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d7 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d8 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d9 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8da Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8db Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8dc Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8dd Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8de Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8df Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8e0 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.117 UTC [policies] GetPolicy -> DEBU 8e1 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.117 UTC [cauthdsl] func1 -> DEBU 8e2 0xc420026298 gate 1515930334117816964 evaluation starts +orderer.example.com | 2018-01-14 11:45:34.117 UTC [cauthdsl] func2 -> DEBU 8e3 0xc420026298 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:34.117 UTC [cauthdsl] func2 -> DEBU 8e4 0xc420026298 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:34.118 UTC [msp/identity] newIdentity -> DEBU 8e5 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -11876,135 +11890,131 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.498 UTC [msp] SatisfiesPrincipal -> DEBU 8df Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.498 UTC [cauthdsl] func2 -> DEBU 8e0 0xc42010e710 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:58.498 UTC [msp/identity] Verify -> DEBU 8e1 Verify: digest = 00000000 81 df 61 35 fa ff e7 18 82 38 33 4a db 00 28 a6 |..a5.....83J..(.| -orderer.example.com | 00000010 60 1b 23 f0 41 df ba 4c 59 1b 98 cb 00 53 2a 5c |`.#.A..LY....S*\| -orderer.example.com | 2018-01-04 01:50:58.498 UTC [msp/identity] Verify -> DEBU 8e2 Verify: sig = 00000000 30 45 02 21 00 9a 5c 7e 83 cb 71 73 ee 9d c4 eb |0E.!..\~..qs....| -orderer.example.com | 00000010 fc 9f 9d 1b ea 3b c8 6f f9 f1 ef c3 19 01 93 d3 |.....;.o........| -orderer.example.com | 00000020 9a c3 b0 19 57 02 20 25 ce 5d 43 30 69 13 f7 3d |....W. %.]C0i..=| -orderer.example.com | 00000030 ad bf 32 f0 61 da 4f 7b 36 6f 92 19 eb d8 85 44 |..2.a.O{6o.....D| -orderer.example.com | 00000040 69 1c 61 35 bb e2 7c |i.a5..|| -orderer.example.com | 2018-01-04 01:50:58.499 UTC [cauthdsl] func2 -> DEBU 8e3 0xc42010e710 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:50:58.499 UTC [cauthdsl] func1 -> DEBU 8e4 0xc42010e710 gate 1515030658497619000 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:58.499 UTC [common/configtx] recurseConfigMap -> DEBU 8e5 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.499 UTC [common/configtx] recurseConfigMap -> DEBU 8e6 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.499 UTC [common/configtx] recurseConfigMap -> DEBU 8e7 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8e8 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8e9 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ea Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8eb Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ec Setting policy for key Readers to -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ed Setting policy for key Writers to -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ee Setting policy for key Admins to -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ef Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f0 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f1 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f2 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f3 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f4 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/configtx] recurseConfigMap -> DEBU 8f5 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/configtx] recurseConfigMap -> DEBU 8f6 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/configtx] recurseConfigMap -> DEBU 8f7 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/configtx] processConfig -> DEBU 8f8 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 8f9 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 8fa Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 8fb Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 8fc Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 8fd Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 8fe Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 8ff Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 900 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 901 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 902 Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 903 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 904 Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 905 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 906 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 907 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 908 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 909 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 90a Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 90b Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 90c Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 90d Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 90e Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 90f Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 910 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 911 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 912 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 913 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 914 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 915 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 916 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 917 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 918 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 919 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 91a Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 91b Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 91c Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 91d Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 91e Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 91f Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 920 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 921 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 922 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 923 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 924 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 925 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] Validate -> DEBU 926 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:50:58.502 UTC [common/config] validateMSP -> DEBU 927 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:58.503 UTC [msp] NewBccspMsp -> DEBU 928 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.503 UTC [msp] Setup -> DEBU 929 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:58.503 UTC [msp/identity] newIdentity -> DEBU 92a Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | 2018-01-14 11:45:34.118 UTC [msp] SatisfiesPrincipal -> DEBU 8e6 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.118 UTC [cauthdsl] func2 -> DEBU 8e7 0xc420026298 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:34.118 UTC [msp/identity] Verify -> DEBU 8e8 Verify: digest = 00000000 82 fb fd 83 69 c5 26 65 8c 81 84 d4 ec fa 4b f6 |....i.&e......K.| +orderer.example.com | 00000010 62 bc 1e e7 8c 40 40 34 9a a2 38 fe 25 1c e9 18 |b....@@4..8.%...| +orderer.example.com | 2018-01-14 11:45:34.118 UTC [msp/identity] Verify -> DEBU 8e9 Verify: sig = 00000000 30 44 02 20 07 5e 0c d0 f8 af 0d f4 c4 a7 15 b4 |0D. .^..........| +orderer.example.com | 00000010 7e ac 2c 65 12 59 f4 52 7e 9b ac 57 e5 62 42 f8 |~.,e.Y.R~..W.bB.| +orderer.example.com | 00000020 17 16 b6 5b 02 20 4d 1b d2 3f 25 17 87 25 65 5e |...[. M..?%..%e^| +orderer.example.com | 00000030 c0 b4 50 38 12 e9 bd 30 be 19 88 21 85 bd 91 55 |..P8...0...!...U| +orderer.example.com | 00000040 ff 48 68 db 65 fb |.Hh.e.| +orderer.example.com | 2018-01-14 11:45:34.119 UTC [cauthdsl] func2 -> DEBU 8ea 0xc420026298 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:34.119 UTC [cauthdsl] func1 -> DEBU 8eb 0xc420026298 gate 1515930334117816964 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8ec Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8ed Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8ee Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8ef Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8f0 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8f1 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8f2 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f3 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f4 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f5 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f6 Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f7 Setting policy for key Writers to +orderer.example.com | 2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f8 Setting policy for key Admins to +orderer.example.com | 2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f9 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8fa Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/configtx] recurseConfigMap -> DEBU 8fb Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/configtx] recurseConfigMap -> DEBU 8fc Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/configtx] recurseConfigMap -> DEBU 8fd Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/configtx] recurseConfigMap -> DEBU 8fe Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/configtx] processConfig -> DEBU 8ff Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/config] NewStandardValues -> DEBU 900 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/config] initializeProtosStruct -> DEBU 901 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/config] initializeProtosStruct -> DEBU 902 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/config] initializeProtosStruct -> DEBU 903 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:34.121 UTC [common/config] initializeProtosStruct -> DEBU 904 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 905 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 906 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 907 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:34.122 UTC [common/config] NewStandardValues -> DEBU 908 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 909 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 90a Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 90b Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 90c Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 90d Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 90e Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 90f Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 910 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 911 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:34.122 UTC [common/config] NewStandardValues -> DEBU 912 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 913 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 914 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 915 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 916 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.123 UTC [common/config] NewStandardValues -> DEBU 917 Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 918 Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 919 Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 91a Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:34.123 UTC [common/config] NewStandardValues -> DEBU 91b Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.123 UTC [common/config] initializeProtosStruct -> DEBU 91c Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.123 UTC [common/config] NewStandardValues -> DEBU 91d Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:34.123 UTC [common/config] initializeProtosStruct -> DEBU 91e Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.123 UTC [common/config] NewStandardValues -> DEBU 91f Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.123 UTC [common/config] initializeProtosStruct -> DEBU 920 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 921 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 922 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 923 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.124 UTC [common/config] NewStandardValues -> DEBU 924 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.124 UTC [common/config] initializeProtosStruct -> DEBU 925 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.124 UTC [common/config] NewStandardValues -> DEBU 926 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:34.124 UTC [common/config] initializeProtosStruct -> DEBU 927 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.124 UTC [common/config] NewStandardValues -> DEBU 928 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.124 UTC [common/config] initializeProtosStruct -> DEBU 929 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.124 UTC [policies] ProposePolicy -> DEBU 92a Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.124 UTC [policies] ProposePolicy -> DEBU 92b Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.124 UTC [policies] ProposePolicy -> DEBU 92c Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.124 UTC [common/config] validateMSP -> DEBU 92d Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.124 UTC [msp] NewBccspMsp -> DEBU 92e Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.124 UTC [msp] Setup -> DEBU 92f Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:34.125 UTC [msp/identity] newIdentity -> DEBU 930 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.503 UTC [msp/identity] newIdentity -> DEBU 92b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | 2018-01-14 11:45:34.125 UTC [msp/identity] newIdentity -> DEBU 931 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.503 UTC [msp/identity] newIdentity -> DEBU 92c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | 2018-01-14 11:45:34.126 UTC [msp/identity] newIdentity -> DEBU 932 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.504 UTC [msp] Validate -> DEBU 92d MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:58.504 UTC [common/config] Validate -> DEBU 92e Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:58.504 UTC [common/config] validateMSP -> DEBU 92f Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:58.504 UTC [msp] NewBccspMsp -> DEBU 930 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.504 UTC [msp] Setup -> DEBU 931 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:58.504 UTC [msp/identity] newIdentity -> DEBU 932 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.127 UTC [msp] Validate -> DEBU 933 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:34.128 UTC [common/config] Validate -> DEBU 934 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:34.128 UTC [common/config] validateMSP -> DEBU 935 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:34.128 UTC [msp] NewBccspMsp -> DEBU 936 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.128 UTC [msp] Setup -> DEBU 937 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:34.134 UTC [msp/identity] newIdentity -> DEBU 938 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -12019,7 +12029,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.504 UTC [msp/identity] newIdentity -> DEBU 933 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.135 UTC [msp/identity] newIdentity -> DEBU 939 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12033,7 +12043,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.505 UTC [msp/identity] newIdentity -> DEBU 934 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.138 UTC [msp/identity] newIdentity -> DEBU 93a Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12047,65 +12057,69 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.505 UTC [msp] Validate -> DEBU 935 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:58.505 UTC [common/config] validateMSP -> DEBU 936 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.506 UTC [msp] NewBccspMsp -> DEBU 937 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.506 UTC [msp] Setup -> DEBU 938 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:50:58.506 UTC [msp/identity] newIdentity -> DEBU 939 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | 2018-01-14 11:45:34.139 UTC [msp] Validate -> DEBU 93b MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:34.139 UTC [common/config] Validate -> DEBU 93c Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:34.139 UTC [common/config] validateMSP -> DEBU 93d Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:34.139 UTC [msp] NewBccspMsp -> DEBU 93e Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.139 UTC [msp] Setup -> DEBU 93f Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:34.140 UTC [msp/identity] newIdentity -> DEBU 940 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.506 UTC [msp/identity] newIdentity -> DEBU 93a Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | 2018-01-14 11:45:34.140 UTC [msp/identity] newIdentity -> DEBU 941 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.506 UTC [msp/identity] newIdentity -> DEBU 93b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | 2018-01-14 11:45:34.141 UTC [msp/identity] newIdentity -> DEBU 942 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp] Validate -> DEBU 93c MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp] Setup -> DEBU 93d Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp] Setup -> DEBU 93e MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp] GetLocalMSP -> DEBU 93f Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp] GetDefaultSigningIdentity -> DEBU 940 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp] GetLocalMSP -> DEBU 941 Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp] GetDefaultSigningIdentity -> DEBU 942 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp/identity] Sign -> DEBU 943 Sign: plaintext: 0AB7060A1B08011A06088291B6D20522...507791B70F73D1AC4D615F0EB303F189 -orderer.example.com | 2018-01-04 01:50:58.507 UTC [msp/identity] Sign -> DEBU 944 Sign: digest: 6100EB76DAB7F5DF0A43437C87BE06801BF63F78617623BE41FADEA312A38D4C -orderer.example.com | 2018-01-04 01:50:58.507 UTC [orderer/common/broadcast] Handle -> DEBU 945 [channel: businesschannel] Broadcast is filtering message of type CONFIG -orderer.example.com | 2018-01-04 01:50:58.508 UTC [policies] GetPolicy -> DEBU 946 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.508 UTC [cauthdsl] func1 -> DEBU 947 0xc42010ead8 gate 1515030658508053200 evaluation starts -orderer.example.com | 2018-01-04 01:50:58.508 UTC [cauthdsl] func2 -> DEBU 948 0xc42010ead8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:58.508 UTC [cauthdsl] func2 -> DEBU 949 0xc42010ead8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:58.508 UTC [msp/identity] newIdentity -> DEBU 94a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.142 UTC [msp] Validate -> DEBU 943 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:34.143 UTC [msp] Setup -> DEBU 944 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:34.143 UTC [msp] Setup -> DEBU 945 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:34.143 UTC [msp] GetLocalMSP -> DEBU 946 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:34.143 UTC [msp] GetDefaultSigningIdentity -> DEBU 947 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:34.144 UTC [msp] GetLocalMSP -> DEBU 948 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:34.144 UTC [msp] GetDefaultSigningIdentity -> DEBU 949 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:34.144 UTC [msp/identity] Sign -> DEBU 94a Sign: plaintext: 0AB7060A1B08011A0608DE85EDD20522...093D4D230796B352804925AFF5337E05 +orderer.example.com | 2018-01-14 11:45:34.144 UTC [msp/identity] Sign -> DEBU 94b Sign: digest: F1B25808885E3AB4314C117D549DE111496F0FD071A36867C62BF76D625BABE7 +orderer.example.com | 2018-01-14 11:45:34.144 UTC [orderer/common/broadcast] Handle -> DEBU 94c [channel: businesschannel] Broadcast is filtering message of type CONFIG +orderer.example.com | 2018-01-14 11:45:34.144 UTC [policies] GetPolicy -> DEBU 94d Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.145 UTC [cauthdsl] func1 -> DEBU 94e 0xc420026660 gate 1515930334145019964 evaluation starts +orderer.example.com | 2018-01-14 11:45:34.145 UTC [cauthdsl] func2 -> DEBU 94f 0xc420026660 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:34.145 UTC [cauthdsl] func2 -> DEBU 950 0xc420026660 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:34.145 UTC [msp/identity] newIdentity -> DEBU 951 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -12118,39 +12132,39 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.508 UTC [msp] SatisfiesPrincipal -> DEBU 94b Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-04 01:50:58.508 UTC [msp] Validate -> DEBU 94c MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:58.508 UTC [cauthdsl] func2 -> DEBU 94d 0xc42010ead8 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:58.508 UTC [msp/identity] Verify -> DEBU 94e Verify: digest = 00000000 61 00 eb 76 da b7 f5 df 0a 43 43 7c 87 be 06 80 |a..v.....CC|....| -orderer.example.com | 00000010 1b f6 3f 78 61 76 23 be 41 fa de a3 12 a3 8d 4c |..?xav#.A......L| -orderer.example.com | 2018-01-04 01:50:58.508 UTC [msp/identity] Verify -> DEBU 94f Verify: sig = 00000000 30 44 02 20 57 eb a6 90 4f 87 ac b1 4a a3 5d e3 |0D. W...O...J.].| -orderer.example.com | 00000010 48 cf be 73 b9 5f 5b 10 77 5f 3d b4 90 18 e2 f4 |H..s._[.w_=.....| -orderer.example.com | 00000020 3e 35 35 56 02 20 15 53 cb 9f 52 03 92 cd 9f 8c |>55V. .S..R.....| -orderer.example.com | 00000030 2b 6f 65 17 8f 7a ff 09 e6 d2 7a a1 40 c3 26 eb |+oe..z....z.@.&.| -orderer.example.com | 00000040 76 f3 a7 a6 7d 40 |v...}@| -orderer.example.com | 2018-01-04 01:50:58.508 UTC [cauthdsl] func2 -> DEBU 950 0xc42010ead8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:50:58.509 UTC [cauthdsl] func1 -> DEBU 951 0xc42010ead8 gate 1515030658508053200 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:58.509 UTC [orderer/common/sigfilter] Apply -> DEBU 952 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a6d440 1 [0xc4200273d0]}) %!s(*policies.implicitMetaPolicy=&{0xc420a6db00 1 [0xc4200274c8 0xc420027510]})]} -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 953 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 954 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 955 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 956 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 957 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 958 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 959 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95a Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95b Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95c Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95d Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 960 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 961 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.509 UTC [policies] GetPolicy -> DEBU 962 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.509 UTC [cauthdsl] func1 -> DEBU 963 0xc42010f090 gate 1515030658509958300 evaluation starts -orderer.example.com | 2018-01-04 01:50:58.509 UTC [cauthdsl] func2 -> DEBU 964 0xc42010f090 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:58.510 UTC [cauthdsl] func2 -> DEBU 965 0xc42010f090 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:58.510 UTC [msp/identity] newIdentity -> DEBU 966 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.145 UTC [msp] SatisfiesPrincipal -> DEBU 952 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:45:34.145 UTC [msp] Validate -> DEBU 953 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:34.146 UTC [cauthdsl] func2 -> DEBU 954 0xc420026660 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:34.146 UTC [msp/identity] Verify -> DEBU 955 Verify: digest = 00000000 f1 b2 58 08 88 5e 3a b4 31 4c 11 7d 54 9d e1 11 |..X..^:.1L.}T...| +orderer.example.com | 00000010 49 6f 0f d0 71 a3 68 67 c6 2b f7 6d 62 5b ab e7 |Io..q.hg.+.mb[..| +orderer.example.com | 2018-01-14 11:45:34.146 UTC [msp/identity] Verify -> DEBU 956 Verify: sig = 00000000 30 44 02 20 1a 51 8b 92 3d 61 41 ac af 04 cd 3c |0D. .Q..=aA....<| +orderer.example.com | 00000010 3a 08 c2 ec 5c 03 5c d7 0f c7 60 12 44 58 bc a0 |:...\.\...`.DX..| +orderer.example.com | 00000020 6f 1f fb cc 02 20 42 41 50 ed b9 5e 36 44 2b 74 |o.... BAP..^6D+t| +orderer.example.com | 00000030 d3 4f 56 c4 c1 20 aa 0a 85 af 9e 66 fb cf 10 d9 |.OV.. .....f....| +orderer.example.com | 00000040 8c 97 95 0c 66 a7 |....f.| +orderer.example.com | 2018-01-14 11:45:34.146 UTC [cauthdsl] func2 -> DEBU 957 0xc420026660 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:34.146 UTC [cauthdsl] func1 -> DEBU 958 0xc420026660 gate 1515930334145019964 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:34.146 UTC [orderer/common/sigfilter] Apply -> DEBU 959 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420281dc0 1 [0xc420151730]}) %!s(*policies.implicitMetaPolicy=&{0xc42081c440 1 [0xc4201517d8 0xc420151848]})]} +orderer.example.com | 2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95a Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95b Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95c Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95e Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 95f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 960 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 961 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 962 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 963 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 964 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 965 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.148 UTC [common/configtx] addToMap -> DEBU 966 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.148 UTC [common/configtx] addToMap -> DEBU 967 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.148 UTC [common/configtx] addToMap -> DEBU 968 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.148 UTC [policies] GetPolicy -> DEBU 969 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.148 UTC [cauthdsl] func1 -> DEBU 96a 0xc420026c18 gate 1515930334148609764 evaluation starts +orderer.example.com | 2018-01-14 11:45:34.148 UTC [cauthdsl] func2 -> DEBU 96b 0xc420026c18 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:34.148 UTC [cauthdsl] func2 -> DEBU 96c 0xc420026c18 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:34.149 UTC [msp/identity] newIdentity -> DEBU 96d Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12164,87 +12178,131 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.510 UTC [msp] SatisfiesPrincipal -> DEBU 967 Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.510 UTC [cauthdsl] func2 -> DEBU 968 0xc42010f090 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:58.510 UTC [msp/identity] Verify -> DEBU 969 Verify: digest = 00000000 81 df 61 35 fa ff e7 18 82 38 33 4a db 00 28 a6 |..a5.....83J..(.| -orderer.example.com | 00000010 60 1b 23 f0 41 df ba 4c 59 1b 98 cb 00 53 2a 5c |`.#.A..LY....S*\| -orderer.example.com | 2018-01-04 01:50:58.510 UTC [msp/identity] Verify -> DEBU 96a Verify: sig = 00000000 30 45 02 21 00 9a 5c 7e 83 cb 71 73 ee 9d c4 eb |0E.!..\~..qs....| -orderer.example.com | 00000010 fc 9f 9d 1b ea 3b c8 6f f9 f1 ef c3 19 01 93 d3 |.....;.o........| -orderer.example.com | 00000020 9a c3 b0 19 57 02 20 25 ce 5d 43 30 69 13 f7 3d |....W. %.]C0i..=| -orderer.example.com | 00000030 ad bf 32 f0 61 da 4f 7b 36 6f 92 19 eb d8 85 44 |..2.a.O{6o.....D| -orderer.example.com | 00000040 69 1c 61 35 bb e2 7c |i.a5..|| -orderer.example.com | 2018-01-04 01:50:58.510 UTC [cauthdsl] func2 -> DEBU 96b 0xc42010f090 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:50:58.510 UTC [cauthdsl] func1 -> DEBU 96c 0xc42010f090 gate 1515030658509958300 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:58.510 UTC [common/configtx] recurseConfigMap -> DEBU 96d Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.510 UTC [common/configtx] recurseConfigMap -> DEBU 96e Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.510 UTC [common/configtx] recurseConfigMap -> DEBU 96f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.510 UTC [common/configtx] recurseConfigMap -> DEBU 970 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 971 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 972 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 973 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 974 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 975 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 976 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 977 Setting policy for key Readers to -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 978 Setting policy for key Writers to -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 979 Setting policy for key Admins to -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97a Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97b Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97c Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97d Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97e Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97f Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/configtx] processConfig -> DEBU 980 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/config] NewStandardValues -> DEBU 981 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/config] initializeProtosStruct -> DEBU 982 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/config] initializeProtosStruct -> DEBU 983 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/config] initializeProtosStruct -> DEBU 984 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:58.511 UTC [common/config] initializeProtosStruct -> DEBU 985 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 986 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 987 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 988 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 989 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 98a Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 98b Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 98c Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 98d Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 98e Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 98f Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 990 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 991 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 992 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 993 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 994 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 995 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 996 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 997 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 998 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 999 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 99a Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 99b Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 99c Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 99d Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 99e Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 99f Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 9a0 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 9a1 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 9a2 Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 9a3 Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:58.513 UTC [common/config] initializeProtosStruct -> DEBU 9a4 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9a5 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9a6 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9a7 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9a8 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:58.513 UTC [common/config] NewStandardValues -> DEBU 9a9 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.513 UTC [common/config] initializeProtosStruct -> DEBU 9aa Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9ab Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9ac Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9ad Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.513 UTC [common/config] Validate -> DEBU 9ae Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:50:58.513 UTC [common/config] validateMSP -> DEBU 9af Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:58.513 UTC [msp] NewBccspMsp -> DEBU 9b0 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.513 UTC [msp] Setup -> DEBU 9b1 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:58.513 UTC [msp/identity] newIdentity -> DEBU 9b2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.149 UTC [msp] SatisfiesPrincipal -> DEBU 96e Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.149 UTC [cauthdsl] func2 -> DEBU 96f 0xc420026c18 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:34.149 UTC [msp/identity] Verify -> DEBU 970 Verify: digest = 00000000 82 fb fd 83 69 c5 26 65 8c 81 84 d4 ec fa 4b f6 |....i.&e......K.| +orderer.example.com | 00000010 62 bc 1e e7 8c 40 40 34 9a a2 38 fe 25 1c e9 18 |b....@@4..8.%...| +orderer.example.com | 2018-01-14 11:45:34.149 UTC [msp/identity] Verify -> DEBU 971 Verify: sig = 00000000 30 44 02 20 07 5e 0c d0 f8 af 0d f4 c4 a7 15 b4 |0D. .^..........| +orderer.example.com | 00000010 7e ac 2c 65 12 59 f4 52 7e 9b ac 57 e5 62 42 f8 |~.,e.Y.R~..W.bB.| +orderer.example.com | 00000020 17 16 b6 5b 02 20 4d 1b d2 3f 25 17 87 25 65 5e |...[. M..?%..%e^| +orderer.example.com | 00000030 c0 b4 50 38 12 e9 bd 30 be 19 88 21 85 bd 91 55 |..P8...0...!...U| +orderer.example.com | 00000040 ff 48 68 db 65 fb |.Hh.e.| +orderer.example.com | 2018-01-14 11:45:34.149 UTC [cauthdsl] func2 -> DEBU 972 0xc420026c18 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:34.150 UTC [cauthdsl] func1 -> DEBU 973 0xc420026c18 gate 1515930334148609764 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 974 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 975 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 976 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 977 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 978 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 979 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 97a Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97b Setting policy for key Writers to +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97c Setting policy for key Admins to +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97d Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97e Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97f Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 980 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 981 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 982 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 983 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/configtx] recurseConfigMap -> DEBU 984 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/configtx] recurseConfigMap -> DEBU 985 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/configtx] recurseConfigMap -> DEBU 986 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/configtx] processConfig -> DEBU 987 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/config] NewStandardValues -> DEBU 988 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/config] initializeProtosStruct -> DEBU 989 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/config] initializeProtosStruct -> DEBU 98a Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/config] initializeProtosStruct -> DEBU 98b Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:34.152 UTC [common/config] initializeProtosStruct -> DEBU 98c Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:34.152 UTC [policies] ProposePolicy -> DEBU 98d Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:34.152 UTC [policies] ProposePolicy -> DEBU 98e Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:34.152 UTC [policies] ProposePolicy -> DEBU 98f Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:34.153 UTC [common/config] NewStandardValues -> DEBU 990 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 991 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 992 Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 993 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 994 Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 995 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:34.153 UTC [policies] ProposePolicy -> DEBU 996 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:34.153 UTC [policies] ProposePolicy -> DEBU 997 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 998 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 999 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:34.154 UTC [common/config] NewStandardValues -> DEBU 99a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.154 UTC [common/config] initializeProtosStruct -> DEBU 99b Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 99c Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 99d Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 99e Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.154 UTC [common/config] NewStandardValues -> DEBU 99f Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 9a0 Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 9a1 Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:34.155 UTC [policies] ProposePolicy -> DEBU 9a2 Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9a3 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9a4 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9a5 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9a6 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9a7 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9a8 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.155 UTC [policies] ProposePolicy -> DEBU 9a9 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.155 UTC [policies] ProposePolicy -> DEBU 9aa Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.155 UTC [policies] ProposePolicy -> DEBU 9ab Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9ac Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9ad Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9ae Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9af Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9b0 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9b1 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.156 UTC [policies] ProposePolicy -> DEBU 9b2 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.156 UTC [policies] ProposePolicy -> DEBU 9b3 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.156 UTC [policies] ProposePolicy -> DEBU 9b4 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.156 UTC [common/config] validateMSP -> DEBU 9b5 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.156 UTC [msp] NewBccspMsp -> DEBU 9b6 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.156 UTC [msp] Setup -> DEBU 9b7 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:34.156 UTC [msp/identity] newIdentity -> DEBU 9b8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.157 UTC [msp/identity] newIdentity -> DEBU 9b9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.157 UTC [msp/identity] newIdentity -> DEBU 9ba Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.158 UTC [msp] Validate -> DEBU 9bb MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:34.158 UTC [common/config] Validate -> DEBU 9bc Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:34.158 UTC [common/config] validateMSP -> DEBU 9bd Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:34.158 UTC [msp] NewBccspMsp -> DEBU 9be Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.158 UTC [msp] Setup -> DEBU 9bf Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:34.159 UTC [msp/identity] newIdentity -> DEBU 9c0 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12259,7 +12317,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.513 UTC [msp/identity] newIdentity -> DEBU 9b3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.160 UTC [msp/identity] newIdentity -> DEBU 9c1 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12273,7 +12331,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.514 UTC [msp/identity] newIdentity -> DEBU 9b4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.160 UTC [msp/identity] newIdentity -> DEBU 9c2 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12287,12 +12345,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.514 UTC [msp] Validate -> DEBU 9b5 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:58.514 UTC [common/config] Validate -> DEBU 9b6 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:58.514 UTC [common/config] validateMSP -> DEBU 9b7 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:58.514 UTC [msp] NewBccspMsp -> DEBU 9b8 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.514 UTC [msp] Setup -> DEBU 9b9 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:58.514 UTC [msp/identity] newIdentity -> DEBU 9ba Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.161 UTC [msp] Validate -> DEBU 9c3 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:34.161 UTC [common/config] Validate -> DEBU 9c4 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:34.161 UTC [common/config] validateMSP -> DEBU 9c5 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:34.161 UTC [msp] NewBccspMsp -> DEBU 9c6 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.162 UTC [msp] Setup -> DEBU 9c7 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:34.162 UTC [msp/identity] newIdentity -> DEBU 9c8 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -12307,7 +12365,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.515 UTC [msp/identity] newIdentity -> DEBU 9bb Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.163 UTC [msp/identity] newIdentity -> DEBU 9c9 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12321,7 +12379,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.515 UTC [msp/identity] newIdentity -> DEBU 9bc Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.164 UTC [msp/identity] newIdentity -> DEBU 9ca Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12335,59 +12393,15 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.516 UTC [msp] Validate -> DEBU 9bd MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:58.516 UTC [common/config] validateMSP -> DEBU 9be Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.516 UTC [msp] NewBccspMsp -> DEBU 9bf Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.516 UTC [msp] Setup -> DEBU 9c0 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:50:58.517 UTC [msp/identity] newIdentity -> DEBU 9c1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.517 UTC [msp/identity] newIdentity -> DEBU 9c2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.517 UTC [msp/identity] newIdentity -> DEBU 9c3 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.518 UTC [msp] Validate -> DEBU 9c4 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:58.519 UTC [msp] Setup -> DEBU 9c5 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:58.519 UTC [msp] Setup -> DEBU 9c6 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:58.519 UTC [orderer/common/broadcast] Handle -> DEBU 9c7 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -orderer.example.com | 2018-01-04 01:50:58.519 UTC [policies] GetPolicy -> DEBU 9c8 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.519 UTC [cauthdsl] func1 -> DEBU 9c9 0xc420026028 gate 1515030658519761300 evaluation starts -orderer.example.com | 2018-01-04 01:50:58.519 UTC [cauthdsl] func2 -> DEBU 9ca 0xc420026028 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:58.519 UTC [cauthdsl] func2 -> DEBU 9cb 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:58.520 UTC [msp/identity] newIdentity -> DEBU 9cc Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.164 UTC [msp] Validate -> DEBU 9cb MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:34.165 UTC [msp] Setup -> DEBU 9cc Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:34.165 UTC [msp] Setup -> DEBU 9cd MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:34.165 UTC [orderer/common/broadcast] Handle -> DEBU 9ce [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +orderer.example.com | 2018-01-14 11:45:34.165 UTC [policies] GetPolicy -> DEBU 9cf Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.165 UTC [cauthdsl] func1 -> DEBU 9d0 0xc420150730 gate 1515930334165855864 evaluation starts +orderer.example.com | 2018-01-14 11:45:34.165 UTC [cauthdsl] func2 -> DEBU 9d1 0xc420150730 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:34.166 UTC [cauthdsl] func2 -> DEBU 9d2 0xc420150730 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:34.166 UTC [msp/identity] newIdentity -> DEBU 9d3 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -12400,39 +12414,43 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.520 UTC [msp] SatisfiesPrincipal -> DEBU 9cd Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-04 01:50:58.520 UTC [msp] Validate -> DEBU 9ce MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:58.520 UTC [cauthdsl] func2 -> DEBU 9cf 0xc420026028 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:58.520 UTC [msp/identity] Verify -> DEBU 9d0 Verify: digest = 00000000 61 00 eb 76 da b7 f5 df 0a 43 43 7c 87 be 06 80 |a..v.....CC|....| -orderer.example.com | 00000010 1b f6 3f 78 61 76 23 be 41 fa de a3 12 a3 8d 4c |..?xav#.A......L| -orderer.example.com | 2018-01-04 01:50:58.520 UTC [msp/identity] Verify -> DEBU 9d1 Verify: sig = 00000000 30 44 02 20 57 eb a6 90 4f 87 ac b1 4a a3 5d e3 |0D. W...O...J.].| -orderer.example.com | 00000010 48 cf be 73 b9 5f 5b 10 77 5f 3d b4 90 18 e2 f4 |H..s._[.w_=.....| -orderer.example.com | 00000020 3e 35 35 56 02 20 15 53 cb 9f 52 03 92 cd 9f 8c |>55V. .S..R.....| -orderer.example.com | 00000030 2b 6f 65 17 8f 7a ff 09 e6 d2 7a a1 40 c3 26 eb |+oe..z....z.@.&.| -orderer.example.com | 00000040 76 f3 a7 a6 7d 40 |v...}@| -orderer.example.com | 2018-01-04 01:50:58.521 UTC [cauthdsl] func2 -> DEBU 9d2 0xc420026028 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:50:58.521 UTC [cauthdsl] func1 -> DEBU 9d3 0xc420026028 gate 1515030658519761300 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:58.521 UTC [orderer/common/sigfilter] Apply -> DEBU 9d4 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a6d440 1 [0xc4200273d0]}) %!s(*policies.implicitMetaPolicy=&{0xc420a6db00 1 [0xc4200274c8 0xc420027510]})]} -orderer.example.com | 2018-01-04 01:50:58.521 UTC [common/configtx] addToMap -> DEBU 9d5 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.521 UTC [common/configtx] addToMap -> DEBU 9d6 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.521 UTC [common/configtx] addToMap -> DEBU 9d7 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.521 UTC [common/configtx] addToMap -> DEBU 9d8 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9d9 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9da Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9db Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9dc Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9dd Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9de Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9df Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9e0 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9e1 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9e2 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9e3 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.522 UTC [policies] GetPolicy -> DEBU 9e4 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.522 UTC [cauthdsl] func1 -> DEBU 9e5 0xc420026960 gate 1515030658522919900 evaluation starts -orderer.example.com | 2018-01-04 01:50:58.522 UTC [cauthdsl] func2 -> DEBU 9e6 0xc420026960 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:58.523 UTC [cauthdsl] func2 -> DEBU 9e7 0xc420026960 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:58.523 UTC [msp/identity] newIdentity -> DEBU 9e8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.166 UTC [msp] SatisfiesPrincipal -> DEBU 9d4 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:45:34.166 UTC [msp] Validate -> DEBU 9d5 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:34.167 UTC [cauthdsl] func2 -> DEBU 9d6 0xc420150730 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:34.167 UTC [msp/identity] Verify -> DEBU 9d7 Verify: digest = 00000000 f1 b2 58 08 88 5e 3a b4 31 4c 11 7d 54 9d e1 11 |..X..^:.1L.}T...| +orderer.example.com | 00000010 49 6f 0f d0 71 a3 68 67 c6 2b f7 6d 62 5b ab e7 |Io..q.hg.+.mb[..| +orderer.example.com | 2018-01-14 11:45:34.167 UTC [orderer/common/broadcast] Handle -> WARN 9d8 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:45:34.167 UTC [orderer/main] func1 -> DEBU 9da Closing Broadcast stream +orderer.example.com | 2018-01-14 11:45:34.167 UTC [msp/identity] Verify -> DEBU 9d9 Verify: sig = 00000000 30 44 02 20 1a 51 8b 92 3d 61 41 ac af 04 cd 3c |0D. .Q..=aA....<| +orderer.example.com | 00000010 3a 08 c2 ec 5c 03 5c d7 0f c7 60 12 44 58 bc a0 |:...\.\...`.DX..| +orderer.example.com | 00000020 6f 1f fb cc 02 20 42 41 50 ed b9 5e 36 44 2b 74 |o.... BAP..^6D+t| +orderer.example.com | 00000030 d3 4f 56 c4 c1 20 aa 0a 85 af 9e 66 fb cf 10 d9 |.OV.. .....f....| +orderer.example.com | 00000040 8c 97 95 0c 66 a7 |....f.| +orderer.example.com | 2018-01-14 11:45:34.168 UTC [cauthdsl] func2 -> DEBU 9db 0xc420150730 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:34.170 UTC [orderer/common/deliver] Handle -> WARN 9dc Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:45:34.171 UTC [orderer/main] func1 -> DEBU 9de Closing Deliver stream +orderer.example.com | 2018-01-14 11:45:34.170 UTC [cauthdsl] func1 -> DEBU 9dd 0xc420150730 gate 1515930334165855864 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:34.171 UTC [orderer/common/sigfilter] Apply -> DEBU 9df Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420281dc0 1 [0xc420151730]}) %!s(*policies.implicitMetaPolicy=&{0xc42081c440 1 [0xc4201517d8 0xc420151848]})]} +orderer.example.com | 2018-01-14 11:45:34.172 UTC [common/configtx] addToMap -> DEBU 9e0 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.175 UTC [common/configtx] addToMap -> DEBU 9e1 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.176 UTC [common/configtx] addToMap -> DEBU 9e2 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.176 UTC [common/configtx] addToMap -> DEBU 9e3 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.177 UTC [common/configtx] addToMap -> DEBU 9e4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.177 UTC [common/configtx] addToMap -> DEBU 9e5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.177 UTC [common/configtx] addToMap -> DEBU 9e6 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.177 UTC [common/configtx] addToMap -> DEBU 9e7 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.178 UTC [common/configtx] addToMap -> DEBU 9e8 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.178 UTC [common/configtx] addToMap -> DEBU 9e9 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.178 UTC [common/configtx] addToMap -> DEBU 9ea Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.179 UTC [common/configtx] addToMap -> DEBU 9eb Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.179 UTC [common/configtx] addToMap -> DEBU 9ec Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.187 UTC [common/configtx] addToMap -> DEBU 9ed Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.187 UTC [common/configtx] addToMap -> DEBU 9ee Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.187 UTC [policies] GetPolicy -> DEBU 9ef Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.187 UTC [cauthdsl] func1 -> DEBU 9f0 0xc420150e40 gate 1515930334187913164 evaluation starts +orderer.example.com | 2018-01-14 11:45:34.188 UTC [cauthdsl] func2 -> DEBU 9f1 0xc420150e40 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:34.189 UTC [cauthdsl] func2 -> DEBU 9f2 0xc420150e40 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:34.189 UTC [msp/identity] newIdentity -> DEBU 9f3 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12446,88 +12464,86 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.523 UTC [msp] SatisfiesPrincipal -> DEBU 9e9 Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.523 UTC [cauthdsl] func2 -> DEBU 9ea 0xc420026960 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:58.523 UTC [msp/identity] Verify -> DEBU 9eb Verify: digest = 00000000 81 df 61 35 fa ff e7 18 82 38 33 4a db 00 28 a6 |..a5.....83J..(.| -orderer.example.com | 00000010 60 1b 23 f0 41 df ba 4c 59 1b 98 cb 00 53 2a 5c |`.#.A..LY....S*\| -orderer.example.com | 2018-01-04 01:50:58.523 UTC [msp/identity] Verify -> DEBU 9ec Verify: sig = 00000000 30 45 02 21 00 9a 5c 7e 83 cb 71 73 ee 9d c4 eb |0E.!..\~..qs....| -orderer.example.com | 00000010 fc 9f 9d 1b ea 3b c8 6f f9 f1 ef c3 19 01 93 d3 |.....;.o........| -orderer.example.com | 00000020 9a c3 b0 19 57 02 20 25 ce 5d 43 30 69 13 f7 3d |....W. %.]C0i..=| -orderer.example.com | 00000030 ad bf 32 f0 61 da 4f 7b 36 6f 92 19 eb d8 85 44 |..2.a.O{6o.....D| -orderer.example.com | 00000040 69 1c 61 35 bb e2 7c |i.a5..|| -orderer.example.com | 2018-01-04 01:50:58.524 UTC [cauthdsl] func2 -> DEBU 9ed 0xc420026960 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:50:58.524 UTC [cauthdsl] func1 -> DEBU 9ee 0xc420026960 gate 1515030658522919900 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9ef Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f0 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f1 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f2 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f3 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f4 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f5 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f6 Setting policy for key Readers to -orderer.example.com | 2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f7 Setting policy for key Writers to -orderer.example.com | 2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f8 Setting policy for key Admins to -orderer.example.com | 2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f9 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9fa Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.526 UTC [common/configtx] recurseConfigMap -> DEBU 9fb Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.526 UTC [common/configtx] recurseConfigMap -> DEBU 9fc Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.526 UTC [common/configtx] recurseConfigMap -> DEBU 9fd Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.526 UTC [common/configtx] recurseConfigMap -> DEBU 9fe Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.527 UTC [common/configtx] recurseConfigMap -> DEBU 9ff Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.527 UTC [common/configtx] recurseConfigMap -> DEBU a00 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.527 UTC [common/configtx] recurseConfigMap -> DEBU a01 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.527 UTC [common/configtx] processConfig -> DEBU a02 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:58.527 UTC [common/config] NewStandardValues -> DEBU a03 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:58.527 UTC [common/config] initializeProtosStruct -> DEBU a04 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:58.527 UTC [common/config] initializeProtosStruct -> DEBU a05 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:58.528 UTC [common/config] initializeProtosStruct -> DEBU a06 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:58.528 UTC [common/config] initializeProtosStruct -> DEBU a07 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:58.528 UTC [policies] ProposePolicy -> DEBU a08 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:58.528 UTC [policies] ProposePolicy -> DEBU a09 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:58.528 UTC [policies] ProposePolicy -> DEBU a0a Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] NewStandardValues -> DEBU a0b Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a0c Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a0d Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a0e Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:58.529 UTC [orderer/common/broadcast] Handle -> WARN a0f Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a10 Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:58.529 UTC [orderer/main] func1 -> DEBU a11 Closing Broadcast stream -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a12 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a13 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a14 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a15 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a16 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] NewStandardValues -> DEBU a17 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a18 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a19 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a1a Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a1b Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.529 UTC [common/config] NewStandardValues -> DEBU a1c Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a1d Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a1e Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a1f Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a20 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a21 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a22 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a23 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a24 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a25 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a26 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a27 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a28 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a29 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a2a Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a2b Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a2c Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a2d Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a2e Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a2f Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a30 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a31 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.530 UTC [common/config] validateMSP -> DEBU a32 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.530 UTC [msp] NewBccspMsp -> DEBU a33 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.530 UTC [msp] Setup -> DEBU a34 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:50:58.531 UTC [msp/identity] newIdentity -> DEBU a35 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.190 UTC [msp] SatisfiesPrincipal -> DEBU 9f4 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.190 UTC [cauthdsl] func2 -> DEBU 9f5 0xc420150e40 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:34.190 UTC [msp/identity] Verify -> DEBU 9f6 Verify: digest = 00000000 82 fb fd 83 69 c5 26 65 8c 81 84 d4 ec fa 4b f6 |....i.&e......K.| +orderer.example.com | 00000010 62 bc 1e e7 8c 40 40 34 9a a2 38 fe 25 1c e9 18 |b....@@4..8.%...| +orderer.example.com | 2018-01-14 11:45:34.191 UTC [msp/identity] Verify -> DEBU 9f7 Verify: sig = 00000000 30 44 02 20 07 5e 0c d0 f8 af 0d f4 c4 a7 15 b4 |0D. .^..........| +orderer.example.com | 00000010 7e ac 2c 65 12 59 f4 52 7e 9b ac 57 e5 62 42 f8 |~.,e.Y.R~..W.bB.| +orderer.example.com | 00000020 17 16 b6 5b 02 20 4d 1b d2 3f 25 17 87 25 65 5e |...[. M..?%..%e^| +orderer.example.com | 00000030 c0 b4 50 38 12 e9 bd 30 be 19 88 21 85 bd 91 55 |..P8...0...!...U| +orderer.example.com | 00000040 ff 48 68 db 65 fb |.Hh.e.| +orderer.example.com | 2018-01-14 11:45:34.191 UTC [cauthdsl] func2 -> DEBU 9f8 0xc420150e40 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:34.192 UTC [cauthdsl] func1 -> DEBU 9f9 0xc420150e40 gate 1515930334187913164 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:34.192 UTC [common/configtx] recurseConfigMap -> DEBU 9fa Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.193 UTC [common/configtx] recurseConfigMap -> DEBU 9fb Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.194 UTC [common/configtx] recurseConfigMap -> DEBU 9fc Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.194 UTC [common/configtx] recurseConfigMap -> DEBU 9fd Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.196 UTC [common/configtx] recurseConfigMap -> DEBU 9fe Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.197 UTC [common/configtx] recurseConfigMap -> DEBU 9ff Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a00 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a01 Setting policy for key Writers to +orderer.example.com | 2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a02 Setting policy for key Admins to +orderer.example.com | 2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a03 Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a04 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.203 UTC [common/configtx] recurseConfigMap -> DEBU a05 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.203 UTC [common/configtx] recurseConfigMap -> DEBU a06 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a07 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a08 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a09 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a0a Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a0b Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a0c Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.216 UTC [common/configtx] processConfig -> DEBU a0d Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:34.216 UTC [common/config] NewStandardValues -> DEBU a0e Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:34.216 UTC [common/config] initializeProtosStruct -> DEBU a0f Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:34.216 UTC [common/config] initializeProtosStruct -> DEBU a10 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a11 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a12 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:34.217 UTC [policies] ProposePolicy -> DEBU a13 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:34.217 UTC [policies] ProposePolicy -> DEBU a14 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:34.217 UTC [policies] ProposePolicy -> DEBU a15 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:34.217 UTC [common/config] NewStandardValues -> DEBU a16 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a17 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a18 Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a19 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a1a Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:34.218 UTC [common/config] initializeProtosStruct -> DEBU a1b Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:34.218 UTC [policies] ProposePolicy -> DEBU a1c Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:34.218 UTC [policies] ProposePolicy -> DEBU a1d Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:34.218 UTC [policies] ProposePolicy -> DEBU a1e Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:34.218 UTC [policies] ProposePolicy -> DEBU a1f Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:34.218 UTC [common/config] NewStandardValues -> DEBU a20 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.218 UTC [common/config] initializeProtosStruct -> DEBU a21 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a22 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a23 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a24 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.219 UTC [common/config] NewStandardValues -> DEBU a25 Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a26 Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a27 Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a28 Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:34.220 UTC [common/config] NewStandardValues -> DEBU a29 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.220 UTC [common/config] initializeProtosStruct -> DEBU a2a Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.220 UTC [common/config] NewStandardValues -> DEBU a2b Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:34.220 UTC [common/config] initializeProtosStruct -> DEBU a2c Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.220 UTC [common/config] NewStandardValues -> DEBU a2d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.220 UTC [common/config] initializeProtosStruct -> DEBU a2e Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.220 UTC [policies] ProposePolicy -> DEBU a2f Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.220 UTC [policies] ProposePolicy -> DEBU a30 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.220 UTC [policies] ProposePolicy -> DEBU a31 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.220 UTC [common/config] NewStandardValues -> DEBU a32 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.220 UTC [common/config] initializeProtosStruct -> DEBU a33 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.221 UTC [common/config] NewStandardValues -> DEBU a34 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:34.221 UTC [common/config] initializeProtosStruct -> DEBU a35 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.221 UTC [common/config] NewStandardValues -> DEBU a36 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.221 UTC [common/config] initializeProtosStruct -> DEBU a37 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.221 UTC [policies] ProposePolicy -> DEBU a38 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.221 UTC [policies] ProposePolicy -> DEBU a39 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.221 UTC [policies] ProposePolicy -> DEBU a3a Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.221 UTC [common/config] validateMSP -> DEBU a3b Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.224 UTC [msp] NewBccspMsp -> DEBU a3c Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.224 UTC [msp] Setup -> DEBU a3d Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:34.225 UTC [msp/identity] newIdentity -> DEBU a3e Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -12541,7 +12557,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.531 UTC [msp/identity] newIdentity -> DEBU a36 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.228 UTC [msp/identity] newIdentity -> DEBU a3f Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -12554,7 +12570,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.531 UTC [msp/identity] newIdentity -> DEBU a37 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.229 UTC [msp/identity] newIdentity -> DEBU a40 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -12567,12 +12583,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.532 UTC [msp] Validate -> DEBU a38 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:58.532 UTC [common/config] Validate -> DEBU a39 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:50:58.532 UTC [common/config] validateMSP -> DEBU a3a Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:58.532 UTC [msp] NewBccspMsp -> DEBU a3b Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.532 UTC [msp] Setup -> DEBU a3c Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:58.533 UTC [msp/identity] newIdentity -> DEBU a3d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.232 UTC [msp] Validate -> DEBU a41 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:34.233 UTC [common/config] Validate -> DEBU a42 Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:34.233 UTC [common/config] validateMSP -> DEBU a43 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:34.234 UTC [msp] NewBccspMsp -> DEBU a44 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.235 UTC [msp] Setup -> DEBU a45 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:34.238 UTC [msp/identity] newIdentity -> DEBU a46 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12587,7 +12603,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.534 UTC [msp/identity] newIdentity -> DEBU a3e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.239 UTC [msp/identity] newIdentity -> DEBU a47 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12601,7 +12617,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.534 UTC [msp/identity] newIdentity -> DEBU a3f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.249 UTC [msp/identity] newIdentity -> DEBU a48 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12615,12 +12631,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.535 UTC [msp] Validate -> DEBU a40 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:58.535 UTC [common/config] Validate -> DEBU a41 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:58.536 UTC [common/config] validateMSP -> DEBU a42 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:58.536 UTC [msp] NewBccspMsp -> DEBU a43 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.536 UTC [msp] Setup -> DEBU a44 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:58.536 UTC [msp/identity] newIdentity -> DEBU a45 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.250 UTC [msp] Validate -> DEBU a49 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:34.251 UTC [common/config] Validate -> DEBU a4a Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:34.251 UTC [common/config] validateMSP -> DEBU a4b Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:34.252 UTC [msp] NewBccspMsp -> DEBU a4c Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.252 UTC [msp] Setup -> DEBU a4d Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:34.255 UTC [msp/identity] newIdentity -> DEBU a4e Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -12635,7 +12651,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.537 UTC [msp/identity] newIdentity -> DEBU a46 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.255 UTC [msp/identity] newIdentity -> DEBU a4f Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12649,7 +12665,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.537 UTC [msp/identity] newIdentity -> DEBU a47 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.256 UTC [msp/identity] newIdentity -> DEBU a50 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12663,73 +12679,71 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.539 UTC [orderer/common/deliver] Handle -> WARN a48 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:50:58.539 UTC [orderer/main] func1 -> DEBU a49 Closing Deliver stream -orderer.example.com | 2018-01-04 01:50:58.542 UTC [msp] Validate -> DEBU a4a MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:58.543 UTC [msp] Setup -> DEBU a4b Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:58.543 UTC [msp] Setup -> DEBU a4c MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:58.543 UTC [orderer/common/blockcutter] Ordered -> DEBU a4d Found message which requested to be isolated, cutting into its own batch -orderer.example.com | 2018-01-04 01:50:58.544 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU a4e retrieveBlockByNumber() - blockNum = [0] -orderer.example.com | 2018-01-04 01:50:58.544 UTC [fsblkstorage] newBlockfileStream -> DEBU a4f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | 2018-01-04 01:50:58.545 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a50 Remaining bytes=[11933], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:50:58.545 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a51 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | 2018-01-04 01:50:58.546 UTC [common/configtx] addToMap -> DEBU a52 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.547 UTC [common/configtx] addToMap -> DEBU a53 Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-04 01:50:58.548 UTC [common/configtx] addToMap -> DEBU a54 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.548 UTC [common/configtx] addToMap -> DEBU a55 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-04 01:50:58.549 UTC [common/configtx] addToMap -> DEBU a56 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-04 01:50:58.549 UTC [common/configtx] addToMap -> DEBU a57 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-04 01:50:58.549 UTC [common/configtx] addToMap -> DEBU a58 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:50:58.549 UTC [common/configtx] addToMap -> DEBU a59 Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5a Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5b Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5c Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5d Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5e Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5f Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a60 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a61 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a62 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a63 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a64 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a65 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a66 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a67 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a68 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a69 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a6a Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a6b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a6c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a6d Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a6e Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a6f Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a70 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a71 Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a72 Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a73 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a74 Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a75 Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a76 Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a77 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a78 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a79 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a7a Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a7b Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a7c Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a7d Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a7e Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a7f Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a80 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a81 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a82 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a83 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a84 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a85 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:50:58.556 UTC [policies] GetPolicy -> DEBU a86 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.556 UTC [cauthdsl] func1 -> DEBU a87 0xc42010e968 gate 1515030658556353100 evaluation starts -orderer.example.com | 2018-01-04 01:50:58.556 UTC [cauthdsl] func2 -> DEBU a88 0xc42010e968 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:50:58.556 UTC [cauthdsl] func2 -> DEBU a89 0xc42010e968 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:50:58.557 UTC [msp/identity] newIdentity -> DEBU a8a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.257 UTC [msp] Validate -> DEBU a51 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:34.257 UTC [msp] Setup -> DEBU a52 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:34.257 UTC [msp] Setup -> DEBU a53 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:34.258 UTC [orderer/common/blockcutter] Ordered -> DEBU a54 Found message which requested to be isolated, cutting into its own batch +orderer.example.com | 2018-01-14 11:45:34.258 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU a55 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-14 11:45:34.258 UTC [fsblkstorage] newBlockfileStream -> DEBU a56 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-14 11:45:34.258 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a57 Remaining bytes=[11933], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:34.258 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a58 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-14 11:45:34.259 UTC [common/configtx] addToMap -> DEBU a59 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.259 UTC [common/configtx] addToMap -> DEBU a5a Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.260 UTC [common/configtx] addToMap -> DEBU a5b Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a5c Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a5d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a5e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a5f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a60 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a61 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a62 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a63 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a64 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a65 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a66 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a67 Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a68 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a69 Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6a Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6b Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6f Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a70 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a71 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a72 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a73 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a74 Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a75 Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a76 Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a77 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a78 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a79 Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7a Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7b Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7c Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7d Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7e Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7f Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a80 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a81 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a82 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a83 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a84 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a85 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a86 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a87 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a88 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a89 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a8a Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a8b Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a8c Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:34.264 UTC [policies] GetPolicy -> DEBU a8d Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.264 UTC [cauthdsl] func1 -> DEBU a8e 0xc420150d30 gate 1515930334264285764 evaluation starts +orderer.example.com | 2018-01-14 11:45:34.264 UTC [cauthdsl] func2 -> DEBU a8f 0xc420150d30 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:34.264 UTC [cauthdsl] func2 -> DEBU a90 0xc420150d30 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:34.265 UTC [msp/identity] newIdentity -> DEBU a91 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12743,86 +12757,86 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.558 UTC [msp] SatisfiesPrincipal -> DEBU a8b Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.558 UTC [cauthdsl] func2 -> DEBU a8c 0xc42010e968 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:50:58.558 UTC [msp/identity] Verify -> DEBU a8d Verify: digest = 00000000 81 df 61 35 fa ff e7 18 82 38 33 4a db 00 28 a6 |..a5.....83J..(.| -orderer.example.com | 00000010 60 1b 23 f0 41 df ba 4c 59 1b 98 cb 00 53 2a 5c |`.#.A..LY....S*\| -orderer.example.com | 2018-01-04 01:50:58.558 UTC [msp/identity] Verify -> DEBU a8e Verify: sig = 00000000 30 45 02 21 00 9a 5c 7e 83 cb 71 73 ee 9d c4 eb |0E.!..\~..qs....| -orderer.example.com | 00000010 fc 9f 9d 1b ea 3b c8 6f f9 f1 ef c3 19 01 93 d3 |.....;.o........| -orderer.example.com | 00000020 9a c3 b0 19 57 02 20 25 ce 5d 43 30 69 13 f7 3d |....W. %.]C0i..=| -orderer.example.com | 00000030 ad bf 32 f0 61 da 4f 7b 36 6f 92 19 eb d8 85 44 |..2.a.O{6o.....D| -orderer.example.com | 00000040 69 1c 61 35 bb e2 7c |i.a5..|| -orderer.example.com | 2018-01-04 01:50:58.558 UTC [cauthdsl] func2 -> DEBU a8f 0xc42010e968 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:50:58.559 UTC [cauthdsl] func1 -> DEBU a90 0xc42010e968 gate 1515030658556353100 evaluation succeeds -orderer.example.com | 2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a91 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a92 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a93 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a94 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a95 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a96 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a97 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a98 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a99 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a9a Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a9b Setting policy for key Readers to -orderer.example.com | 2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a9c Setting policy for key Writers to -orderer.example.com | 2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU a9d Setting policy for key Admins to -orderer.example.com | 2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU a9e Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU a9f Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU aa0 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU aa1 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU aa2 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU aa3 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:50:58.562 UTC [common/configtx] processConfig -> DEBU aa4 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:50:58.562 UTC [common/config] NewStandardValues -> DEBU aa5 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:50:58.562 UTC [common/config] initializeProtosStruct -> DEBU aa6 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:50:58.562 UTC [common/config] initializeProtosStruct -> DEBU aa7 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:50:58.562 UTC [common/config] initializeProtosStruct -> DEBU aa8 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:50:58.562 UTC [common/config] initializeProtosStruct -> DEBU aa9 Processing field: Consortium -orderer.example.com | 2018-01-04 01:50:58.562 UTC [policies] ProposePolicy -> DEBU aaa Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:50:58.562 UTC [policies] ProposePolicy -> DEBU aab Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:50:58.562 UTC [policies] ProposePolicy -> DEBU aac Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:50:58.562 UTC [common/config] NewStandardValues -> DEBU aad Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU aae Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU aaf Processing field: BatchSize -orderer.example.com | 2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU ab0 Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU ab1 Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU ab2 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:50:58.563 UTC [policies] ProposePolicy -> DEBU ab3 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:50:58.566 UTC [policies] ProposePolicy -> DEBU ab4 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:50:58.566 UTC [policies] ProposePolicy -> DEBU ab5 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:50:58.566 UTC [policies] ProposePolicy -> DEBU ab6 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:50:58.567 UTC [common/config] NewStandardValues -> DEBU ab7 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.567 UTC [common/config] initializeProtosStruct -> DEBU ab8 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.567 UTC [policies] ProposePolicy -> DEBU ab9 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.567 UTC [policies] ProposePolicy -> DEBU aba Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.567 UTC [policies] ProposePolicy -> DEBU abb Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.568 UTC [common/config] NewStandardValues -> DEBU abc Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:50:58.568 UTC [policies] ProposePolicy -> DEBU abd Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:50:58.568 UTC [policies] ProposePolicy -> DEBU abe Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:50:58.568 UTC [policies] ProposePolicy -> DEBU abf Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:50:58.568 UTC [common/config] NewStandardValues -> DEBU ac0 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.568 UTC [common/config] initializeProtosStruct -> DEBU ac1 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.568 UTC [common/config] NewStandardValues -> DEBU ac2 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:58.568 UTC [common/config] initializeProtosStruct -> DEBU ac3 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.570 UTC [common/config] NewStandardValues -> DEBU ac4 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.570 UTC [common/config] initializeProtosStruct -> DEBU ac5 Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.570 UTC [policies] ProposePolicy -> DEBU ac6 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.570 UTC [policies] ProposePolicy -> DEBU ac7 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.570 UTC [policies] ProposePolicy -> DEBU ac8 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:50:58.571 UTC [common/config] NewStandardValues -> DEBU ac9 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.571 UTC [common/config] initializeProtosStruct -> DEBU aca Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.571 UTC [common/config] NewStandardValues -> DEBU acb Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:50:58.571 UTC [common/config] initializeProtosStruct -> DEBU acc Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:50:58.571 UTC [common/config] NewStandardValues -> DEBU acd Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:50:58.571 UTC [common/config] initializeProtosStruct -> DEBU ace Processing field: MSP -orderer.example.com | 2018-01-04 01:50:58.571 UTC [policies] ProposePolicy -> DEBU acf Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.571 UTC [policies] ProposePolicy -> DEBU ad0 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.571 UTC [policies] ProposePolicy -> DEBU ad1 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:50:58.571 UTC [common/config] validateMSP -> DEBU ad2 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:50:58.571 UTC [msp] NewBccspMsp -> DEBU ad3 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.572 UTC [msp] Setup -> DEBU ad4 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:50:58.572 UTC [msp/identity] newIdentity -> DEBU ad5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.265 UTC [msp] SatisfiesPrincipal -> DEBU a92 Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.265 UTC [cauthdsl] func2 -> DEBU a93 0xc420150d30 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:34.266 UTC [msp/identity] Verify -> DEBU a94 Verify: digest = 00000000 82 fb fd 83 69 c5 26 65 8c 81 84 d4 ec fa 4b f6 |....i.&e......K.| +orderer.example.com | 00000010 62 bc 1e e7 8c 40 40 34 9a a2 38 fe 25 1c e9 18 |b....@@4..8.%...| +orderer.example.com | 2018-01-14 11:45:34.266 UTC [msp/identity] Verify -> DEBU a95 Verify: sig = 00000000 30 44 02 20 07 5e 0c d0 f8 af 0d f4 c4 a7 15 b4 |0D. .^..........| +orderer.example.com | 00000010 7e ac 2c 65 12 59 f4 52 7e 9b ac 57 e5 62 42 f8 |~.,e.Y.R~..W.bB.| +orderer.example.com | 00000020 17 16 b6 5b 02 20 4d 1b d2 3f 25 17 87 25 65 5e |...[. M..?%..%e^| +orderer.example.com | 00000030 c0 b4 50 38 12 e9 bd 30 be 19 88 21 85 bd 91 55 |..P8...0...!...U| +orderer.example.com | 00000040 ff 48 68 db 65 fb |.Hh.e.| +orderer.example.com | 2018-01-14 11:45:34.266 UTC [cauthdsl] func2 -> DEBU a96 0xc420150d30 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:34.266 UTC [cauthdsl] func1 -> DEBU a97 0xc420150d30 gate 1515930334264285764 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:34.267 UTC [common/configtx] recurseConfigMap -> DEBU a98 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.267 UTC [common/configtx] recurseConfigMap -> DEBU a99 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.267 UTC [common/configtx] recurseConfigMap -> DEBU a9a Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.267 UTC [common/configtx] recurseConfigMap -> DEBU a9b Setting policy for key Admins to +orderer.example.com | 2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU a9c Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU a9d Setting policy for key Writers to +orderer.example.com | 2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU a9e Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU a9f Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU aa0 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa1 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa2 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa3 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa4 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa5 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa6 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa7 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/configtx] recurseConfigMap -> DEBU aa8 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/configtx] recurseConfigMap -> DEBU aa9 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/configtx] recurseConfigMap -> DEBU aaa Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/configtx] processConfig -> DEBU aab Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/config] NewStandardValues -> DEBU aac Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/config] initializeProtosStruct -> DEBU aad Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/config] initializeProtosStruct -> DEBU aae Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/config] initializeProtosStruct -> DEBU aaf Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:34.270 UTC [common/config] initializeProtosStruct -> DEBU ab0 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:34.270 UTC [policies] ProposePolicy -> DEBU ab1 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:34.271 UTC [policies] ProposePolicy -> DEBU ab2 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:34.271 UTC [policies] ProposePolicy -> DEBU ab3 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:34.271 UTC [common/config] NewStandardValues -> DEBU ab4 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab5 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab6 Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab7 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab8 Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab9 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:34.271 UTC [policies] ProposePolicy -> DEBU aba Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU abb Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU abc Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU abd Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:34.272 UTC [common/config] NewStandardValues -> DEBU abe Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.272 UTC [common/config] initializeProtosStruct -> DEBU abf Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac0 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac1 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac2 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.272 UTC [common/config] NewStandardValues -> DEBU ac3 Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac4 Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac5 Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac6 Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:34.272 UTC [common/config] NewStandardValues -> DEBU ac7 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.272 UTC [common/config] initializeProtosStruct -> DEBU ac8 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.272 UTC [common/config] NewStandardValues -> DEBU ac9 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:34.272 UTC [common/config] initializeProtosStruct -> DEBU aca Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] NewStandardValues -> DEBU acb Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] initializeProtosStruct -> DEBU acc Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU acd Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU ace Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU acf Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] NewStandardValues -> DEBU ad0 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] initializeProtosStruct -> DEBU ad1 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] NewStandardValues -> DEBU ad2 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] initializeProtosStruct -> DEBU ad3 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] NewStandardValues -> DEBU ad4 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] initializeProtosStruct -> DEBU ad5 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU ad6 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU ad7 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU ad8 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:34.273 UTC [common/config] validateMSP -> DEBU ad9 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:34.274 UTC [msp] NewBccspMsp -> DEBU ada Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.274 UTC [msp] Setup -> DEBU adb Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:34.274 UTC [msp/identity] newIdentity -> DEBU adc Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -12836,7 +12850,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.573 UTC [msp/identity] newIdentity -> DEBU ad6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.275 UTC [msp/identity] newIdentity -> DEBU add Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -12849,7 +12863,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.573 UTC [msp/identity] newIdentity -> DEBU ad7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.275 UTC [msp/identity] newIdentity -> DEBU ade Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -12862,12 +12876,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.574 UTC [msp] Validate -> DEBU ad8 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:50:58.575 UTC [common/config] Validate -> DEBU ad9 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:50:58.575 UTC [common/config] validateMSP -> DEBU ada Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:50:58.575 UTC [msp] NewBccspMsp -> DEBU adb Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.576 UTC [msp] Setup -> DEBU adc Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:50:58.577 UTC [msp/identity] newIdentity -> DEBU add Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.276 UTC [msp] Validate -> DEBU adf MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:34.277 UTC [common/config] Validate -> DEBU ae0 Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:34.277 UTC [common/config] validateMSP -> DEBU ae1 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:34.277 UTC [msp] NewBccspMsp -> DEBU ae2 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.277 UTC [msp] Setup -> DEBU ae3 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:34.277 UTC [msp/identity] newIdentity -> DEBU ae4 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12882,7 +12896,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.578 UTC [msp/identity] newIdentity -> DEBU ade Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.277 UTC [msp/identity] newIdentity -> DEBU ae5 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12896,7 +12910,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.579 UTC [msp/identity] newIdentity -> DEBU adf Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.279 UTC [msp/identity] newIdentity -> DEBU ae6 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12910,12 +12924,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.580 UTC [msp] Validate -> DEBU ae0 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:50:58.580 UTC [common/config] Validate -> DEBU ae1 Anchor peers for org Org2MSP are -orderer.example.com | 2018-01-04 01:50:58.580 UTC [common/config] validateMSP -> DEBU ae2 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:50:58.580 UTC [msp] NewBccspMsp -> DEBU ae3 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:50:58.580 UTC [msp] Setup -> DEBU ae4 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:50:58.581 UTC [msp/identity] newIdentity -> DEBU ae5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.280 UTC [msp] Validate -> DEBU ae7 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:34.280 UTC [common/config] Validate -> DEBU ae8 Anchor peers for org Org2MSP are +orderer.example.com | 2018-01-14 11:45:34.280 UTC [common/config] validateMSP -> DEBU ae9 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:34.280 UTC [msp] NewBccspMsp -> DEBU aea Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:34.280 UTC [msp] Setup -> DEBU aeb Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:34.281 UTC [msp/identity] newIdentity -> DEBU aec Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -12930,7 +12944,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.582 UTC [msp/identity] newIdentity -> DEBU ae6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.281 UTC [msp/identity] newIdentity -> DEBU aed Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12944,7 +12958,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.583 UTC [msp/identity] newIdentity -> DEBU ae7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.282 UTC [msp/identity] newIdentity -> DEBU aee Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -12958,135 +12972,135 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:50:58.584 UTC [msp] Validate -> DEBU ae8 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:50:58.585 UTC [msp] Setup -> DEBU ae9 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:50:58.585 UTC [msp] Setup -> DEBU aea MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:50:58.585 UTC [policies] GetPolicy -> DEBU aeb Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.585 UTC [policies] CommitProposals -> DEBU aec In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:50:58.585 UTC [policies] GetPolicy -> DEBU aed Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.585 UTC [policies] CommitProposals -> DEBU aee In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:50:58.585 UTC [policies] GetPolicy -> DEBU aef Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.586 UTC [policies] CommitProposals -> DEBU af0 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-04 01:50:58.586 UTC [policies] GetPolicy -> DEBU af1 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.586 UTC [policies] GetPolicy -> DEBU af2 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.587 UTC [policies] GetPolicy -> DEBU af3 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.587 UTC [policies] GetPolicy -> DEBU af4 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.587 UTC [policies] GetPolicy -> DEBU af5 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.587 UTC [policies] CommitProposals -> DEBU af6 In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:58.587 UTC [policies] GetPolicy -> DEBU af7 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.587 UTC [policies] CommitProposals -> DEBU af8 In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU af9 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] CommitProposals -> DEBU afa In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU afb Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] CommitProposals -> DEBU afc In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU afd Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] CommitProposals -> DEBU afe In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU aff Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] CommitProposals -> DEBU b00 In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU b01 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b02 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b03 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b04 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b05 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b06 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b07 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.590 UTC [policies] CommitProposals -> DEBU b08 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-04 01:50:58.590 UTC [policies] GetPolicy -> DEBU b09 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.590 UTC [policies] CommitProposals -> DEBU b0a In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-04 01:50:58.590 UTC [policies] GetPolicy -> DEBU b0b Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.590 UTC [policies] CommitProposals -> DEBU b0c In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-04 01:50:58.590 UTC [policies] GetPolicy -> DEBU b0d Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.591 UTC [policies] CommitProposals -> DEBU b0e In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-04 01:50:58.591 UTC [policies] GetPolicy -> DEBU b0f Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.591 UTC [policies] CommitProposals -> DEBU b10 In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-04 01:50:58.591 UTC [policies] GetPolicy -> DEBU b11 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b12 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b13 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b14 In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b15 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b16 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b17 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b18 In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b19 Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b1a In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b1b Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b1c In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b1d Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b1e In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b1f Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] CommitProposals -> DEBU b20 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b21 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] CommitProposals -> DEBU b22 In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b23 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] CommitProposals -> DEBU b24 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b25 Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] CommitProposals -> DEBU b26 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b27 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b28 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b29 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b2a Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b2b Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b2c Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b2d Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] CommitProposals -> DEBU b2e As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b2f Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] CommitProposals -> DEBU b30 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b31 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] CommitProposals -> DEBU b32 As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b33 Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-04 01:50:58.595 UTC [policies] CommitProposals -> DEBU b34 As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-04 01:50:58.595 UTC [policies] GetPolicy -> DEBU b35 Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-04 01:50:58.595 UTC [policies] CommitProposals -> DEBU b36 As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-04 01:50:58.595 UTC [policies] GetPolicy -> DEBU b37 Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:50:58.595 UTC [policies] CommitProposals -> DEBU b38 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-04 01:50:58.595 UTC [orderer/multichain] addBlockSignature -> DEBU b39 &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:0 lastConfigSeq:1} -orderer.example.com | 2018-01-04 01:50:58.595 UTC [orderer/multichain] addBlockSignature -> DEBU b3a &{} -orderer.example.com | 2018-01-04 01:50:58.595 UTC [msp] GetLocalMSP -> DEBU b3b Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:58.595 UTC [msp] GetDefaultSigningIdentity -> DEBU b3c Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:58.595 UTC [msp] GetLocalMSP -> DEBU b3d Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:58.595 UTC [msp] GetDefaultSigningIdentity -> DEBU b3e Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:58.595 UTC [msp/identity] Sign -> DEBU b3f Sign: plaintext: 0AFA050A0A4F7264657265724D535012...284AAF4774C4BD1E0A77CF3E5FD59238 -orderer.example.com | 2018-01-04 01:50:58.595 UTC [msp/identity] Sign -> DEBU b40 Sign: digest: B3281C87809F31A8FF352BFADA695BF01F46006E5A9539354EDB3E67739F72D4 -orderer.example.com | 2018-01-04 01:50:58.596 UTC [orderer/multichain] addLastConfigSignature -> DEBU b41 [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 -orderer.example.com | 2018-01-04 01:50:58.596 UTC [msp] GetLocalMSP -> DEBU b42 Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:58.596 UTC [msp] GetDefaultSigningIdentity -> DEBU b43 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:58.596 UTC [orderer/multichain] addLastConfigSignature -> DEBU b44 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -orderer.example.com | 2018-01-04 01:50:58.596 UTC [msp] GetLocalMSP -> DEBU b45 Returning existing local MSP -orderer.example.com | 2018-01-04 01:50:58.596 UTC [msp] GetDefaultSigningIdentity -> DEBU b46 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:50:58.596 UTC [msp/identity] Sign -> DEBU b47 Sign: plaintext: 08010AFA050A0A4F7264657265724D53...284AAF4774C4BD1E0A77CF3E5FD59238 -orderer.example.com | 2018-01-04 01:50:58.596 UTC [msp/identity] Sign -> DEBU b48 Sign: digest: E40621421E098FA0F42A05805BDA580B3B53D5BB26C436CE3448DFE12BDE68AD -orderer.example.com | 2018-01-04 01:50:58.599 UTC [fsblkstorage] indexBlock -> DEBU b49 Indexing block [blockNum=1, blockHash=[]byte{0x54, 0xbe, 0xd6, 0x3f, 0x54, 0x86, 0x6a, 0x3b, 0xfd, 0x9a, 0xdc, 0xb9, 0xfc, 0x15, 0x9e, 0x26, 0x4, 0x89, 0xff, 0xaa, 0x1a, 0x85, 0x5a, 0x81, 0x49, 0x6b, 0x26, 0x91, 0xff, 0x54, 0x5c, 0xb5} txOffsets= +orderer.example.com | 2018-01-14 11:45:34.283 UTC [msp] Validate -> DEBU aef MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:34.283 UTC [msp] Setup -> DEBU af0 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:34.283 UTC [msp] Setup -> DEBU af1 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af2 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] CommitProposals -> DEBU af3 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af4 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] CommitProposals -> DEBU af5 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af6 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] CommitProposals -> DEBU af7 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af8 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af9 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU afa Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU afb Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU afc Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU afd In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU afe Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU aff In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b00 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU b01 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b02 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU b03 In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b04 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU b05 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b06 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU b07 In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b08 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b09 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0a Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0b Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0c Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0d Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0e Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] CommitProposals -> DEBU b0f In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b10 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] CommitProposals -> DEBU b11 In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b12 Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] CommitProposals -> DEBU b13 In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b14 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.285 UTC [policies] CommitProposals -> DEBU b15 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b16 Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b17 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b18 Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b19 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b1a Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b1b In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b1c Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b1d In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b1e Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b1f In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b20 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b21 In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b22 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b23 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b24 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b25 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b26 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b27 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b28 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b29 In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b2a Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b2b In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b2c Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b2d In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b2e Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b2f Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b30 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b31 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b32 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b33 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.288 UTC [policies] GetPolicy -> DEBU b34 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.288 UTC [policies] CommitProposals -> DEBU b35 As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-14 11:45:34.288 UTC [policies] GetPolicy -> DEBU b36 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.288 UTC [policies] CommitProposals -> DEBU b37 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-14 11:45:34.288 UTC [policies] GetPolicy -> DEBU b38 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:34.288 UTC [policies] CommitProposals -> DEBU b39 As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-14 11:45:34.288 UTC [policies] GetPolicy -> DEBU b3a Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:34.288 UTC [policies] CommitProposals -> DEBU b3b As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-14 11:45:34.289 UTC [policies] GetPolicy -> DEBU b3c Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:34.289 UTC [policies] CommitProposals -> DEBU b3d As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-14 11:45:34.289 UTC [policies] GetPolicy -> DEBU b3e Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:34.289 UTC [policies] CommitProposals -> DEBU b3f As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-14 11:45:34.289 UTC [orderer/multichain] addBlockSignature -> DEBU b40 &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:0 lastConfigSeq:1} +orderer.example.com | 2018-01-14 11:45:34.289 UTC [orderer/multichain] addBlockSignature -> DEBU b41 &{} +orderer.example.com | 2018-01-14 11:45:34.289 UTC [msp] GetLocalMSP -> DEBU b42 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:34.289 UTC [msp] GetDefaultSigningIdentity -> DEBU b43 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:34.289 UTC [msp] GetLocalMSP -> DEBU b44 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:34.290 UTC [msp] GetDefaultSigningIdentity -> DEBU b45 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:34.290 UTC [msp/identity] Sign -> DEBU b46 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...2F0B42865502B176A97F8174E1E4269F +orderer.example.com | 2018-01-14 11:45:34.290 UTC [msp/identity] Sign -> DEBU b47 Sign: digest: 4FB9C3D1687667078E234C4FA515F1ACD2CEE447C9A9EC82CF7D40DB4A605342 +orderer.example.com | 2018-01-14 11:45:34.290 UTC [orderer/multichain] addLastConfigSignature -> DEBU b48 [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 +orderer.example.com | 2018-01-14 11:45:34.290 UTC [msp] GetLocalMSP -> DEBU b49 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:34.290 UTC [msp] GetDefaultSigningIdentity -> DEBU b4a Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:34.290 UTC [orderer/multichain] addLastConfigSignature -> DEBU b4b [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +orderer.example.com | 2018-01-14 11:45:34.290 UTC [msp] GetLocalMSP -> DEBU b4c Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:34.290 UTC [msp] GetDefaultSigningIdentity -> DEBU b4d Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:34.291 UTC [msp/identity] Sign -> DEBU b4e Sign: plaintext: 08010AFA050A0A4F7264657265724D53...2F0B42865502B176A97F8174E1E4269F +orderer.example.com | 2018-01-14 11:45:34.291 UTC [msp/identity] Sign -> DEBU b4f Sign: digest: C61EB8E6F547B4347069CF1834C24A6B1D98104C3A5855F912EA905145B0F0A6 +orderer.example.com | 2018-01-14 11:45:34.294 UTC [fsblkstorage] indexBlock -> DEBU b50 Indexing block [blockNum=1, blockHash=[]byte{0x6b, 0x28, 0x9a, 0xc6, 0x29, 0x57, 0x67, 0x99, 0x80, 0xcd, 0x5a, 0xa4, 0xc6, 0x31, 0xbb, 0xad, 0x21, 0x5a, 0x5e, 0x1b, 0xfa, 0x80, 0xe7, 0x68, 0xf1, 0x60, 0x5b, 0xdd, 0x90, 0x2, 0x8c, 0xbd} txOffsets= orderer.example.com | txId= locPointer=offset=70, bytesLength=11913 orderer.example.com | ] -orderer.example.com | 2018-01-04 01:50:58.599 UTC [fsblkstorage] updateCheckpoint -> DEBU b4a Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25665], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | 2018-01-04 01:50:58.599 UTC [orderer/multichain] WriteBlock -> DEBU b4b [channel: businesschannel] Wrote block 1 -orderer.example.com | 2018-01-04 01:51:00.671 UTC [orderer/main] Deliver -> DEBU b4c Starting new Deliver handler -orderer.example.com | 2018-01-04 01:51:00.671 UTC [orderer/common/deliver] Handle -> DEBU b4d Starting new deliver loop -orderer.example.com | 2018-01-04 01:51:00.671 UTC [orderer/common/deliver] Handle -> DEBU b4e Attempting to read seek info message -orderer.example.com | 2018-01-04 01:51:00.680 UTC [orderer/main] Broadcast -> DEBU b4f Starting new Broadcast handler -orderer.example.com | 2018-01-04 01:51:00.681 UTC [orderer/common/broadcast] Handle -> DEBU b50 Starting new broadcast loop -orderer.example.com | 2018-01-04 01:51:00.681 UTC [orderer/common/broadcast] Handle -> DEBU b51 Preprocessing CONFIG_UPDATE -orderer.example.com | 2018-01-04 01:51:00.681 UTC [orderer/configupdate] Process -> DEBU b52 Processing channel reconfiguration request for channel businesschannel -orderer.example.com | 2018-01-04 01:51:00.682 UTC [common/configtx] addToMap -> DEBU b53 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.682 UTC [common/configtx] addToMap -> DEBU b54 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.682 UTC [common/configtx] addToMap -> DEBU b55 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.682 UTC [common/configtx] addToMap -> DEBU b56 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b57 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b58 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b59 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b5a Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b5b Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.684 UTC [common/configtx] addToMap -> DEBU b5c Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.684 UTC [common/configtx] addToMap -> DEBU b5d Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.684 UTC [common/configtx] addToMap -> DEBU b5e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.685 UTC [common/configtx] addToMap -> DEBU b5f Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.685 UTC [common/configtx] addToMap -> DEBU b60 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.685 UTC [common/configtx] addToMap -> DEBU b61 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.686 UTC [policies] GetPolicy -> DEBU b62 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.686 UTC [cauthdsl] func1 -> DEBU b63 0xc4200265e8 gate 1515030660686417200 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.686 UTC [cauthdsl] func2 -> DEBU b64 0xc4200265e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.686 UTC [cauthdsl] func2 -> DEBU b65 0xc4200265e8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.687 UTC [msp/identity] newIdentity -> DEBU b66 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:34.294 UTC [fsblkstorage] updateCheckpoint -> DEBU b51 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25666], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | 2018-01-14 11:45:34.295 UTC [orderer/multichain] WriteBlock -> DEBU b52 [channel: businesschannel] Wrote block 1 +orderer.example.com | 2018-01-14 11:45:36.321 UTC [orderer/main] Deliver -> DEBU b53 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:45:36.321 UTC [orderer/common/deliver] Handle -> DEBU b54 Starting new deliver loop +orderer.example.com | 2018-01-14 11:45:36.322 UTC [orderer/common/deliver] Handle -> DEBU b55 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:45:36.331 UTC [orderer/main] Broadcast -> DEBU b56 Starting new Broadcast handler +orderer.example.com | 2018-01-14 11:45:36.331 UTC [orderer/common/broadcast] Handle -> DEBU b57 Starting new broadcast loop +orderer.example.com | 2018-01-14 11:45:36.332 UTC [orderer/common/broadcast] Handle -> DEBU b58 Preprocessing CONFIG_UPDATE +orderer.example.com | 2018-01-14 11:45:36.332 UTC [orderer/configupdate] Process -> DEBU b59 Processing channel reconfiguration request for channel businesschannel +orderer.example.com | 2018-01-14 11:45:36.332 UTC [common/configtx] addToMap -> DEBU b5a Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5b Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5c Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5d Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b60 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b61 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b62 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b63 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b64 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b65 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.334 UTC [common/configtx] addToMap -> DEBU b66 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.334 UTC [common/configtx] addToMap -> DEBU b67 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.334 UTC [common/configtx] addToMap -> DEBU b68 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.334 UTC [policies] GetPolicy -> DEBU b69 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.334 UTC [cauthdsl] func1 -> DEBU b6a 0xc4200262a0 gate 1515930336334548364 evaluation starts +orderer.example.com | 2018-01-14 11:45:36.334 UTC [cauthdsl] func2 -> DEBU b6b 0xc4200262a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:36.334 UTC [cauthdsl] func2 -> DEBU b6c 0xc4200262a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:36.335 UTC [msp/identity] newIdentity -> DEBU b6d Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13100,179 +13114,87 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.688 UTC [msp] SatisfiesPrincipal -> DEBU b67 Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.688 UTC [cauthdsl] func2 -> DEBU b68 0xc4200265e8 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:00.688 UTC [msp/identity] Verify -> DEBU b69 Verify: digest = 00000000 1c d5 c2 9c 53 ce a3 c5 b0 ea 98 b7 91 2f f4 52 |....S......../.R| -orderer.example.com | 00000010 f4 f1 8f d9 19 16 77 80 e2 3f 4a 04 63 da 0e ac |......w..?J.c...| -orderer.example.com | 2018-01-04 01:51:00.688 UTC [msp/identity] Verify -> DEBU b6a Verify: sig = 00000000 30 45 02 21 00 ef b8 fb 6a 68 3f bd df 70 a8 37 |0E.!....jh?..p.7| -orderer.example.com | 00000010 17 7b dd e8 51 ed 3d 2d 06 74 bd 70 0e d2 7e 68 |.{..Q.=-.t.p..~h| -orderer.example.com | 00000020 42 d3 e3 80 52 02 20 5e 4b 05 5a 4c d5 0a 42 f8 |B...R. ^K.ZL..B.| -orderer.example.com | 00000030 24 c5 7f 63 f6 32 59 39 92 5f 3f a6 9b 37 fb 4d |$..c.2Y9._?..7.M| -orderer.example.com | 00000040 06 fd fe de 97 ae 1e |.......| -orderer.example.com | 2018-01-04 01:51:00.689 UTC [cauthdsl] func2 -> DEBU b6b 0xc4200265e8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:00.689 UTC [cauthdsl] func1 -> DEBU b6c 0xc4200265e8 gate 1515030660686417200 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:00.690 UTC [common/configtx] recurseConfigMap -> DEBU b6d Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.690 UTC [common/configtx] recurseConfigMap -> DEBU b6e Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.690 UTC [common/configtx] recurseConfigMap -> DEBU b6f Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.691 UTC [common/configtx] recurseConfigMap -> DEBU b70 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.691 UTC [common/configtx] recurseConfigMap -> DEBU b71 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.691 UTC [common/configtx] recurseConfigMap -> DEBU b72 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.691 UTC [common/configtx] recurseConfigMap -> DEBU b73 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b74 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b75 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b76 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b77 Setting policy for key Readers to -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b78 Setting policy for key Writers to -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b79 Setting policy for key Admins to -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b7a Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b7b Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b7c Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/configtx] recurseConfigMap -> DEBU b7d Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/configtx] recurseConfigMap -> DEBU b7e Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/configtx] recurseConfigMap -> DEBU b7f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/configtx] processConfig -> DEBU b80 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] NewStandardValues -> DEBU b81 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b82 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b83 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b84 Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b85 Processing field: Consortium -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b86 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b87 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b88 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] NewStandardValues -> DEBU b89 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8a Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8b Processing field: BatchSize -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8c Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8d Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8e Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b8f Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b90 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b91 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b92 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] NewStandardValues -> DEBU b93 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b94 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b95 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b96 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU b97 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU b98 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU b99 Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU b9a Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU b9b Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU b9c Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU b9d Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU b9e Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU b9f Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU ba0 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU ba1 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU ba2 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU ba3 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU ba4 Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU ba5 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU ba6 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU ba7 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU ba8 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU ba9 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.695 UTC [common/config] initializeProtosStruct -> DEBU baa Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.695 UTC [policies] ProposePolicy -> DEBU bab Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.695 UTC [policies] ProposePolicy -> DEBU bac Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.695 UTC [policies] ProposePolicy -> DEBU bad Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.695 UTC [common/config] validateMSP -> DEBU bae Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.695 UTC [msp] NewBccspMsp -> DEBU baf Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.695 UTC [msp] Setup -> DEBU bb0 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:51:00.695 UTC [msp/identity] newIdentity -> DEBU bb1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.696 UTC [msp/identity] newIdentity -> DEBU bb2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.696 UTC [msp/identity] newIdentity -> DEBU bb3 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.697 UTC [msp] Validate -> DEBU bb4 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:51:00.697 UTC [common/config] Validate -> DEBU bb5 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:51:00.697 UTC [common/config] validateMSP -> DEBU bb6 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:51:00.697 UTC [msp] NewBccspMsp -> DEBU bb7 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.697 UTC [msp] Setup -> DEBU bb8 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:51:00.697 UTC [msp/identity] newIdentity -> DEBU bb9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -orderer.example.com | H7n8z1pj5w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.698 UTC [msp/identity] newIdentity -> DEBU bba Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.698 UTC [msp/identity] newIdentity -> DEBU bbb Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -orderer.example.com | xHTBvxfK6mAzmUitFmY= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.699 UTC [msp] Validate -> DEBU bbc MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:51:00.699 UTC [common/config] Validate -> DEBU bbd Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:51:00.699 UTC [common/config] validateMSP -> DEBU bbe Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:51:00.699 UTC [msp] NewBccspMsp -> DEBU bbf Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.699 UTC [msp] Setup -> DEBU bc0 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:51:00.700 UTC [msp/identity] newIdentity -> DEBU bc1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.335 UTC [msp] SatisfiesPrincipal -> DEBU b6e Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.335 UTC [cauthdsl] func2 -> DEBU b6f 0xc4200262a0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:36.335 UTC [msp/identity] Verify -> DEBU b70 Verify: digest = 00000000 c3 7e 13 97 11 8f 8d ae 6e 77 14 93 5d 5e 84 01 |.~......nw..]^..| +orderer.example.com | 00000010 d3 b2 a7 73 06 2c 87 19 e1 94 ff fc b6 28 68 18 |...s.,.......(h.| +orderer.example.com | 2018-01-14 11:45:36.335 UTC [msp/identity] Verify -> DEBU b71 Verify: sig = 00000000 30 45 02 21 00 81 98 e7 87 77 c4 bf 8d d8 66 34 |0E.!.....w....f4| +orderer.example.com | 00000010 6c 42 b3 33 db 11 f7 2f e2 9f f5 10 40 56 ca 81 |lB.3.../....@V..| +orderer.example.com | 00000020 ec 0a bb 1b 7e 02 20 40 79 fb 1d 28 3c cf fe b1 |....~. @y..(<...| +orderer.example.com | 00000030 15 07 43 0f ef ce a1 0d 09 0d 45 ce 25 b9 b1 12 |..C.......E.%...| +orderer.example.com | 00000040 f2 28 fe a6 78 9f 80 |.(..x..| +orderer.example.com | 2018-01-14 11:45:36.336 UTC [cauthdsl] func2 -> DEBU b72 0xc4200262a0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:36.336 UTC [cauthdsl] func1 -> DEBU b73 0xc4200262a0 gate 1515930336334548364 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b74 Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b75 Setting policy for key Writers to +orderer.example.com | 2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b76 Setting policy for key Admins to +orderer.example.com | 2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b77 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b78 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b79 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7a Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7b Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7c Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7d Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7e Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7f Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b80 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b81 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b82 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b83 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/configtx] recurseConfigMap -> DEBU b84 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/configtx] recurseConfigMap -> DEBU b85 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/configtx] recurseConfigMap -> DEBU b86 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/configtx] processConfig -> DEBU b87 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/config] NewStandardValues -> DEBU b88 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/config] initializeProtosStruct -> DEBU b89 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/config] initializeProtosStruct -> DEBU b8a Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/config] initializeProtosStruct -> DEBU b8b Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/config] initializeProtosStruct -> DEBU b8c Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:36.338 UTC [policies] ProposePolicy -> DEBU b8d Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:36.338 UTC [policies] ProposePolicy -> DEBU b8e Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:36.338 UTC [policies] ProposePolicy -> DEBU b8f Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:36.338 UTC [common/config] NewStandardValues -> DEBU b90 Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:36.338 UTC [policies] ProposePolicy -> DEBU b91 Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b92 Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b93 Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:36.339 UTC [common/config] NewStandardValues -> DEBU b94 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.339 UTC [common/config] initializeProtosStruct -> DEBU b95 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.339 UTC [common/config] NewStandardValues -> DEBU b96 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:36.339 UTC [common/config] initializeProtosStruct -> DEBU b97 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.339 UTC [common/config] NewStandardValues -> DEBU b98 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.339 UTC [common/config] initializeProtosStruct -> DEBU b99 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b9a Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b9b Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b9c Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU b9d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU b9e Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU b9f Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba0 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU ba1 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba2 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU ba3 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU ba4 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU ba5 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU ba6 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba7 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba8 Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba9 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU baa Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU bab Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU bac Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU bad Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU bae Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU baf Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU bb0 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.341 UTC [common/config] initializeProtosStruct -> DEBU bb1 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.341 UTC [policies] ProposePolicy -> DEBU bb2 Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.341 UTC [policies] ProposePolicy -> DEBU bb3 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.341 UTC [policies] ProposePolicy -> DEBU bb4 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.341 UTC [common/config] Validate -> DEBU bb5 Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:36.341 UTC [common/config] validateMSP -> DEBU bb6 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:36.341 UTC [msp] NewBccspMsp -> DEBU bb7 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.341 UTC [msp] Setup -> DEBU bb8 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:36.341 UTC [msp/identity] newIdentity -> DEBU bb9 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -13287,7 +13209,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.700 UTC [msp/identity] newIdentity -> DEBU bc2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.342 UTC [msp/identity] newIdentity -> DEBU bba Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13301,7 +13223,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.700 UTC [msp/identity] newIdentity -> DEBU bc3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.342 UTC [msp/identity] newIdentity -> DEBU bbb Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13315,242 +13237,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.701 UTC [msp] Validate -> DEBU bc4 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:51:00.701 UTC [msp] Setup -> DEBU bc5 Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:51:00.701 UTC [msp] Setup -> DEBU bc6 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:51:00.701 UTC [msp] GetLocalMSP -> DEBU bc7 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:00.701 UTC [msp] GetDefaultSigningIdentity -> DEBU bc8 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:00.703 UTC [msp] GetLocalMSP -> DEBU bc9 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:00.703 UTC [msp] GetDefaultSigningIdentity -> DEBU bca Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:00.703 UTC [msp/identity] Sign -> DEBU bcb Sign: plaintext: 0AB7060A1B08011A06088491B6D20522...4071163ABB1BCAC996E5B48473BFDAFD -orderer.example.com | 2018-01-04 01:51:00.703 UTC [msp/identity] Sign -> DEBU bcc Sign: digest: BC484172328D861C38696F5619BC82AE965BC26263A192B22F2E4E02E77EEFD3 -orderer.example.com | 2018-01-04 01:51:00.703 UTC [orderer/common/broadcast] Handle -> DEBU bcd [channel: businesschannel] Broadcast is filtering message of type CONFIG -orderer.example.com | 2018-01-04 01:51:00.703 UTC [policies] GetPolicy -> DEBU bce Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.703 UTC [cauthdsl] func1 -> DEBU bcf 0xc4200263c8 gate 1515030660703875100 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.703 UTC [cauthdsl] func2 -> DEBU bd0 0xc4200263c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.703 UTC [cauthdsl] func2 -> DEBU bd1 0xc4200263c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.704 UTC [msp/identity] newIdentity -> DEBU bd2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bd3 0xc4200263c8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bd4 0xc4200263c8 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func1 -> DEBU bd5 0xc4200263c8 gate 1515030660703875100 evaluation fails -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func1 -> DEBU bd6 0xc4200263d8 gate 1515030660704317000 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bd7 0xc4200263d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bd8 0xc4200263d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.704 UTC [msp/identity] newIdentity -> DEBU bd9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bda 0xc4200263d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bdb 0xc4200263d8 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func1 -> DEBU bdc 0xc4200263d8 gate 1515030660704317000 evaluation fails -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func1 -> DEBU bdd 0xc4200263e8 gate 1515030660704715400 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bde 0xc4200263e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bdf 0xc4200263e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.704 UTC [msp/identity] newIdentity -> DEBU be0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.705 UTC [msp] SatisfiesPrincipal -> DEBU be1 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-04 01:51:00.705 UTC [msp] Validate -> DEBU be2 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:51:00.705 UTC [cauthdsl] func2 -> DEBU be3 0xc4200263e8 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:00.705 UTC [msp/identity] Verify -> DEBU be4 Verify: digest = 00000000 bc 48 41 72 32 8d 86 1c 38 69 6f 56 19 bc 82 ae |.HAr2...8ioV....| -orderer.example.com | 00000010 96 5b c2 62 63 a1 92 b2 2f 2e 4e 02 e7 7e ef d3 |.[.bc.../.N..~..| -orderer.example.com | 2018-01-04 01:51:00.705 UTC [msp/identity] Verify -> DEBU be5 Verify: sig = 00000000 30 44 02 20 65 58 3b cc e1 1f 70 6b 5f 90 21 5c |0D. eX;...pk_.!\| -orderer.example.com | 00000010 fe 29 9c 66 68 fb 55 d3 bc 2d be ea a9 cc d2 7a |.).fh.U..-.....z| -orderer.example.com | 00000020 d9 99 e0 eb 02 20 1b e4 b7 b3 2b b8 38 c7 e4 c8 |..... ....+.8...| -orderer.example.com | 00000030 c1 22 a6 0c ff 14 20 4c 19 d2 3f 57 10 30 81 ab |.".... L..?W.0..| -orderer.example.com | 00000040 e2 1f 25 98 19 53 |..%..S| -orderer.example.com | 2018-01-04 01:51:00.705 UTC [cauthdsl] func2 -> DEBU be6 0xc4200263e8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:00.705 UTC [cauthdsl] func1 -> DEBU be7 0xc4200263e8 gate 1515030660704715400 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:00.705 UTC [orderer/common/sigfilter] Apply -> DEBU be8 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916460 1 [0xc42010eae8 0xc42010eb30]}) %!s(*policies.implicitMetaPolicy=&{0xc420b97e80 1 [0xc42010e9e8]})]} -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU be9 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bea Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU beb Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bec Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bed Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bee Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bef Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf0 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf1 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf2 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf3 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf4 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf5 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf6 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.706 UTC [policies] GetPolicy -> DEBU bf8 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.706 UTC [cauthdsl] func1 -> DEBU bf9 0xc4200269f8 gate 1515030660706061400 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.706 UTC [cauthdsl] func2 -> DEBU bfa 0xc4200269f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.706 UTC [cauthdsl] func2 -> DEBU bfb 0xc4200269f8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.706 UTC [msp/identity] newIdentity -> DEBU bfc Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.706 UTC [msp] SatisfiesPrincipal -> DEBU bfd Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.706 UTC [cauthdsl] func2 -> DEBU bfe 0xc4200269f8 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:00.706 UTC [msp/identity] Verify -> DEBU bff Verify: digest = 00000000 1c d5 c2 9c 53 ce a3 c5 b0 ea 98 b7 91 2f f4 52 |....S......../.R| -orderer.example.com | 00000010 f4 f1 8f d9 19 16 77 80 e2 3f 4a 04 63 da 0e ac |......w..?J.c...| -orderer.example.com | 2018-01-04 01:51:00.706 UTC [msp/identity] Verify -> DEBU c00 Verify: sig = 00000000 30 45 02 21 00 ef b8 fb 6a 68 3f bd df 70 a8 37 |0E.!....jh?..p.7| -orderer.example.com | 00000010 17 7b dd e8 51 ed 3d 2d 06 74 bd 70 0e d2 7e 68 |.{..Q.=-.t.p..~h| -orderer.example.com | 00000020 42 d3 e3 80 52 02 20 5e 4b 05 5a 4c d5 0a 42 f8 |B...R. ^K.ZL..B.| -orderer.example.com | 00000030 24 c5 7f 63 f6 32 59 39 92 5f 3f a6 9b 37 fb 4d |$..c.2Y9._?..7.M| -orderer.example.com | 00000040 06 fd fe de 97 ae 1e |.......| -orderer.example.com | 2018-01-04 01:51:00.707 UTC [cauthdsl] func2 -> DEBU c01 0xc4200269f8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:00.707 UTC [cauthdsl] func1 -> DEBU c02 0xc4200269f8 gate 1515030660706061400 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c03 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c04 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c05 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c06 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c07 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c08 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c09 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0a Setting policy for key Readers to -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0b Setting policy for key Writers to -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0c Setting policy for key Admins to -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0d Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0e Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0f Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c10 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c11 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/configtx] recurseConfigMap -> DEBU c12 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/configtx] recurseConfigMap -> DEBU c13 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/configtx] recurseConfigMap -> DEBU c14 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/configtx] recurseConfigMap -> DEBU c15 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/configtx] processConfig -> DEBU c16 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/config] NewStandardValues -> DEBU c17 Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/config] initializeProtosStruct -> DEBU c18 Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/config] initializeProtosStruct -> DEBU c19 Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/config] initializeProtosStruct -> DEBU c1a Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:51:00.709 UTC [common/config] initializeProtosStruct -> DEBU c1b Processing field: Consortium -orderer.example.com | 2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c1c Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c1d Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c1e Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:51:00.710 UTC [common/config] NewStandardValues -> DEBU c1f Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c20 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c21 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c22 Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c23 Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c24 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c25 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c26 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c27 Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c28 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:51:00.711 UTC [common/config] NewStandardValues -> DEBU c29 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.711 UTC [common/config] initializeProtosStruct -> DEBU c2a Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c2b Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c2c Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c2d Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.711 UTC [common/config] NewStandardValues -> DEBU c2e Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c2f Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c30 Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c31 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:51:00.711 UTC [common/config] NewStandardValues -> DEBU c32 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.711 UTC [common/config] initializeProtosStruct -> DEBU c33 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.711 UTC [common/config] NewStandardValues -> DEBU c34 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:51:00.711 UTC [common/config] initializeProtosStruct -> DEBU c35 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.712 UTC [common/config] NewStandardValues -> DEBU c36 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.712 UTC [common/config] initializeProtosStruct -> DEBU c37 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.712 UTC [policies] ProposePolicy -> DEBU c38 Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.712 UTC [policies] ProposePolicy -> DEBU c39 Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.712 UTC [policies] ProposePolicy -> DEBU c3a Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.712 UTC [common/config] NewStandardValues -> DEBU c3b Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.712 UTC [common/config] initializeProtosStruct -> DEBU c3c Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.712 UTC [common/config] NewStandardValues -> DEBU c3d Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:51:00.712 UTC [common/config] initializeProtosStruct -> DEBU c3e Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.712 UTC [common/config] NewStandardValues -> DEBU c3f Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.712 UTC [common/config] initializeProtosStruct -> DEBU c40 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.712 UTC [policies] ProposePolicy -> DEBU c41 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.713 UTC [policies] ProposePolicy -> DEBU c42 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.713 UTC [policies] ProposePolicy -> DEBU c43 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.713 UTC [common/config] validateMSP -> DEBU c44 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.713 UTC [msp] NewBccspMsp -> DEBU c45 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.713 UTC [msp] Setup -> DEBU c46 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:51:00.714 UTC [msp/identity] newIdentity -> DEBU c47 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.714 UTC [msp/identity] newIdentity -> DEBU c48 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.714 UTC [msp/identity] newIdentity -> DEBU c49 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.715 UTC [msp] Validate -> DEBU c4a MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:51:00.715 UTC [common/config] Validate -> DEBU c4b Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:51:00.715 UTC [common/config] validateMSP -> DEBU c4c Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:51:00.715 UTC [msp] NewBccspMsp -> DEBU c4d Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.715 UTC [msp] Setup -> DEBU c4e Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:51:00.716 UTC [msp/identity] newIdentity -> DEBU c4f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.343 UTC [msp] Validate -> DEBU bbc MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:36.343 UTC [common/config] Validate -> DEBU bbd Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:36.343 UTC [common/config] validateMSP -> DEBU bbe Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:36.343 UTC [msp] NewBccspMsp -> DEBU bbf Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.343 UTC [msp] Setup -> DEBU bc0 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:36.343 UTC [msp/identity] newIdentity -> DEBU bc1 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13565,7 +13257,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.716 UTC [msp/identity] newIdentity -> DEBU c50 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.344 UTC [msp/identity] newIdentity -> DEBU bc2 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13579,7 +13271,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.717 UTC [msp/identity] newIdentity -> DEBU c51 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.349 UTC [msp/identity] newIdentity -> DEBU bc3 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13593,12 +13285,204 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.717 UTC [msp] Validate -> DEBU c52 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:51:00.718 UTC [common/config] Validate -> DEBU c53 Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:51:00.718 UTC [common/config] validateMSP -> DEBU c54 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:51:00.718 UTC [msp] NewBccspMsp -> DEBU c55 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.718 UTC [msp] Setup -> DEBU c56 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:51:00.718 UTC [msp/identity] newIdentity -> DEBU c57 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.351 UTC [msp] Validate -> DEBU bc4 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:36.351 UTC [common/config] validateMSP -> DEBU bc5 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.351 UTC [msp] NewBccspMsp -> DEBU bc6 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.351 UTC [msp] Setup -> DEBU bc7 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:36.352 UTC [msp/identity] newIdentity -> DEBU bc8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.352 UTC [msp/identity] newIdentity -> DEBU bc9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.352 UTC [msp/identity] newIdentity -> DEBU bca Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp] Validate -> DEBU bcb MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp] Setup -> DEBU bcc Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp] Setup -> DEBU bcd MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp] GetLocalMSP -> DEBU bce Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp] GetDefaultSigningIdentity -> DEBU bcf Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp] GetLocalMSP -> DEBU bd0 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp] GetDefaultSigningIdentity -> DEBU bd1 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp/identity] Sign -> DEBU bd2 Sign: plaintext: 0AB7060A1B08011A0608E085EDD20522...8A898DA2D6120AEBE0098A3614A0073A +orderer.example.com | 2018-01-14 11:45:36.353 UTC [msp/identity] Sign -> DEBU bd3 Sign: digest: 8D147CC56C62AA570FA1F00B99D21C969E1EBCD409E5E4157F176059D4E79838 +orderer.example.com | 2018-01-14 11:45:36.354 UTC [orderer/common/broadcast] Handle -> DEBU bd4 [channel: businesschannel] Broadcast is filtering message of type CONFIG +orderer.example.com | 2018-01-14 11:45:36.354 UTC [policies] GetPolicy -> DEBU bd5 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.354 UTC [cauthdsl] func1 -> DEBU bd6 0xc420026180 gate 1515930336354974264 evaluation starts +orderer.example.com | 2018-01-14 11:45:36.355 UTC [cauthdsl] func2 -> DEBU bd7 0xc420026180 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:36.355 UTC [cauthdsl] func2 -> DEBU bd8 0xc420026180 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:36.355 UTC [msp/identity] newIdentity -> DEBU bd9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.355 UTC [msp] SatisfiesPrincipal -> DEBU bda Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:45:36.355 UTC [msp] Validate -> DEBU bdb MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:36.355 UTC [cauthdsl] func2 -> DEBU bdc 0xc420026180 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:36.355 UTC [msp/identity] Verify -> DEBU bdd Verify: digest = 00000000 8d 14 7c c5 6c 62 aa 57 0f a1 f0 0b 99 d2 1c 96 |..|.lb.W........| +orderer.example.com | 00000010 9e 1e bc d4 09 e5 e4 15 7f 17 60 59 d4 e7 98 38 |..........`Y...8| +orderer.example.com | 2018-01-14 11:45:36.355 UTC [msp/identity] Verify -> DEBU bde Verify: sig = 00000000 30 45 02 21 00 91 24 4a 84 29 74 b4 ce cc 11 f5 |0E.!..$J.)t.....| +orderer.example.com | 00000010 55 7d 89 6d cf 0c d0 53 cb 1f be 7b 51 08 bf c0 |U}.m...S...{Q...| +orderer.example.com | 00000020 c6 18 d8 d5 50 02 20 14 f1 aa 1f de a4 bd 6a 58 |....P. .......jX| +orderer.example.com | 00000030 ee 74 d2 f9 e9 a1 8d 1c 85 9c dc aa 1d f2 33 ef |.t............3.| +orderer.example.com | 00000040 55 38 4f d7 55 1a 25 |U8O.U.%| +orderer.example.com | 2018-01-14 11:45:36.355 UTC [cauthdsl] func2 -> DEBU bdf 0xc420026180 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:36.356 UTC [cauthdsl] func1 -> DEBU be0 0xc420026180 gate 1515930336354974264 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:36.356 UTC [orderer/common/sigfilter] Apply -> DEBU be1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b380a0 1 [0xc420150dd8]}) %!s(*policies.implicitMetaPolicy=&{0xc420b386a0 1 [0xc420150e70 0xc4201510e8]})]} +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be2 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be3 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be4 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be5 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be6 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be8 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be9 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bea Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU beb Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bec Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bed Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bee Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bef Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bf0 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.357 UTC [policies] GetPolicy -> DEBU bf1 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.357 UTC [cauthdsl] func1 -> DEBU bf2 0xc420026980 gate 1515930336357197964 evaluation starts +orderer.example.com | 2018-01-14 11:45:36.357 UTC [cauthdsl] func2 -> DEBU bf3 0xc420026980 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:36.357 UTC [cauthdsl] func2 -> DEBU bf4 0xc420026980 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:36.357 UTC [msp/identity] newIdentity -> DEBU bf5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.357 UTC [msp] SatisfiesPrincipal -> DEBU bf6 Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.357 UTC [cauthdsl] func2 -> DEBU bf7 0xc420026980 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:36.357 UTC [msp/identity] Verify -> DEBU bf8 Verify: digest = 00000000 c3 7e 13 97 11 8f 8d ae 6e 77 14 93 5d 5e 84 01 |.~......nw..]^..| +orderer.example.com | 00000010 d3 b2 a7 73 06 2c 87 19 e1 94 ff fc b6 28 68 18 |...s.,.......(h.| +orderer.example.com | 2018-01-14 11:45:36.357 UTC [msp/identity] Verify -> DEBU bf9 Verify: sig = 00000000 30 45 02 21 00 81 98 e7 87 77 c4 bf 8d d8 66 34 |0E.!.....w....f4| +orderer.example.com | 00000010 6c 42 b3 33 db 11 f7 2f e2 9f f5 10 40 56 ca 81 |lB.3.../....@V..| +orderer.example.com | 00000020 ec 0a bb 1b 7e 02 20 40 79 fb 1d 28 3c cf fe b1 |....~. @y..(<...| +orderer.example.com | 00000030 15 07 43 0f ef ce a1 0d 09 0d 45 ce 25 b9 b1 12 |..C.......E.%...| +orderer.example.com | 00000040 f2 28 fe a6 78 9f 80 |.(..x..| +orderer.example.com | 2018-01-14 11:45:36.358 UTC [cauthdsl] func2 -> DEBU bfa 0xc420026980 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:36.358 UTC [cauthdsl] func1 -> DEBU bfb 0xc420026980 gate 1515930336357197964 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU bfc Setting policy for key Admins to +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU bfd Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU bfe Setting policy for key Writers to +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU bff Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c00 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c01 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c02 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c03 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c04 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c05 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c06 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c07 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c08 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c09 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c0a Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/configtx] recurseConfigMap -> DEBU c0b Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/configtx] recurseConfigMap -> DEBU c0c Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/configtx] recurseConfigMap -> DEBU c0d Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/configtx] recurseConfigMap -> DEBU c0e Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/configtx] processConfig -> DEBU c0f Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/config] NewStandardValues -> DEBU c10 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/config] initializeProtosStruct -> DEBU c11 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/config] initializeProtosStruct -> DEBU c12 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/config] initializeProtosStruct -> DEBU c13 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/config] initializeProtosStruct -> DEBU c14 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c15 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c16 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c17 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:36.359 UTC [common/config] NewStandardValues -> DEBU c18 Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c19 Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c1a Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c1b Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c1c Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c1d Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c1e Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c1f Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c20 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c21 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c22 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c23 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c24 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c25 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c26 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c27 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c28 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c29 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c2a Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c2b Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c2c Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c2d Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c2e Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c2f Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c30 Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c31 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c32 Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c33 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c34 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c35 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c36 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c37 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c38 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.361 UTC [common/config] initializeProtosStruct -> DEBU c39 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.361 UTC [policies] ProposePolicy -> DEBU c3a Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.361 UTC [policies] ProposePolicy -> DEBU c3b Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.361 UTC [policies] ProposePolicy -> DEBU c3c Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.361 UTC [common/config] Validate -> DEBU c3d Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:36.361 UTC [common/config] validateMSP -> DEBU c3e Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:36.361 UTC [msp] NewBccspMsp -> DEBU c3f Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.361 UTC [msp] Setup -> DEBU c40 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:36.361 UTC [msp/identity] newIdentity -> DEBU c41 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -13613,7 +13497,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.719 UTC [msp/identity] newIdentity -> DEBU c58 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.362 UTC [msp/identity] newIdentity -> DEBU c42 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13627,7 +13511,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.719 UTC [msp/identity] newIdentity -> DEBU c59 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.362 UTC [msp/identity] newIdentity -> DEBU c43 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13641,196 +13525,12 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.719 UTC [msp] Validate -> DEBU c5a MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:51:00.720 UTC [msp] Setup -> DEBU c5b Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:51:00.720 UTC [msp] Setup -> DEBU c5c MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:51:00.720 UTC [orderer/common/broadcast] Handle -> DEBU c5d [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -orderer.example.com | 2018-01-04 01:51:00.720 UTC [policies] GetPolicy -> DEBU c5e Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.720 UTC [cauthdsl] func1 -> DEBU c5f 0xc42010e030 gate 1515030660720557600 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.720 UTC [cauthdsl] func2 -> DEBU c60 0xc42010e030 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.720 UTC [cauthdsl] func2 -> DEBU c61 0xc42010e030 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.720 UTC [msp/identity] newIdentity -> DEBU c62 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.721 UTC [cauthdsl] func2 -> DEBU c63 0xc42010e030 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | 2018-01-04 01:51:00.721 UTC [cauthdsl] func2 -> DEBU c64 0xc42010e030 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:00.721 UTC [cauthdsl] func1 -> DEBU c65 0xc42010e030 gate 1515030660720557600 evaluation fails -orderer.example.com | 2018-01-04 01:51:00.721 UTC [cauthdsl] func1 -> DEBU c66 0xc42010e050 gate 1515030660721209900 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.721 UTC [cauthdsl] func2 -> DEBU c67 0xc42010e050 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.721 UTC [cauthdsl] func2 -> DEBU c68 0xc42010e050 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.721 UTC [msp/identity] newIdentity -> DEBU c69 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c6a 0xc42010e050 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | 2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c6b 0xc42010e050 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:00.722 UTC [cauthdsl] func1 -> DEBU c6c 0xc42010e050 gate 1515030660721209900 evaluation fails -orderer.example.com | 2018-01-04 01:51:00.722 UTC [cauthdsl] func1 -> DEBU c6d 0xc42010e068 gate 1515030660722275300 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c6e 0xc42010e068 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c6f 0xc42010e068 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.722 UTC [msp/identity] newIdentity -> DEBU c70 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.722 UTC [msp] SatisfiesPrincipal -> DEBU c71 Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | 2018-01-04 01:51:00.722 UTC [msp] Validate -> DEBU c72 MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c73 0xc42010e068 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:00.723 UTC [msp/identity] Verify -> DEBU c74 Verify: digest = 00000000 bc 48 41 72 32 8d 86 1c 38 69 6f 56 19 bc 82 ae |.HAr2...8ioV....| -orderer.example.com | 00000010 96 5b c2 62 63 a1 92 b2 2f 2e 4e 02 e7 7e ef d3 |.[.bc.../.N..~..| -orderer.example.com | 2018-01-04 01:51:00.723 UTC [msp/identity] Verify -> DEBU c75 Verify: sig = 00000000 30 44 02 20 65 58 3b cc e1 1f 70 6b 5f 90 21 5c |0D. eX;...pk_.!\| -orderer.example.com | 00000010 fe 29 9c 66 68 fb 55 d3 bc 2d be ea a9 cc d2 7a |.).fh.U..-.....z| -orderer.example.com | 00000020 d9 99 e0 eb 02 20 1b e4 b7 b3 2b b8 38 c7 e4 c8 |..... ....+.8...| -orderer.example.com | 00000030 c1 22 a6 0c ff 14 20 4c 19 d2 3f 57 10 30 81 ab |.".... L..?W.0..| -orderer.example.com | 00000040 e2 1f 25 98 19 53 |..%..S| -orderer.example.com | 2018-01-04 01:51:00.723 UTC [cauthdsl] func2 -> DEBU c76 0xc42010e068 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:00.723 UTC [cauthdsl] func1 -> DEBU c77 0xc42010e068 gate 1515030660722275300 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:00.723 UTC [orderer/common/sigfilter] Apply -> DEBU c78 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916460 1 [0xc42010eae8 0xc42010eb30]}) %!s(*policies.implicitMetaPolicy=&{0xc420b97e80 1 [0xc42010e9e8]})]} -orderer.example.com | 2018-01-04 01:51:00.723 UTC [common/configtx] addToMap -> DEBU c79 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7a Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7b Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7c Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7d Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7e Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7f Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c80 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c81 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c82 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.725 UTC [common/configtx] addToMap -> DEBU c83 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.725 UTC [common/configtx] addToMap -> DEBU c84 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.725 UTC [orderer/common/deliver] Handle -> WARN c86 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:51:00.725 UTC [orderer/main] func1 -> DEBU c87 Closing Deliver stream -orderer.example.com | 2018-01-04 01:51:00.725 UTC [common/configtx] addToMap -> DEBU c85 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.726 UTC [common/configtx] addToMap -> DEBU c88 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.726 UTC [common/configtx] addToMap -> DEBU c89 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.726 UTC [policies] GetPolicy -> DEBU c8a Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.726 UTC [cauthdsl] func1 -> DEBU c8b 0xc42010ec80 gate 1515030660726538200 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.726 UTC [cauthdsl] func2 -> DEBU c8c 0xc42010ec80 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.726 UTC [cauthdsl] func2 -> DEBU c8d 0xc42010ec80 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.727 UTC [msp/identity] newIdentity -> DEBU c8e Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.727 UTC [msp] SatisfiesPrincipal -> DEBU c8f Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.727 UTC [cauthdsl] func2 -> DEBU c90 0xc42010ec80 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:00.727 UTC [msp/identity] Verify -> DEBU c91 Verify: digest = 00000000 1c d5 c2 9c 53 ce a3 c5 b0 ea 98 b7 91 2f f4 52 |....S......../.R| -orderer.example.com | 00000010 f4 f1 8f d9 19 16 77 80 e2 3f 4a 04 63 da 0e ac |......w..?J.c...| -orderer.example.com | 2018-01-04 01:51:00.727 UTC [msp/identity] Verify -> DEBU c92 Verify: sig = 00000000 30 45 02 21 00 ef b8 fb 6a 68 3f bd df 70 a8 37 |0E.!....jh?..p.7| -orderer.example.com | 00000010 17 7b dd e8 51 ed 3d 2d 06 74 bd 70 0e d2 7e 68 |.{..Q.=-.t.p..~h| -orderer.example.com | 00000020 42 d3 e3 80 52 02 20 5e 4b 05 5a 4c d5 0a 42 f8 |B...R. ^K.ZL..B.| -orderer.example.com | 00000030 24 c5 7f 63 f6 32 59 39 92 5f 3f a6 9b 37 fb 4d |$..c.2Y9._?..7.M| -orderer.example.com | 00000040 06 fd fe de 97 ae 1e |.......| -orderer.example.com | 2018-01-04 01:51:00.727 UTC [cauthdsl] func2 -> DEBU c93 0xc42010ec80 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:00.727 UTC [cauthdsl] func1 -> DEBU c94 0xc42010ec80 gate 1515030660726538200 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c95 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c96 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c97 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c98 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c99 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9a Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9b Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9c Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9d Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9e Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9f Setting policy for key Readers to -orderer.example.com | 2018-01-04 01:51:00.729 UTC [common/configtx] recurseConfigMap -> DEBU ca0 Setting policy for key Writers to -orderer.example.com | 2018-01-04 01:51:00.729 UTC [common/configtx] recurseConfigMap -> DEBU ca1 Setting policy for key Admins to -orderer.example.com | 2018-01-04 01:51:00.730 UTC [common/configtx] recurseConfigMap -> DEBU ca2 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.730 UTC [common/configtx] recurseConfigMap -> DEBU ca3 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.730 UTC [common/configtx] recurseConfigMap -> DEBU ca4 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.730 UTC [orderer/common/broadcast] Handle -> WARN ca6 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:51:00.730 UTC [orderer/main] func1 -> DEBU ca7 Closing Broadcast stream -orderer.example.com | 2018-01-04 01:51:00.730 UTC [common/configtx] recurseConfigMap -> DEBU ca5 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.732 UTC [common/configtx] recurseConfigMap -> DEBU ca8 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.733 UTC [common/configtx] recurseConfigMap -> DEBU ca9 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.733 UTC [common/configtx] processConfig -> DEBU caa Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:51:00.734 UTC [common/config] NewStandardValues -> DEBU cab Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:51:00.734 UTC [common/config] initializeProtosStruct -> DEBU cac Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:51:00.734 UTC [common/config] initializeProtosStruct -> DEBU cad Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:51:00.734 UTC [common/config] initializeProtosStruct -> DEBU cae Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:51:00.734 UTC [common/config] initializeProtosStruct -> DEBU caf Processing field: Consortium -orderer.example.com | 2018-01-04 01:51:00.734 UTC [policies] ProposePolicy -> DEBU cb0 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:51:00.734 UTC [policies] ProposePolicy -> DEBU cb1 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:51:00.735 UTC [policies] ProposePolicy -> DEBU cb2 Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:51:00.735 UTC [common/config] NewStandardValues -> DEBU cb3 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:51:00.735 UTC [policies] ProposePolicy -> DEBU cb4 Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:51:00.735 UTC [policies] ProposePolicy -> DEBU cb5 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:51:00.735 UTC [policies] ProposePolicy -> DEBU cb6 Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:51:00.735 UTC [common/config] NewStandardValues -> DEBU cb7 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.735 UTC [common/config] initializeProtosStruct -> DEBU cb8 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.735 UTC [common/config] NewStandardValues -> DEBU cb9 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:51:00.735 UTC [common/config] initializeProtosStruct -> DEBU cba Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.735 UTC [common/config] NewStandardValues -> DEBU cbb Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.735 UTC [common/config] initializeProtosStruct -> DEBU cbc Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cbd Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cbe Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cbf Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] NewStandardValues -> DEBU cc0 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cc1 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] NewStandardValues -> DEBU cc2 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cc3 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] NewStandardValues -> DEBU cc4 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cc5 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cc6 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cc7 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cc8 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] NewStandardValues -> DEBU cc9 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cca Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU ccb Processing field: BatchSize -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU ccc Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU ccd Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cce Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:51:00.737 UTC [policies] ProposePolicy -> DEBU ccf Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:51:00.737 UTC [policies] ProposePolicy -> DEBU cd0 Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:51:00.737 UTC [policies] ProposePolicy -> DEBU cd1 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:51:00.737 UTC [policies] ProposePolicy -> DEBU cd2 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:51:00.737 UTC [common/config] NewStandardValues -> DEBU cd3 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.737 UTC [common/config] initializeProtosStruct -> DEBU cd4 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.738 UTC [policies] ProposePolicy -> DEBU cd5 Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.738 UTC [policies] ProposePolicy -> DEBU cd6 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.738 UTC [policies] ProposePolicy -> DEBU cd7 Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.738 UTC [common/config] Validate -> DEBU cd8 Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:51:00.739 UTC [common/config] validateMSP -> DEBU cd9 Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:51:00.739 UTC [msp] NewBccspMsp -> DEBU cda Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.740 UTC [msp] Setup -> DEBU cdb Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:51:00.740 UTC [msp/identity] newIdentity -> DEBU cdc Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.363 UTC [msp] Validate -> DEBU c44 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:36.363 UTC [common/config] Validate -> DEBU c45 Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:36.363 UTC [common/config] validateMSP -> DEBU c46 Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:36.363 UTC [msp] NewBccspMsp -> DEBU c47 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.363 UTC [msp] Setup -> DEBU c48 Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:36.363 UTC [msp/identity] newIdentity -> DEBU c49 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13845,7 +13545,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.741 UTC [msp/identity] newIdentity -> DEBU cdd Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.364 UTC [msp/identity] newIdentity -> DEBU c4a Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13859,7 +13559,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.741 UTC [msp/identity] newIdentity -> DEBU cde Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.364 UTC [msp/identity] newIdentity -> DEBU c4b Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13873,12 +13573,198 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.741 UTC [msp] Validate -> DEBU cdf MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:51:00.742 UTC [common/config] Validate -> DEBU ce0 Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:51:00.742 UTC [common/config] validateMSP -> DEBU ce1 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:51:00.742 UTC [msp] NewBccspMsp -> DEBU ce2 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.742 UTC [msp] Setup -> DEBU ce3 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:51:00.742 UTC [msp/identity] newIdentity -> DEBU ce4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.365 UTC [msp] Validate -> DEBU c4c MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:36.365 UTC [common/config] validateMSP -> DEBU c4d Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.365 UTC [msp] NewBccspMsp -> DEBU c4e Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.365 UTC [msp] Setup -> DEBU c4f Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:36.365 UTC [msp/identity] newIdentity -> DEBU c50 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.366 UTC [msp/identity] newIdentity -> DEBU c51 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.366 UTC [msp/identity] newIdentity -> DEBU c52 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.367 UTC [msp] Validate -> DEBU c53 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:36.367 UTC [msp] Setup -> DEBU c54 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:36.367 UTC [msp] Setup -> DEBU c55 MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:36.367 UTC [orderer/common/broadcast] Handle -> DEBU c56 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +orderer.example.com | 2018-01-14 11:45:36.367 UTC [policies] GetPolicy -> DEBU c57 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.367 UTC [cauthdsl] func1 -> DEBU c58 0xc420150108 gate 1515930336367610064 evaluation starts +orderer.example.com | 2018-01-14 11:45:36.367 UTC [cauthdsl] func2 -> DEBU c59 0xc420150108 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:36.367 UTC [cauthdsl] func2 -> DEBU c5a 0xc420150108 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:36.367 UTC [msp/identity] newIdentity -> DEBU c5b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +orderer.example.com | MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +orderer.example.com | RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +orderer.example.com | /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.368 UTC [msp] SatisfiesPrincipal -> DEBU c5c Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:45:36.368 UTC [msp] Validate -> DEBU c5d MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:36.368 UTC [cauthdsl] func2 -> DEBU c5e 0xc420150108 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:36.368 UTC [msp/identity] Verify -> DEBU c5f Verify: digest = 00000000 8d 14 7c c5 6c 62 aa 57 0f a1 f0 0b 99 d2 1c 96 |..|.lb.W........| +orderer.example.com | 00000010 9e 1e bc d4 09 e5 e4 15 7f 17 60 59 d4 e7 98 38 |..........`Y...8| +orderer.example.com | 2018-01-14 11:45:36.368 UTC [msp/identity] Verify -> DEBU c60 Verify: sig = 00000000 30 45 02 21 00 91 24 4a 84 29 74 b4 ce cc 11 f5 |0E.!..$J.)t.....| +orderer.example.com | 00000010 55 7d 89 6d cf 0c d0 53 cb 1f be 7b 51 08 bf c0 |U}.m...S...{Q...| +orderer.example.com | 00000020 c6 18 d8 d5 50 02 20 14 f1 aa 1f de a4 bd 6a 58 |....P. .......jX| +orderer.example.com | 00000030 ee 74 d2 f9 e9 a1 8d 1c 85 9c dc aa 1d f2 33 ef |.t............3.| +orderer.example.com | 00000040 55 38 4f d7 55 1a 25 |U8O.U.%| +orderer.example.com | 2018-01-14 11:45:36.368 UTC [cauthdsl] func2 -> DEBU c61 0xc420150108 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:36.368 UTC [cauthdsl] func1 -> DEBU c62 0xc420150108 gate 1515930336367610064 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:36.368 UTC [orderer/common/sigfilter] Apply -> DEBU c63 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b380a0 1 [0xc420150dd8]}) %!s(*policies.implicitMetaPolicy=&{0xc420b386a0 1 [0xc420150e70 0xc4201510e8]})]} +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c64 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c65 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c66 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c67 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c68 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c69 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6a Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6b Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6c Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6d Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6e Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6f Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c70 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c71 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.370 UTC [common/configtx] addToMap -> DEBU c72 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.370 UTC [policies] GetPolicy -> DEBU c73 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.370 UTC [cauthdsl] func1 -> DEBU c74 0xc420150ec0 gate 1515930336370132064 evaluation starts +orderer.example.com | 2018-01-14 11:45:36.370 UTC [cauthdsl] func2 -> DEBU c75 0xc420150ec0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:36.370 UTC [cauthdsl] func2 -> DEBU c76 0xc420150ec0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:36.370 UTC [msp/identity] newIdentity -> DEBU c77 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.370 UTC [msp] SatisfiesPrincipal -> DEBU c78 Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.370 UTC [cauthdsl] func2 -> DEBU c79 0xc420150ec0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:36.370 UTC [msp/identity] Verify -> DEBU c7a Verify: digest = 00000000 c3 7e 13 97 11 8f 8d ae 6e 77 14 93 5d 5e 84 01 |.~......nw..]^..| +orderer.example.com | 00000010 d3 b2 a7 73 06 2c 87 19 e1 94 ff fc b6 28 68 18 |...s.,.......(h.| +orderer.example.com | 2018-01-14 11:45:36.370 UTC [msp/identity] Verify -> DEBU c7b Verify: sig = 00000000 30 45 02 21 00 81 98 e7 87 77 c4 bf 8d d8 66 34 |0E.!.....w....f4| +orderer.example.com | 00000010 6c 42 b3 33 db 11 f7 2f e2 9f f5 10 40 56 ca 81 |lB.3.../....@V..| +orderer.example.com | 00000020 ec 0a bb 1b 7e 02 20 40 79 fb 1d 28 3c cf fe b1 |....~. @y..(<...| +orderer.example.com | 00000030 15 07 43 0f ef ce a1 0d 09 0d 45 ce 25 b9 b1 12 |..C.......E.%...| +orderer.example.com | 00000040 f2 28 fe a6 78 9f 80 |.(..x..| +orderer.example.com | 2018-01-14 11:45:36.371 UTC [cauthdsl] func2 -> DEBU c7c 0xc420150ec0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:36.371 UTC [cauthdsl] func1 -> DEBU c7d 0xc420150ec0 gate 1515930336370132064 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c7e Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c7f Setting policy for key Writers to +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c80 Setting policy for key Admins to +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c81 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c82 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c83 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c84 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c85 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c86 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c87 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c88 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c89 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8a Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8b Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8c Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8d Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8e Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8f Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c90 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/configtx] processConfig -> DEBU c91 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/config] NewStandardValues -> DEBU c92 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/config] initializeProtosStruct -> DEBU c93 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/config] initializeProtosStruct -> DEBU c94 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/config] initializeProtosStruct -> DEBU c95 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/config] initializeProtosStruct -> DEBU c96 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:36.372 UTC [policies] ProposePolicy -> DEBU c97 Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:36.372 UTC [policies] ProposePolicy -> DEBU c98 Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:36.372 UTC [policies] ProposePolicy -> DEBU c99 Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:36.372 UTC [common/config] NewStandardValues -> DEBU c9a Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU c9b Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU c9c Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU c9d Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU c9e Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU c9f Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU ca0 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU ca1 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU ca2 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU ca3 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU ca4 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU ca5 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU ca6 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU ca7 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU ca8 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU ca9 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU caa Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU cab Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cac Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU cad Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU cae Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU caf Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU cb0 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb1 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb2 Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb3 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb4 Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb5 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cb6 Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cb7 Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cb8 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cb9 Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:36.374 UTC [common/config] NewStandardValues -> DEBU cba Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.374 UTC [common/config] initializeProtosStruct -> DEBU cbb Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cbc Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cbd Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cbe Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.374 UTC [common/config] Validate -> DEBU cbf Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:36.374 UTC [common/config] validateMSP -> DEBU cc0 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:36.374 UTC [msp] NewBccspMsp -> DEBU cc1 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.374 UTC [msp] Setup -> DEBU cc2 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:36.375 UTC [msp/identity] newIdentity -> DEBU cc3 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -13893,7 +13779,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.742 UTC [msp/identity] newIdentity -> DEBU ce5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.375 UTC [msp/identity] newIdentity -> DEBU cc4 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13907,7 +13793,9 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.743 UTC [msp/identity] newIdentity -> DEBU ce6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.377 UTC [orderer/common/deliver] Handle -> WARN cc5 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:45:36.377 UTC [orderer/main] func1 -> DEBU cc6 Closing Deliver stream +orderer.example.com | 2018-01-14 11:45:36.378 UTC [msp/identity] newIdentity -> DEBU cc7 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -13921,254 +13809,14 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.743 UTC [msp] Validate -> DEBU ce7 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:51:00.743 UTC [common/config] validateMSP -> DEBU ce8 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.743 UTC [msp] NewBccspMsp -> DEBU ce9 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.743 UTC [msp] Setup -> DEBU cea Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:51:00.744 UTC [msp/identity] newIdentity -> DEBU ceb Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.744 UTC [msp/identity] newIdentity -> DEBU cec Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.744 UTC [msp/identity] newIdentity -> DEBU ced Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.745 UTC [msp] Validate -> DEBU cee MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:51:00.745 UTC [msp] Setup -> DEBU cef Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:51:00.745 UTC [msp] Setup -> DEBU cf0 MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:51:00.745 UTC [orderer/common/blockcutter] Ordered -> DEBU cf1 Found message which requested to be isolated, cutting into its own batch -orderer.example.com | 2018-01-04 01:51:00.745 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU cf2 retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-04 01:51:00.745 UTC [fsblkstorage] newBlockfileStream -> DEBU cf3 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] -orderer.example.com | 2018-01-04 01:51:00.745 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU cf4 Remaining bytes=[13732], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:00.745 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU cf5 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} -orderer.example.com | 2018-01-04 01:51:00.745 UTC [common/configtx] addToMap -> DEBU cf6 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cf7 Adding to config map: [Groups] /Channel/Orderer -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cf8 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cf9 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfa Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfb Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfc Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfd Adding to config map: [Values] /Channel/Orderer/ConsensusType -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfe Adding to config map: [Values] /Channel/Orderer/BatchSize -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cff Adding to config map: [Values] /Channel/Orderer/BatchTimeout -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d00 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d01 Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d02 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d03 Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d04 Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d05 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d06 Adding to config map: [Groups] /Channel/Application/Org1MSP -orderer.example.com | 2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d07 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d08 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d09 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0a Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0c Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0d Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0f Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d10 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d11 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d12 Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d13 Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d14 Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d15 Adding to config map: [Values] /Channel/Consortium -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d16 Adding to config map: [Values] /Channel/HashingAlgorithm -orderer.example.com | 2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d17 Adding to config map: [Values] /Channel/BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:51:00.748 UTC [common/configtx] addToMap -> DEBU d18 Adding to config map: [Values] /Channel/OrdererAddresses -orderer.example.com | 2018-01-04 01:51:00.749 UTC [common/configtx] addToMap -> DEBU d19 Adding to config map: [Policy] /Channel/Writers -orderer.example.com | 2018-01-04 01:51:00.749 UTC [common/configtx] addToMap -> DEBU d1a Adding to config map: [Policy] /Channel/Admins -orderer.example.com | 2018-01-04 01:51:00.750 UTC [common/configtx] addToMap -> DEBU d1b Adding to config map: [Policy] /Channel/Readers -orderer.example.com | 2018-01-04 01:51:00.753 UTC [common/configtx] addToMap -> DEBU d1c Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.753 UTC [common/configtx] addToMap -> DEBU d1d Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.754 UTC [common/configtx] addToMap -> DEBU d1e Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.754 UTC [common/configtx] addToMap -> DEBU d1f Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.754 UTC [common/configtx] addToMap -> DEBU d20 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.754 UTC [common/configtx] addToMap -> DEBU d21 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d22 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d23 Adding to config map: [Groups] /Channel -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d24 Adding to config map: [Groups] /Channel/Application -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d25 Adding to config map: [Groups] /Channel/Application/Org2MSP -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d26 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d27 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d28 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d29 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | 2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d2a Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | 2018-01-04 01:51:00.755 UTC [policies] GetPolicy -> DEBU d2b Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.756 UTC [cauthdsl] func1 -> DEBU d2c 0xc42010e740 gate 1515030660755992200 evaluation starts -orderer.example.com | 2018-01-04 01:51:00.756 UTC [cauthdsl] func2 -> DEBU d2d 0xc42010e740 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:00.756 UTC [cauthdsl] func2 -> DEBU d2e 0xc42010e740 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:00.756 UTC [msp/identity] newIdentity -> DEBU d2f Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.756 UTC [msp] SatisfiesPrincipal -> DEBU d30 Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.756 UTC [cauthdsl] func2 -> DEBU d31 0xc42010e740 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:00.756 UTC [msp/identity] Verify -> DEBU d32 Verify: digest = 00000000 1c d5 c2 9c 53 ce a3 c5 b0 ea 98 b7 91 2f f4 52 |....S......../.R| -orderer.example.com | 00000010 f4 f1 8f d9 19 16 77 80 e2 3f 4a 04 63 da 0e ac |......w..?J.c...| -orderer.example.com | 2018-01-04 01:51:00.756 UTC [msp/identity] Verify -> DEBU d33 Verify: sig = 00000000 30 45 02 21 00 ef b8 fb 6a 68 3f bd df 70 a8 37 |0E.!....jh?..p.7| -orderer.example.com | 00000010 17 7b dd e8 51 ed 3d 2d 06 74 bd 70 0e d2 7e 68 |.{..Q.=-.t.p..~h| -orderer.example.com | 00000020 42 d3 e3 80 52 02 20 5e 4b 05 5a 4c d5 0a 42 f8 |B...R. ^K.ZL..B.| -orderer.example.com | 00000030 24 c5 7f 63 f6 32 59 39 92 5f 3f a6 9b 37 fb 4d |$..c.2Y9._?..7.M| -orderer.example.com | 00000040 06 fd fe de 97 ae 1e |.......| -orderer.example.com | 2018-01-04 01:51:00.756 UTC [cauthdsl] func2 -> DEBU d34 0xc42010e740 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:00.756 UTC [cauthdsl] func1 -> DEBU d35 0xc42010e740 gate 1515030660755992200 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d36 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d37 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d38 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d39 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3a Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3b Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3c Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3d Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3e Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3f Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d40 Setting policy for key Readers to -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d41 Setting policy for key Writers to -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d42 Setting policy for key Admins to -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d43 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d44 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d45 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d46 Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d47 Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d48 Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/configtx] processConfig -> DEBU d49 Beginning new config for channel businesschannel -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/config] NewStandardValues -> DEBU d4a Initializing protos for *config.ChannelProtos -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/config] initializeProtosStruct -> DEBU d4b Processing field: HashingAlgorithm -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/config] initializeProtosStruct -> DEBU d4c Processing field: BlockDataHashingStructure -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/config] initializeProtosStruct -> DEBU d4d Processing field: OrdererAddresses -orderer.example.com | 2018-01-04 01:51:00.758 UTC [common/config] initializeProtosStruct -> DEBU d4e Processing field: Consortium -orderer.example.com | 2018-01-04 01:51:00.758 UTC [policies] ProposePolicy -> DEBU d4f Proposed new policy Readers for Channel -orderer.example.com | 2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d50 Proposed new policy Writers for Channel -orderer.example.com | 2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d51 Proposed new policy Admins for Channel -orderer.example.com | 2018-01-04 01:51:00.760 UTC [common/config] NewStandardValues -> DEBU d52 Initializing protos for *config.OrdererProtos -orderer.example.com | 2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d53 Processing field: ConsensusType -orderer.example.com | 2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d54 Processing field: BatchSize -orderer.example.com | 2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d55 Processing field: BatchTimeout -orderer.example.com | 2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d56 Processing field: KafkaBrokers -orderer.example.com | 2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d57 Processing field: ChannelRestrictions -orderer.example.com | 2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d58 Proposed new policy Admins for Orderer -orderer.example.com | 2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d59 Proposed new policy BlockValidation for Orderer -orderer.example.com | 2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d5a Proposed new policy Readers for Orderer -orderer.example.com | 2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d5b Proposed new policy Writers for Orderer -orderer.example.com | 2018-01-04 01:51:00.761 UTC [common/config] NewStandardValues -> DEBU d5c Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.761 UTC [common/config] initializeProtosStruct -> DEBU d5d Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.761 UTC [policies] ProposePolicy -> DEBU d5e Proposed new policy Writers for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.761 UTC [policies] ProposePolicy -> DEBU d5f Proposed new policy Admins for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.761 UTC [policies] ProposePolicy -> DEBU d60 Proposed new policy Readers for OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.761 UTC [common/config] NewStandardValues -> DEBU d61 Initializing protos for *struct {} -orderer.example.com | 2018-01-04 01:51:00.762 UTC [policies] ProposePolicy -> DEBU d62 Proposed new policy Writers for Application -orderer.example.com | 2018-01-04 01:51:00.762 UTC [policies] ProposePolicy -> DEBU d63 Proposed new policy Readers for Application -orderer.example.com | 2018-01-04 01:51:00.762 UTC [policies] ProposePolicy -> DEBU d64 Proposed new policy Admins for Application -orderer.example.com | 2018-01-04 01:51:00.762 UTC [common/config] NewStandardValues -> DEBU d65 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.762 UTC [common/config] initializeProtosStruct -> DEBU d66 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.762 UTC [common/config] NewStandardValues -> DEBU d67 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:51:00.765 UTC [common/config] initializeProtosStruct -> DEBU d68 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.765 UTC [common/config] NewStandardValues -> DEBU d69 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.765 UTC [common/config] initializeProtosStruct -> DEBU d6a Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.766 UTC [policies] ProposePolicy -> DEBU d6b Proposed new policy Writers for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.766 UTC [policies] ProposePolicy -> DEBU d6c Proposed new policy Admins for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.766 UTC [policies] ProposePolicy -> DEBU d6d Proposed new policy Readers for Org1MSP -orderer.example.com | 2018-01-04 01:51:00.766 UTC [common/config] NewStandardValues -> DEBU d6e Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.766 UTC [common/config] initializeProtosStruct -> DEBU d6f Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.766 UTC [common/config] NewStandardValues -> DEBU d70 Initializing protos for *config.ApplicationOrgProtos -orderer.example.com | 2018-01-04 01:51:00.766 UTC [common/config] initializeProtosStruct -> DEBU d71 Processing field: AnchorPeers -orderer.example.com | 2018-01-04 01:51:00.766 UTC [common/config] NewStandardValues -> DEBU d72 Initializing protos for *config.OrganizationProtos -orderer.example.com | 2018-01-04 01:51:00.766 UTC [common/config] initializeProtosStruct -> DEBU d73 Processing field: MSP -orderer.example.com | 2018-01-04 01:51:00.767 UTC [policies] ProposePolicy -> DEBU d74 Proposed new policy Writers for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.767 UTC [policies] ProposePolicy -> DEBU d75 Proposed new policy Admins for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.767 UTC [policies] ProposePolicy -> DEBU d76 Proposed new policy Readers for Org2MSP -orderer.example.com | 2018-01-04 01:51:00.767 UTC [common/config] validateMSP -> DEBU d77 Setting up MSP for org OrdererOrg -orderer.example.com | 2018-01-04 01:51:00.767 UTC [msp] NewBccspMsp -> DEBU d78 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.767 UTC [msp] Setup -> DEBU d79 Setting up MSP instance OrdererMSP -orderer.example.com | 2018-01-04 01:51:00.767 UTC [msp/identity] newIdentity -> DEBU d7a Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.767 UTC [msp/identity] newIdentity -> DEBU d7b Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.768 UTC [msp/identity] newIdentity -> DEBU d7c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.768 UTC [msp] Validate -> DEBU d7d MSP OrdererMSP validating identity -orderer.example.com | 2018-01-04 01:51:00.769 UTC [common/config] Validate -> DEBU d7e Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:51:00.769 UTC [common/config] validateMSP -> DEBU d7f Setting up MSP for org Org1MSP -orderer.example.com | 2018-01-04 01:51:00.769 UTC [msp] NewBccspMsp -> DEBU d80 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.769 UTC [msp] Setup -> DEBU d81 Setting up MSP instance Org1MSP -orderer.example.com | 2018-01-04 01:51:00.770 UTC [msp/identity] newIdentity -> DEBU d82 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.379 UTC [orderer/common/broadcast] Handle -> WARN cc8 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:45:36.379 UTC [orderer/main] func1 -> DEBU cc9 Closing Broadcast stream +orderer.example.com | 2018-01-14 11:45:36.379 UTC [msp] Validate -> DEBU cca MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:36.379 UTC [common/config] Validate -> DEBU ccb Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:36.380 UTC [common/config] validateMSP -> DEBU ccc Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:36.380 UTC [msp] NewBccspMsp -> DEBU ccd Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.380 UTC [msp] Setup -> DEBU cce Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:36.380 UTC [msp/identity] newIdentity -> DEBU ccf Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14183,7 +13831,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ orderer.example.com | H7n8z1pj5w== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.770 UTC [msp/identity] newIdentity -> DEBU d83 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.381 UTC [msp/identity] newIdentity -> DEBU cd0 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14197,7 +13845,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.771 UTC [msp/identity] newIdentity -> DEBU d84 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.382 UTC [msp/identity] newIdentity -> DEBU cd1 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14211,12 +13859,210 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.772 UTC [msp] Validate -> DEBU d85 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:51:00.772 UTC [common/config] Validate -> DEBU d86 Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | 2018-01-04 01:51:00.772 UTC [common/config] validateMSP -> DEBU d87 Setting up MSP for org Org2MSP -orderer.example.com | 2018-01-04 01:51:00.773 UTC [msp] NewBccspMsp -> DEBU d88 Creating BCCSP-based MSP instance -orderer.example.com | 2018-01-04 01:51:00.773 UTC [msp] Setup -> DEBU d89 Setting up MSP instance Org2MSP -orderer.example.com | 2018-01-04 01:51:00.774 UTC [msp/identity] newIdentity -> DEBU d8a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.383 UTC [msp] Validate -> DEBU cd2 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:36.383 UTC [common/config] validateMSP -> DEBU cd3 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.383 UTC [msp] NewBccspMsp -> DEBU cd4 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.383 UTC [msp] Setup -> DEBU cd5 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:36.384 UTC [msp/identity] newIdentity -> DEBU cd6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.384 UTC [msp/identity] newIdentity -> DEBU cd7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.384 UTC [msp/identity] newIdentity -> DEBU cd8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.385 UTC [msp] Validate -> DEBU cd9 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:36.385 UTC [msp] Setup -> DEBU cda Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:36.385 UTC [msp] Setup -> DEBU cdb MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:36.385 UTC [orderer/common/blockcutter] Ordered -> DEBU cdc Found message which requested to be isolated, cutting into its own batch +orderer.example.com | 2018-01-14 11:45:36.385 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU cdd retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-14 11:45:36.385 UTC [fsblkstorage] newBlockfileStream -> DEBU cde newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] +orderer.example.com | 2018-01-14 11:45:36.385 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU cdf Remaining bytes=[13733], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:36.385 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ce0 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} +orderer.example.com | 2018-01-14 11:45:36.385 UTC [common/configtx] addToMap -> DEBU ce1 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce2 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce3 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce4 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce5 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce6 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce8 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce9 Adding to config map: [Groups] /Channel/Application/Org1MSP +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cea Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ceb Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cec Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ced Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cee Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cef Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf0 Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf1 Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf2 Adding to config map: [Groups] /Channel/Orderer +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf3 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf4 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf5 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf6 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf7 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf8 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf9 Adding to config map: [Values] /Channel/Orderer/ConsensusType +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfa Adding to config map: [Values] /Channel/Orderer/BatchSize +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfb Adding to config map: [Values] /Channel/Orderer/BatchTimeout +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfc Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfd Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfe Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cff Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d00 Adding to config map: [Values] /Channel/HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d01 Adding to config map: [Values] /Channel/BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d02 Adding to config map: [Values] /Channel/Consortium +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d03 Adding to config map: [Values] /Channel/OrdererAddresses +orderer.example.com | 2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d04 Adding to config map: [Policy] /Channel/Admins +orderer.example.com | 2018-01-14 11:45:36.392 UTC [common/configtx] addToMap -> DEBU d05 Adding to config map: [Policy] /Channel/Readers +orderer.example.com | 2018-01-14 11:45:36.392 UTC [common/configtx] addToMap -> DEBU d06 Adding to config map: [Policy] /Channel/Writers +orderer.example.com | 2018-01-14 11:45:36.393 UTC [common/configtx] addToMap -> DEBU d07 Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.393 UTC [common/configtx] addToMap -> DEBU d08 Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d09 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0a Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0b Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0c Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0e Adding to config map: [Groups] /Channel +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0f Adding to config map: [Groups] /Channel/Application +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d10 Adding to config map: [Groups] /Channel/Application/Org2MSP +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d11 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d12 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d13 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d14 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | 2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d15 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | 2018-01-14 11:45:36.394 UTC [policies] GetPolicy -> DEBU d16 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.394 UTC [cauthdsl] func1 -> DEBU d17 0xc420150870 gate 1515930336394829864 evaluation starts +orderer.example.com | 2018-01-14 11:45:36.394 UTC [cauthdsl] func2 -> DEBU d18 0xc420150870 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:36.394 UTC [cauthdsl] func2 -> DEBU d19 0xc420150870 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:36.395 UTC [msp/identity] newIdentity -> DEBU d1a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.395 UTC [msp] SatisfiesPrincipal -> DEBU d1b Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.395 UTC [cauthdsl] func2 -> DEBU d1c 0xc420150870 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:36.395 UTC [msp/identity] Verify -> DEBU d1d Verify: digest = 00000000 c3 7e 13 97 11 8f 8d ae 6e 77 14 93 5d 5e 84 01 |.~......nw..]^..| +orderer.example.com | 00000010 d3 b2 a7 73 06 2c 87 19 e1 94 ff fc b6 28 68 18 |...s.,.......(h.| +orderer.example.com | 2018-01-14 11:45:36.395 UTC [msp/identity] Verify -> DEBU d1e Verify: sig = 00000000 30 45 02 21 00 81 98 e7 87 77 c4 bf 8d d8 66 34 |0E.!.....w....f4| +orderer.example.com | 00000010 6c 42 b3 33 db 11 f7 2f e2 9f f5 10 40 56 ca 81 |lB.3.../....@V..| +orderer.example.com | 00000020 ec 0a bb 1b 7e 02 20 40 79 fb 1d 28 3c cf fe b1 |....~. @y..(<...| +orderer.example.com | 00000030 15 07 43 0f ef ce a1 0d 09 0d 45 ce 25 b9 b1 12 |..C.......E.%...| +orderer.example.com | 00000040 f2 28 fe a6 78 9f 80 |.(..x..| +orderer.example.com | 2018-01-14 11:45:36.395 UTC [cauthdsl] func2 -> DEBU d1f 0xc420150870 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:36.396 UTC [cauthdsl] func1 -> DEBU d20 0xc420150870 gate 1515930336394829864 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d21 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d22 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d23 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d24 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d25 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d26 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d27 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d28 Setting policy for key Readers to +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d29 Setting policy for key Writers to +orderer.example.com | 2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d2a Setting policy for key Admins to +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2b Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2c Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2d Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2e Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2f Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d30 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d31 Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d32 Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d33 Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/configtx] processConfig -> DEBU d34 Beginning new config for channel businesschannel +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/config] NewStandardValues -> DEBU d35 Initializing protos for *config.ChannelProtos +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/config] initializeProtosStruct -> DEBU d36 Processing field: HashingAlgorithm +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/config] initializeProtosStruct -> DEBU d37 Processing field: BlockDataHashingStructure +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/config] initializeProtosStruct -> DEBU d38 Processing field: OrdererAddresses +orderer.example.com | 2018-01-14 11:45:36.398 UTC [common/config] initializeProtosStruct -> DEBU d39 Processing field: Consortium +orderer.example.com | 2018-01-14 11:45:36.398 UTC [policies] ProposePolicy -> DEBU d3a Proposed new policy Admins for Channel +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d3b Proposed new policy Readers for Channel +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d3c Proposed new policy Writers for Channel +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d3d Initializing protos for *struct {} +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d3e Proposed new policy Writers for Application +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d3f Proposed new policy Readers for Application +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d40 Proposed new policy Admins for Application +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d41 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d42 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d43 Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d44 Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d45 Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d46 Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d47 Proposed new policy Admins for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d48 Proposed new policy Readers for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d49 Proposed new policy Writers for Org2MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d4a Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d4b Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d4c Initializing protos for *config.ApplicationOrgProtos +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d4d Processing field: AnchorPeers +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d4e Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d4f Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d50 Proposed new policy Admins for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d51 Proposed new policy Readers for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d52 Proposed new policy Writers for Org1MSP +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d53 Initializing protos for *config.OrdererProtos +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d54 Processing field: ConsensusType +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d55 Processing field: BatchSize +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d56 Processing field: BatchTimeout +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d57 Processing field: KafkaBrokers +orderer.example.com | 2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d58 Processing field: ChannelRestrictions +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d59 Proposed new policy Writers for Orderer +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d5a Proposed new policy Admins for Orderer +orderer.example.com | 2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d5b Proposed new policy BlockValidation for Orderer +orderer.example.com | 2018-01-14 11:45:36.400 UTC [policies] ProposePolicy -> DEBU d5c Proposed new policy Readers for Orderer +orderer.example.com | 2018-01-14 11:45:36.400 UTC [common/config] NewStandardValues -> DEBU d5d Initializing protos for *config.OrganizationProtos +orderer.example.com | 2018-01-14 11:45:36.400 UTC [common/config] initializeProtosStruct -> DEBU d5e Processing field: MSP +orderer.example.com | 2018-01-14 11:45:36.400 UTC [policies] ProposePolicy -> DEBU d5f Proposed new policy Writers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.400 UTC [policies] ProposePolicy -> DEBU d60 Proposed new policy Admins for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.400 UTC [policies] ProposePolicy -> DEBU d61 Proposed new policy Readers for OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.400 UTC [common/config] Validate -> DEBU d62 Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:36.400 UTC [common/config] validateMSP -> DEBU d63 Setting up MSP for org Org2MSP +orderer.example.com | 2018-01-14 11:45:36.400 UTC [msp] NewBccspMsp -> DEBU d64 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.400 UTC [msp] Setup -> DEBU d65 Setting up MSP instance Org2MSP +orderer.example.com | 2018-01-14 11:45:36.400 UTC [msp/identity] newIdentity -> DEBU d66 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -14231,7 +14077,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk orderer.example.com | SCjyRdD3aQ== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.776 UTC [msp/identity] newIdentity -> DEBU d8b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.401 UTC [msp/identity] newIdentity -> DEBU d67 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14245,7 +14091,7 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.777 UTC [msp/identity] newIdentity -> DEBU d8c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.401 UTC [msp/identity] newIdentity -> DEBU d68 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14259,116 +14105,208 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:00.777 UTC [msp] Validate -> DEBU d8d MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:51:00.777 UTC [msp] Setup -> DEBU d8e Setting up the MSP manager (3 msps) -orderer.example.com | 2018-01-04 01:51:00.777 UTC [msp] Setup -> DEBU d8f MSP manager setup complete, setup 3 msps -orderer.example.com | 2018-01-04 01:51:00.777 UTC [policies] GetPolicy -> DEBU d90 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d91 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d92 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d93 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d94 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d95 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d96 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d97 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d98 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d99 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d9a Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d9b In commit adding relative sub-policy Org1MSP/Admins to Application -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d9c Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d9d In commit adding relative sub-policy Org1MSP/Readers to Application -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d9e Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d9f In commit adding relative sub-policy Org1MSP/Writers to Application -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da0 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU da1 In commit adding relative sub-policy Org2MSP/Writers to Application -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da2 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU da3 In commit adding relative sub-policy Org2MSP/Admins to Application -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da4 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU da5 In commit adding relative sub-policy Org2MSP/Readers to Application -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da7 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da8 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da9 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU daa Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU dab Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dac Returning policy OrdererOrg/Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dad In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dae Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU daf In commit adding relative sub-policy Orderer/Admins to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db0 Returning policy BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db1 In commit adding relative sub-policy Orderer/BlockValidation to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db2 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db3 In commit adding relative sub-policy Orderer/Readers to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db4 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db5 In commit adding relative sub-policy Orderer/Writers to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db6 Returning policy OrdererOrg/Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db7 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db8 Returning policy OrdererOrg/Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db9 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dba Returning policy Org1MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dbb In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dbc Returning policy Org1MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dbd In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dbe Returning policy Org1MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dbf In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dc0 Returning policy Org2MSP/Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dc1 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dc2 Returning policy Org2MSP/Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dc3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dc4 Returning policy Org2MSP/Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dc5 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dc6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dc7 In commit adding relative sub-policy Application/Writers to Channel -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dc8 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dc9 In commit adding relative sub-policy Application/Readers to Channel -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dca Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dcb In commit adding relative sub-policy Application/Admins to Channel -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dcc Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dcd Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dce Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dcf Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd0 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd1 Returning policy Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd2 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dd3 As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd4 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dd5 As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd6 Returning policy Application/Readers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dd7 As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd8 Returning policy Application/Writers for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dd9 As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dda Returning policy Application/Admins for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU ddb As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU ddc Returning policy Orderer/BlockValidation for evaluation -orderer.example.com | 2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU ddd As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | 2018-01-04 01:51:00.780 UTC [orderer/multichain] addBlockSignature -> DEBU dde &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:1 lastConfigSeq:2} -orderer.example.com | 2018-01-04 01:51:00.780 UTC [orderer/multichain] addBlockSignature -> DEBU ddf &{} -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp] GetLocalMSP -> DEBU de0 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp] GetDefaultSigningIdentity -> DEBU de1 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp] GetLocalMSP -> DEBU de2 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp] GetDefaultSigningIdentity -> DEBU de3 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp/identity] Sign -> DEBU de4 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...62BE7429EEFCA94D3900F653F1BC4D60 -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp/identity] Sign -> DEBU de5 Sign: digest: 2797399937621A3CAB0C7DA4431B740030516E0CBCFBD7FBF2C6959AA5324294 -orderer.example.com | 2018-01-04 01:51:00.781 UTC [orderer/multichain] addLastConfigSignature -> DEBU de6 [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp] GetLocalMSP -> DEBU de7 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp] GetDefaultSigningIdentity -> DEBU de8 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:00.781 UTC [orderer/multichain] addLastConfigSignature -> DEBU de9 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp] GetLocalMSP -> DEBU dea Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp] GetDefaultSigningIdentity -> DEBU deb Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp/identity] Sign -> DEBU dec Sign: plaintext: 08020AFA050A0A4F7264657265724D53...62BE7429EEFCA94D3900F653F1BC4D60 -orderer.example.com | 2018-01-04 01:51:00.781 UTC [msp/identity] Sign -> DEBU ded Sign: digest: CA6C3453CB001781ED37CC0F58025942CC80168531C708D96DE314B92960B6DD -orderer.example.com | 2018-01-04 01:51:00.784 UTC [fsblkstorage] indexBlock -> DEBU dee Indexing block [blockNum=2, blockHash=[]byte{0x8b, 0x73, 0x62, 0xf8, 0xa2, 0xa6, 0xcb, 0xf, 0x2a, 0x4e, 0xc3, 0x3a, 0xf, 0x19, 0x6c, 0x27, 0x97, 0xa5, 0xbf, 0x5e, 0x9, 0x65, 0x6b, 0x60, 0x29, 0xce, 0xda, 0x37, 0xfb, 0x33, 0x6, 0x65} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=11972 +orderer.example.com | 2018-01-14 11:45:36.402 UTC [msp] Validate -> DEBU d69 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:36.402 UTC [common/config] Validate -> DEBU d6a Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | 2018-01-14 11:45:36.402 UTC [common/config] validateMSP -> DEBU d6b Setting up MSP for org Org1MSP +orderer.example.com | 2018-01-14 11:45:36.402 UTC [msp] NewBccspMsp -> DEBU d6c Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.402 UTC [msp] Setup -> DEBU d6d Setting up MSP instance Org1MSP +orderer.example.com | 2018-01-14 11:45:36.402 UTC [msp/identity] newIdentity -> DEBU d6e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +orderer.example.com | AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +orderer.example.com | BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +orderer.example.com | db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +orderer.example.com | BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +orderer.example.com | JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +orderer.example.com | /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +orderer.example.com | H7n8z1pj5w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.403 UTC [msp/identity] newIdentity -> DEBU d6f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.403 UTC [msp/identity] newIdentity -> DEBU d70 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.404 UTC [msp] Validate -> DEBU d71 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:36.404 UTC [common/config] validateMSP -> DEBU d72 Setting up MSP for org OrdererOrg +orderer.example.com | 2018-01-14 11:45:36.404 UTC [msp] NewBccspMsp -> DEBU d73 Creating BCCSP-based MSP instance +orderer.example.com | 2018-01-14 11:45:36.404 UTC [msp] Setup -> DEBU d74 Setting up MSP instance OrdererMSP +orderer.example.com | 2018-01-14 11:45:36.404 UTC [msp/identity] newIdentity -> DEBU d75 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +orderer.example.com | gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +orderer.example.com | BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +orderer.example.com | KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.404 UTC [msp/identity] newIdentity -> DEBU d76 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.405 UTC [msp/identity] newIdentity -> DEBU d77 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.405 UTC [msp] Validate -> DEBU d78 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:45:36.405 UTC [msp] Setup -> DEBU d79 Setting up the MSP manager (3 msps) +orderer.example.com | 2018-01-14 11:45:36.405 UTC [msp] Setup -> DEBU d7a MSP manager setup complete, setup 3 msps +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d7b Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d7c In commit adding relative sub-policy Org2MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d7d Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d7e In commit adding relative sub-policy Org2MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d7f Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d80 In commit adding relative sub-policy Org2MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d81 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d82 In commit adding relative sub-policy Org1MSP/Writers to Application +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d83 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d84 In commit adding relative sub-policy Org1MSP/Admins to Application +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d85 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d86 In commit adding relative sub-policy Org1MSP/Readers to Application +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d87 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d88 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d89 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8a Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8b Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8c Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8d Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d8e In commit adding relative sub-policy OrdererOrg/Writers to Orderer +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8f Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d90 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d91 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d92 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d93 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d94 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d95 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d96 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d97 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU d98 In commit adding relative sub-policy Application/Writers to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d99 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU d9a In commit adding relative sub-policy Application/Readers to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d9b Returning policy Org2MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU d9c In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d9d Returning policy Org2MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU d9e In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d9f Returning policy Org2MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da0 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da1 Returning policy Org1MSP/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da2 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da3 Returning policy Org1MSP/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da4 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da5 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da6 In commit adding relative sub-policy Application/Admins to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da7 Returning policy Org1MSP/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da8 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da9 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU daa In commit adding relative sub-policy Orderer/Writers to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU dab Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU dac In commit adding relative sub-policy Orderer/Admins to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU dad Returning policy BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU dae In commit adding relative sub-policy Orderer/BlockValidation to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU daf Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU db0 In commit adding relative sub-policy Orderer/Readers to Channel +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU db1 Returning policy OrdererOrg/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU db2 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db3 Returning policy OrdererOrg/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU db4 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db5 Returning policy OrdererOrg/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU db6 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db7 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db8 Returning policy Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db9 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dba Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dbb Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dbc Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dbd Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dbe As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dbf Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc0 As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dc1 Returning policy Application/Readers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc2 As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dc3 Returning policy Application/Writers for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc4 As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dc5 Returning policy Application/Admins for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc6 As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dc7 Returning policy Orderer/BlockValidation for evaluation +orderer.example.com | 2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc8 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | 2018-01-14 11:45:36.408 UTC [orderer/multichain] addBlockSignature -> DEBU dc9 &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:1 lastConfigSeq:2} +orderer.example.com | 2018-01-14 11:45:36.408 UTC [orderer/multichain] addBlockSignature -> DEBU dca &{} +orderer.example.com | 2018-01-14 11:45:36.408 UTC [msp] GetLocalMSP -> DEBU dcb Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:36.408 UTC [msp] GetDefaultSigningIdentity -> DEBU dcc Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:36.408 UTC [msp] GetLocalMSP -> DEBU dcd Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:36.408 UTC [msp] GetDefaultSigningIdentity -> DEBU dce Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:36.408 UTC [msp/identity] Sign -> DEBU dcf Sign: plaintext: 0AFA050A0A4F7264657265724D535012...DC38C8D138802B09833C93850A5A9B0F +orderer.example.com | 2018-01-14 11:45:36.408 UTC [msp/identity] Sign -> DEBU dd0 Sign: digest: A6613FC4D4B18AA6BF539E858DF7D751A280885F5B10C2DE360373BBA2F34B69 +orderer.example.com | 2018-01-14 11:45:36.409 UTC [orderer/multichain] addLastConfigSignature -> DEBU dd1 [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 +orderer.example.com | 2018-01-14 11:45:36.409 UTC [msp] GetLocalMSP -> DEBU dd2 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:36.409 UTC [msp] GetDefaultSigningIdentity -> DEBU dd3 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:36.409 UTC [orderer/multichain] addLastConfigSignature -> DEBU dd4 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-14 11:45:36.409 UTC [msp] GetLocalMSP -> DEBU dd5 Returning existing local MSP +orderer.example.com | 2018-01-14 11:45:36.409 UTC [msp] GetDefaultSigningIdentity -> DEBU dd6 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:45:36.409 UTC [msp/identity] Sign -> DEBU dd7 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...DC38C8D138802B09833C93850A5A9B0F +orderer.example.com | 2018-01-14 11:45:36.409 UTC [msp/identity] Sign -> DEBU dd8 Sign: digest: 1F5B51E7CC68092D20BDB325CC4AD81AF553F22EDFABCE151A04C1ADD033F0B7 +orderer.example.com | 2018-01-14 11:45:36.514 UTC [fsblkstorage] indexBlock -> DEBU dd9 Indexing block [blockNum=2, blockHash=[]byte{0xb9, 0x70, 0xfc, 0x86, 0xfa, 0x16, 0xa, 0x76, 0xc0, 0x74, 0xfe, 0xf4, 0x31, 0x60, 0x81, 0x1, 0x3f, 0x85, 0x4f, 0x9c, 0xcf, 0xe9, 0xaf, 0x6b, 0xf7, 0x1a, 0xbf, 0x6b, 0x65, 0x32, 0x5c, 0xd7} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=11973 orderer.example.com | ] -orderer.example.com | 2018-01-04 01:51:00.785 UTC [fsblkstorage] updateCheckpoint -> DEBU def Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39458], isChainEmpty=[false], lastBlockNumber=[2] -orderer.example.com | 2018-01-04 01:51:00.785 UTC [orderer/multichain] WriteBlock -> DEBU df0 [channel: businesschannel] Wrote block 2 -orderer.example.com | 2018-01-04 01:51:03.773 UTC [orderer/main] Deliver -> DEBU df1 Starting new Deliver handler -orderer.example.com | 2018-01-04 01:51:03.774 UTC [orderer/common/deliver] Handle -> DEBU df2 Starting new deliver loop -orderer.example.com | 2018-01-04 01:51:03.774 UTC [orderer/common/deliver] Handle -> DEBU df3 Attempting to read seek info message -orderer.example.com | 2018-01-04 01:51:03.775 UTC [policies] GetPolicy -> DEBU df4 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:03.775 UTC [cauthdsl] func1 -> DEBU df5 0xc42010ebf8 gate 1515030663775534900 evaluation starts -orderer.example.com | 2018-01-04 01:51:03.775 UTC [cauthdsl] func2 -> DEBU df6 0xc42010ebf8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:03.775 UTC [cauthdsl] func2 -> DEBU df7 0xc42010ebf8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:03.776 UTC [msp/identity] newIdentity -> DEBU df8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:36.515 UTC [fsblkstorage] updateCheckpoint -> DEBU dda Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39458], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | 2018-01-14 11:45:36.515 UTC [orderer/multichain] WriteBlock -> DEBU ddb [channel: businesschannel] Wrote block 2 +orderer.example.com | 2018-01-14 11:45:39.163 UTC [orderer/main] Deliver -> DEBU ddc Starting new Deliver handler +orderer.example.com | 2018-01-14 11:45:39.163 UTC [orderer/common/deliver] Handle -> DEBU ddd Starting new deliver loop +orderer.example.com | 2018-01-14 11:45:39.163 UTC [orderer/common/deliver] Handle -> DEBU dde Attempting to read seek info message +orderer.example.com | 2018-01-14 11:45:39.164 UTC [policies] GetPolicy -> DEBU ddf Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:39.164 UTC [cauthdsl] func1 -> DEBU de0 0xc420150c00 gate 1515930339164631864 evaluation starts +orderer.example.com | 2018-01-14 11:45:39.164 UTC [cauthdsl] func2 -> DEBU de1 0xc420150c00 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:39.165 UTC [cauthdsl] func2 -> DEBU de2 0xc420150c00 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:39.165 UTC [msp/identity] newIdentity -> DEBU de3 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14382,13 +14320,13 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l orderer.example.com | 05n0MbLw/Ug3egJ3JA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:03.778 UTC [cauthdsl] func2 -> DEBU df9 0xc42010ebf8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | 2018-01-04 01:51:03.778 UTC [cauthdsl] func2 -> DEBU dfa 0xc42010ebf8 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:03.778 UTC [cauthdsl] func1 -> DEBU dfb 0xc42010ebf8 gate 1515030663775534900 evaluation fails -orderer.example.com | 2018-01-04 01:51:03.778 UTC [cauthdsl] func1 -> DEBU dfc 0xc42010ec08 gate 1515030663778402400 evaluation starts -orderer.example.com | 2018-01-04 01:51:03.778 UTC [cauthdsl] func2 -> DEBU dfd 0xc42010ec08 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:03.778 UTC [cauthdsl] func2 -> DEBU dfe 0xc42010ec08 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:03.778 UTC [msp/identity] newIdentity -> DEBU dff Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:39.166 UTC [cauthdsl] func2 -> DEBU de4 0xc420150c00 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-14 11:45:39.166 UTC [cauthdsl] func2 -> DEBU de5 0xc420150c00 principal evaluation fails +orderer.example.com | 2018-01-14 11:45:39.166 UTC [cauthdsl] func1 -> DEBU de6 0xc420150c00 gate 1515930339164631864 evaluation fails +orderer.example.com | 2018-01-14 11:45:39.166 UTC [cauthdsl] func1 -> DEBU de7 0xc420150c10 gate 1515930339166737864 evaluation starts +orderer.example.com | 2018-01-14 11:45:39.166 UTC [cauthdsl] func2 -> DEBU de8 0xc420150c10 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:39.166 UTC [cauthdsl] func2 -> DEBU de9 0xc420150c10 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:39.168 UTC [msp/identity] newIdentity -> DEBU dea Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14402,38 +14340,38 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l orderer.example.com | 05n0MbLw/Ug3egJ3JA== orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:03.779 UTC [msp] SatisfiesPrincipal -> DEBU e00 Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-04 01:51:03.779 UTC [msp] Validate -> DEBU e01 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:51:03.779 UTC [cauthdsl] func2 -> DEBU e02 0xc42010ec08 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:03.779 UTC [msp/identity] Verify -> DEBU e03 Verify: digest = 00000000 e4 63 28 5f 49 84 3f cc 8e 32 9c e8 f8 da 46 ad |.c(_I.?..2....F.| -orderer.example.com | 00000010 af 5c b1 7e 13 4d e4 ea 60 04 39 5d b7 fe 57 d2 |.\.~.M..`.9]..W.| -orderer.example.com | 2018-01-04 01:51:03.779 UTC [msp/identity] Verify -> DEBU e04 Verify: sig = 00000000 30 44 02 20 14 7f 3c dd fb e8 96 fe 53 75 68 3b |0D. ..<.....Suh;| -orderer.example.com | 00000010 5f 36 c6 01 c8 be b5 2c 50 8c ab 9f b3 91 6e 81 |_6.....,P.....n.| -orderer.example.com | 00000020 99 be e4 40 02 20 6d ef 39 6f bf d1 34 83 f5 8c |...@. m.9o..4...| -orderer.example.com | 00000030 e4 b3 ff 1e e7 3a a6 fb 86 87 3d 84 05 4f 3c 76 |.....:....=..O DEBU e05 0xc42010ec08 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:03.780 UTC [cauthdsl] func1 -> DEBU e06 0xc42010ec08 gate 1515030663778402400 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:03.780 UTC [orderer/common/sigfilter] Apply -> DEBU e07 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209168c0 1 [0xc42010e810]}) %!s(*policies.implicitMetaPolicy=&{0xc420917020 1 [0xc42010e8c0 0xc42010e960]})]} -orderer.example.com | 2018-01-04 01:51:03.780 UTC [orderer/common/deliver] Handle -> DEBU e08 [channel: businesschannel] Received seekInfo (0xc42027ed80) start: > stop: > -orderer.example.com | 2018-01-04 01:51:03.780 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e09 retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-04 01:51:03.781 UTC [fsblkstorage] newBlockfileStream -> DEBU e0a newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] -orderer.example.com | 2018-01-04 01:51:03.781 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e0b Remaining bytes=[27525], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:03.781 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e0c Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} -orderer.example.com | 2018-01-04 01:51:03.781 UTC [orderer/common/deliver] Handle -> DEBU e0d [channel: businesschannel] Delivering block for (0xc42027ed80) -orderer.example.com | 2018-01-04 01:51:03.782 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e0e retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-04 01:51:03.782 UTC [fsblkstorage] newBlockfileStream -> DEBU e0f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25665] -orderer.example.com | 2018-01-04 01:51:03.782 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e10 Remaining bytes=[13793], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:03.783 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e11 Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25665], bytesOffset=[25667]} -orderer.example.com | 2018-01-04 01:51:03.783 UTC [orderer/common/deliver] Handle -> DEBU e12 [channel: businesschannel] Delivering block for (0xc42027ed80) -orderer.example.com | 2018-01-04 01:51:04.066 UTC [orderer/main] Deliver -> DEBU e13 Starting new Deliver handler -orderer.example.com | 2018-01-04 01:51:04.067 UTC [orderer/common/deliver] Handle -> DEBU e14 Starting new deliver loop -orderer.example.com | 2018-01-04 01:51:04.068 UTC [orderer/common/deliver] Handle -> DEBU e15 Attempting to read seek info message -orderer.example.com | 2018-01-04 01:51:04.068 UTC [policies] GetPolicy -> DEBU e16 Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:04.069 UTC [cauthdsl] func1 -> DEBU e17 0xc420026028 gate 1515030664069075500 evaluation starts -orderer.example.com | 2018-01-04 01:51:04.069 UTC [cauthdsl] func2 -> DEBU e18 0xc420026028 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:04.069 UTC [cauthdsl] func2 -> DEBU e19 0xc420026028 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:04.070 UTC [msp/identity] newIdentity -> DEBU e1a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:39.169 UTC [msp] SatisfiesPrincipal -> DEBU deb Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-14 11:45:39.169 UTC [msp] Validate -> DEBU dec MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:45:39.170 UTC [cauthdsl] func2 -> DEBU ded 0xc420150c10 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:39.170 UTC [msp/identity] Verify -> DEBU dee Verify: digest = 00000000 46 f3 26 da 1a 4a 78 63 13 ae a0 e3 d5 9e 97 36 |F.&..Jxc.......6| +orderer.example.com | 00000010 1a 8f e8 f6 e7 66 c7 b1 55 87 48 22 ad e5 13 4c |.....f..U.H"...L| +orderer.example.com | 2018-01-14 11:45:39.170 UTC [msp/identity] Verify -> DEBU def Verify: sig = 00000000 30 44 02 20 5b c1 2e a1 a9 92 67 aa 5c 77 55 6e |0D. [.....g.\wUn| +orderer.example.com | 00000010 b5 40 ba 75 e1 07 12 ae 1a 5d ff 2a 13 c3 76 4f |.@.u.....].*..vO| +orderer.example.com | 00000020 88 11 3f f6 02 20 72 4d 85 22 63 53 e7 05 a0 be |..?.. rM."cS....| +orderer.example.com | 00000030 6a 78 5e ef 21 40 2d 37 16 2e 9c b9 59 a6 8e 52 |jx^.!@-7....Y..R| +orderer.example.com | 00000040 ee 70 bd 89 63 38 |.p..c8| +orderer.example.com | 2018-01-14 11:45:39.170 UTC [cauthdsl] func2 -> DEBU df0 0xc420150c10 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:39.170 UTC [cauthdsl] func1 -> DEBU df1 0xc420150c10 gate 1515930339166737864 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:39.170 UTC [orderer/common/sigfilter] Apply -> DEBU df2 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:45:39.171 UTC [orderer/common/deliver] Handle -> DEBU df3 [channel: businesschannel] Received seekInfo (0xc420373960) start: > stop: > +orderer.example.com | 2018-01-14 11:45:39.171 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU df4 retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-14 11:45:39.171 UTC [fsblkstorage] newBlockfileStream -> DEBU df5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] +orderer.example.com | 2018-01-14 11:45:39.171 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU df6 Remaining bytes=[27525], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:39.171 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU df7 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} +orderer.example.com | 2018-01-14 11:45:39.172 UTC [orderer/common/deliver] Handle -> DEBU df8 [channel: businesschannel] Delivering block for (0xc420373960) +orderer.example.com | 2018-01-14 11:45:39.172 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU df9 retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-14 11:45:39.172 UTC [fsblkstorage] newBlockfileStream -> DEBU dfa newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +orderer.example.com | 2018-01-14 11:45:39.173 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU dfb Remaining bytes=[13792], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:39.173 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU dfc Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +orderer.example.com | 2018-01-14 11:45:39.173 UTC [orderer/common/deliver] Handle -> DEBU dfd [channel: businesschannel] Delivering block for (0xc420373960) +orderer.example.com | 2018-01-14 11:45:39.602 UTC [orderer/main] Deliver -> DEBU dfe Starting new Deliver handler +orderer.example.com | 2018-01-14 11:45:39.602 UTC [orderer/common/deliver] Handle -> DEBU dff Starting new deliver loop +orderer.example.com | 2018-01-14 11:45:39.602 UTC [orderer/common/deliver] Handle -> DEBU e00 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:45:39.608 UTC [policies] GetPolicy -> DEBU e01 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:45:39.609 UTC [cauthdsl] func1 -> DEBU e02 0xc420026028 gate 1515930339609038364 evaluation starts +orderer.example.com | 2018-01-14 11:45:39.609 UTC [cauthdsl] func2 -> DEBU e03 0xc420026028 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:45:39.609 UTC [cauthdsl] func2 -> DEBU e04 0xc420026028 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:45:39.609 UTC [msp/identity] newIdentity -> DEBU e05 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14447,163 +14385,38 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU orderer.example.com | Cp7fopYLAR0CUyw+Xyk= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:04.071 UTC [cauthdsl] func2 -> DEBU e1b 0xc420026028 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | 2018-01-04 01:51:04.071 UTC [cauthdsl] func2 -> DEBU e1c 0xc420026028 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:04.071 UTC [cauthdsl] func1 -> DEBU e1d 0xc420026028 gate 1515030664069075500 evaluation fails -orderer.example.com | 2018-01-04 01:51:04.072 UTC [cauthdsl] func1 -> DEBU e1e 0xc420026060 gate 1515030664072385200 evaluation starts -orderer.example.com | 2018-01-04 01:51:04.072 UTC [cauthdsl] func2 -> DEBU e1f 0xc420026060 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:04.072 UTC [cauthdsl] func2 -> DEBU e20 0xc420026060 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:04.073 UTC [msp/identity] newIdentity -> DEBU e21 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -orderer.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -orderer.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -orderer.example.com | Cp7fopYLAR0CUyw+Xyk= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:04.074 UTC [cauthdsl] func2 -> DEBU e22 0xc420026060 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-04 01:51:04.074 UTC [cauthdsl] func2 -> DEBU e23 0xc420026060 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:04.074 UTC [cauthdsl] func1 -> DEBU e24 0xc420026060 gate 1515030664072385200 evaluation fails -orderer.example.com | 2018-01-04 01:51:04.074 UTC [cauthdsl] func1 -> DEBU e25 0xc420026178 gate 1515030664074321600 evaluation starts -orderer.example.com | 2018-01-04 01:51:04.074 UTC [cauthdsl] func2 -> DEBU e26 0xc420026178 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:04.074 UTC [cauthdsl] func2 -> DEBU e27 0xc420026178 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:04.074 UTC [msp/identity] newIdentity -> DEBU e28 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -orderer.example.com | lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -orderer.example.com | cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -orderer.example.com | Cp7fopYLAR0CUyw+Xyk= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:04.075 UTC [msp] SatisfiesPrincipal -> DEBU e29 Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-04 01:51:04.075 UTC [msp] Validate -> DEBU e2a MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:51:04.075 UTC [cauthdsl] func2 -> DEBU e2b 0xc420026178 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:04.075 UTC [msp/identity] Verify -> DEBU e2c Verify: digest = 00000000 36 1e 09 c2 4f 87 c7 4c 8b 51 d7 1a 2d bd 9b 5d |6...O..L.Q..-..]| -orderer.example.com | 00000010 9c 58 62 61 35 7c 9a 35 28 94 05 b9 9f 82 a2 43 |.Xba5|.5(......C| -orderer.example.com | 2018-01-04 01:51:04.075 UTC [msp/identity] Verify -> DEBU e2d Verify: sig = 00000000 30 44 02 20 60 1e 59 e6 0d 8f 95 88 91 d7 eb 64 |0D. `.Y........d| -orderer.example.com | 00000010 d6 ea 9b 72 08 25 35 a8 81 16 3d d3 91 02 f3 14 |...r.%5...=.....| -orderer.example.com | 00000020 c2 3b 16 10 02 20 1a c0 02 bf b1 49 29 b3 39 3c |.;... .....I).9<| -orderer.example.com | 00000030 68 ab 0d cf 21 00 fb d0 ac 29 18 1d e2 db 7a 4f |h...!....)....zO| -orderer.example.com | 00000040 21 12 46 ad bf fd |!.F...| -orderer.example.com | 2018-01-04 01:51:04.075 UTC [cauthdsl] func2 -> DEBU e2e 0xc420026178 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:04.076 UTC [cauthdsl] func1 -> DEBU e2f 0xc420026178 gate 1515030664074321600 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:04.076 UTC [orderer/common/sigfilter] Apply -> DEBU e30 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209168c0 1 [0xc42010e810]}) %!s(*policies.implicitMetaPolicy=&{0xc420917020 1 [0xc42010e8c0 0xc42010e960]})]} -orderer.example.com | 2018-01-04 01:51:04.076 UTC [orderer/common/deliver] Handle -> DEBU e31 [channel: businesschannel] Received seekInfo (0xc4201f9360) start: > stop: > -orderer.example.com | 2018-01-04 01:51:04.076 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e32 retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-04 01:51:04.076 UTC [fsblkstorage] newBlockfileStream -> DEBU e33 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] -orderer.example.com | 2018-01-04 01:51:04.076 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e34 Remaining bytes=[27525], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:04.076 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e35 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} -orderer.example.com | 2018-01-04 01:51:04.076 UTC [orderer/common/deliver] Handle -> DEBU e36 [channel: businesschannel] Delivering block for (0xc4201f9360) -orderer.example.com | 2018-01-04 01:51:04.078 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e37 retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-04 01:51:04.079 UTC [fsblkstorage] newBlockfileStream -> DEBU e38 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25665] -orderer.example.com | 2018-01-04 01:51:04.079 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e39 Remaining bytes=[13793], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:04.079 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e3a Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25665], bytesOffset=[25667]} -orderer.example.com | 2018-01-04 01:51:04.079 UTC [orderer/common/deliver] Handle -> DEBU e3b [channel: businesschannel] Delivering block for (0xc4201f9360) -orderer.example.com | 2018-01-04 01:51:04.221 UTC [orderer/main] Deliver -> DEBU e3c Starting new Deliver handler -orderer.example.com | 2018-01-04 01:51:04.221 UTC [orderer/common/deliver] Handle -> DEBU e3d Starting new deliver loop -orderer.example.com | 2018-01-04 01:51:04.221 UTC [orderer/common/deliver] Handle -> DEBU e3e Attempting to read seek info message -orderer.example.com | 2018-01-04 01:51:04.224 UTC [policies] GetPolicy -> DEBU e3f Returning policy Readers for evaluation -orderer.example.com | 2018-01-04 01:51:04.224 UTC [cauthdsl] func1 -> DEBU e40 0xc420026408 gate 1515030664224825900 evaluation starts -orderer.example.com | 2018-01-04 01:51:04.225 UTC [cauthdsl] func2 -> DEBU e41 0xc420026408 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:04.226 UTC [cauthdsl] func2 -> DEBU e42 0xc420026408 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b45494b4f734b726e62316c7478484d61703670455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f4566476a433856624d457a435943504b4c4a475364727259645a666552410a464857435832542b36554b32755553724c365933436a476841306b39646351556c767a362f4a6862464d68554445384971395665724f536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413063414d45514349414c44527075340a36726c524771775a455249553042686336456a4644724f4c79382b615174753576663549416942737834765a6171767552314a79565a4a782f357973552b6a370a3778706e666b4e2f54784e427353333156413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:04.229 UTC [msp/identity] newIdentity -> DEBU e43 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -orderer.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -orderer.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -orderer.example.com | 7xpnfkN/TxNBsS31VA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:04.230 UTC [cauthdsl] func2 -> DEBU e44 0xc420026408 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | 2018-01-04 01:51:04.230 UTC [cauthdsl] func2 -> DEBU e45 0xc420026408 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:04.230 UTC [cauthdsl] func1 -> DEBU e46 0xc420026408 gate 1515030664224825900 evaluation fails -orderer.example.com | 2018-01-04 01:51:04.230 UTC [cauthdsl] func1 -> DEBU e47 0xc420026418 gate 1515030664230884500 evaluation starts -orderer.example.com | 2018-01-04 01:51:04.230 UTC [cauthdsl] func2 -> DEBU e48 0xc420026418 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:04.230 UTC [cauthdsl] func2 -> DEBU e49 0xc420026418 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b45494b4f734b726e62316c7478484d61703670455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f4566476a433856624d457a435943504b4c4a475364727259645a666552410a464857435832542b36554b32755553724c365933436a476841306b39646351556c767a362f4a6862464d68554445384971395665724f536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413063414d45514349414c44527075340a36726c524771775a455249553042686336456a4644724f4c79382b615174753576663549416942737834765a6171767552314a79565a4a782f357973552b6a370a3778706e666b4e2f54784e427353333156413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:04.232 UTC [msp/identity] newIdentity -> DEBU e4a Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -orderer.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -orderer.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -orderer.example.com | 7xpnfkN/TxNBsS31VA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:04.241 UTC [cauthdsl] func2 -> DEBU e4b 0xc420026418 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-04 01:51:04.243 UTC [cauthdsl] func2 -> DEBU e4c 0xc420026418 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:04.245 UTC [cauthdsl] func1 -> DEBU e4d 0xc420026418 gate 1515030664230884500 evaluation fails -orderer.example.com | 2018-01-04 01:51:04.246 UTC [cauthdsl] func1 -> DEBU e4e 0xc420026428 gate 1515030664246692400 evaluation starts -orderer.example.com | 2018-01-04 01:51:04.247 UTC [cauthdsl] func2 -> DEBU e4f 0xc420026428 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:04.248 UTC [cauthdsl] func2 -> DEBU e50 0xc420026428 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b45494b4f734b726e62316c7478484d61703670455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f4566476a433856624d457a435943504b4c4a475364727259645a666552410a464857435832542b36554b32755553724c365933436a476841306b39646351556c767a362f4a6862464d68554445384971395665724f536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413063414d45514349414c44527075340a36726c524771775a455249553042686336456a4644724f4c79382b615174753576663549416942737834765a6171767552314a79565a4a782f357973552b6a370a3778706e666b4e2f54784e427353333156413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:04.252 UTC [msp/identity] newIdentity -> DEBU e51 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -orderer.example.com | FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -orderer.example.com | 6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -orderer.example.com | 7xpnfkN/TxNBsS31VA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:04.254 UTC [msp] SatisfiesPrincipal -> DEBU e52 Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-04 01:51:04.255 UTC [msp] Validate -> DEBU e53 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:51:04.255 UTC [cauthdsl] func2 -> DEBU e54 0xc420026428 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:04.256 UTC [msp/identity] Verify -> DEBU e55 Verify: digest = 00000000 8c 26 95 94 64 b8 01 25 87 e6 db 0b c0 09 d8 18 |.&..d..%........| -orderer.example.com | 00000010 fe 24 c8 f3 7c 5a c2 a5 b1 89 d6 55 2c 8e 8c b6 |.$..|Z.....U,...| -orderer.example.com | 2018-01-04 01:51:04.257 UTC [msp/identity] Verify -> DEBU e56 Verify: sig = 00000000 30 44 02 20 3a 03 23 0d a0 16 17 95 0d 00 82 b3 |0D. :.#.........| -orderer.example.com | 00000010 73 47 6a 2a 99 14 d1 07 a7 7c 91 2f 9e c8 35 61 |sGj*.....|./..5a| -orderer.example.com | 00000020 01 c6 fb 5a 02 20 77 5c fb 47 70 8d 13 2e bf 12 |...Z. w\.Gp.....| -orderer.example.com | 00000030 d5 6c 15 66 48 7b 5f 87 8b 9d 32 18 21 0e 27 bf |.l.fH{_...2.!.'.| -orderer.example.com | 00000040 a8 14 63 54 41 23 |..cTA#| -orderer.example.com | 2018-01-04 01:51:04.257 UTC [cauthdsl] func2 -> DEBU e57 0xc420026428 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:04.257 UTC [cauthdsl] func1 -> DEBU e58 0xc420026428 gate 1515030664246692400 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:04.257 UTC [orderer/common/sigfilter] Apply -> DEBU e59 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209168c0 1 [0xc42010e810]}) %!s(*policies.implicitMetaPolicy=&{0xc420917020 1 [0xc42010e8c0 0xc42010e960]})]} -orderer.example.com | 2018-01-04 01:51:04.260 UTC [orderer/common/deliver] Handle -> DEBU e5a [channel: businesschannel] Received seekInfo (0xc42007b860) start: > stop: > -orderer.example.com | 2018-01-04 01:51:04.260 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e5b retrieveBlockByNumber() - blockNum = [1] -orderer.example.com | 2018-01-04 01:51:04.261 UTC [fsblkstorage] newBlockfileStream -> DEBU e5c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] -orderer.example.com | 2018-01-04 01:51:04.261 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e5d Remaining bytes=[27525], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:04.261 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e5e Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} -orderer.example.com | 2018-01-04 01:51:04.261 UTC [orderer/common/deliver] Handle -> DEBU e5f [channel: businesschannel] Delivering block for (0xc42007b860) -orderer.example.com | 2018-01-04 01:51:04.262 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e60 retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-04 01:51:04.263 UTC [fsblkstorage] newBlockfileStream -> DEBU e61 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25665] -orderer.example.com | 2018-01-04 01:51:04.263 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e62 Remaining bytes=[13793], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:04.263 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e63 Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25665], bytesOffset=[25667]} -orderer.example.com | 2018-01-04 01:51:04.263 UTC [orderer/common/deliver] Handle -> DEBU e64 [channel: businesschannel] Delivering block for (0xc42007b860) -orderer.example.com | 2018-01-04 01:51:05.445 UTC [orderer/main] Broadcast -> DEBU e65 Starting new Broadcast handler -orderer.example.com | 2018-01-04 01:51:05.445 UTC [orderer/common/broadcast] Handle -> DEBU e66 Starting new broadcast loop -orderer.example.com | 2018-01-04 01:51:26.289 UTC [orderer/common/broadcast] Handle -> DEBU e67 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-04 01:51:26.290 UTC [policies] GetPolicy -> DEBU e68 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:26.290 UTC [cauthdsl] func1 -> DEBU e69 0xc420026480 gate 1515030686290408600 evaluation starts -orderer.example.com | 2018-01-04 01:51:26.290 UTC [cauthdsl] func2 -> DEBU e6a 0xc420026480 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:26.290 UTC [cauthdsl] func2 -> DEBU e6b 0xc420026480 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:26.292 UTC [msp/identity] newIdentity -> DEBU e6c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:45:39.610 UTC [msp] SatisfiesPrincipal -> DEBU e06 Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-14 11:45:39.610 UTC [msp] Validate -> DEBU e07 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:45:39.611 UTC [cauthdsl] func2 -> DEBU e08 0xc420026028 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:45:39.611 UTC [msp/identity] Verify -> DEBU e09 Verify: digest = 00000000 04 df fb 71 bd 61 d1 0a c0 26 36 7e f8 ce 68 b6 |...q.a...&6~..h.| +orderer.example.com | 00000010 b9 1f 44 7c f0 49 8d 25 ec c9 00 d1 bf 16 31 80 |..D|.I.%......1.| +orderer.example.com | 2018-01-14 11:45:39.611 UTC [msp/identity] Verify -> DEBU e0a Verify: sig = 00000000 30 44 02 20 74 83 61 59 4e 75 ef c4 be 18 d9 94 |0D. t.aYNu......| +orderer.example.com | 00000010 a9 fe dc 02 92 67 a7 f8 d0 d6 c6 2b dd 79 22 e9 |.....g.....+.y".| +orderer.example.com | 00000020 25 38 28 f4 02 20 46 09 13 72 42 50 d9 95 46 e0 |%8(.. F..rBP..F.| +orderer.example.com | 00000030 28 df cc 49 24 3f 1b 22 09 6d 48 4c ed dc 4f d0 |(..I$?.".mHL..O.| +orderer.example.com | 00000040 c1 82 0c 9c f2 5b |.....[| +orderer.example.com | 2018-01-14 11:45:39.611 UTC [cauthdsl] func2 -> DEBU e0b 0xc420026028 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:45:39.611 UTC [cauthdsl] func1 -> DEBU e0c 0xc420026028 gate 1515930339609038364 evaluation succeeds +orderer.example.com | 2018-01-14 11:45:39.611 UTC [orderer/common/sigfilter] Apply -> DEBU e0d Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:45:39.611 UTC [orderer/common/deliver] Handle -> DEBU e0e [channel: businesschannel] Received seekInfo (0xc42034dc80) start: > stop: > +orderer.example.com | 2018-01-14 11:45:39.612 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e0f retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-14 11:45:39.612 UTC [fsblkstorage] newBlockfileStream -> DEBU e10 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] +orderer.example.com | 2018-01-14 11:45:39.612 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e11 Remaining bytes=[27525], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:39.612 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e12 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} +orderer.example.com | 2018-01-14 11:45:39.612 UTC [orderer/common/deliver] Handle -> DEBU e13 [channel: businesschannel] Delivering block for (0xc42034dc80) +orderer.example.com | 2018-01-14 11:45:39.613 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e14 retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-14 11:45:39.613 UTC [fsblkstorage] newBlockfileStream -> DEBU e15 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +orderer.example.com | 2018-01-14 11:45:39.613 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e16 Remaining bytes=[13792], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:45:39.613 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e17 Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +orderer.example.com | 2018-01-14 11:45:39.613 UTC [orderer/common/deliver] Handle -> DEBU e18 [channel: businesschannel] Delivering block for (0xc42034dc80) +orderer.example.com | 2018-01-14 11:45:41.094 UTC [orderer/main] Broadcast -> DEBU e19 Starting new Broadcast handler +orderer.example.com | 2018-01-14 11:45:41.094 UTC [orderer/common/broadcast] Handle -> DEBU e1a Starting new broadcast loop +orderer.example.com | 2018-01-14 11:46:00.613 UTC [orderer/common/broadcast] Handle -> DEBU e1b [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-14 11:46:00.613 UTC [policies] GetPolicy -> DEBU e1c Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:46:00.613 UTC [cauthdsl] func1 -> DEBU e1d 0xc4200260b0 gate 1515930360613725364 evaluation starts +orderer.example.com | 2018-01-14 11:46:00.613 UTC [cauthdsl] func2 -> DEBU e1e 0xc4200260b0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:00.614 UTC [cauthdsl] func2 -> DEBU e1f 0xc4200260b0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:00.614 UTC [msp/identity] newIdentity -> DEBU e20 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14617,25 +14430,13 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:26.292 UTC [msp] SatisfiesPrincipal -> DEBU e6d Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-04 01:51:26.293 UTC [msp] Validate -> DEBU e6e MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:51:26.293 UTC [cauthdsl] func2 -> DEBU e6f 0xc420026480 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:26.293 UTC [msp/identity] Verify -> DEBU e70 Verify: digest = 00000000 cc 15 55 9a c9 0a 38 69 c2 3a d8 7e d8 2e 83 2e |..U...8i.:.~....| -orderer.example.com | 00000010 f8 e2 2c 4a 76 1d b2 1f cc 34 53 e9 76 e0 3a f1 |..,Jv....4S.v.:.| -orderer.example.com | 2018-01-04 01:51:26.294 UTC [msp/identity] Verify -> DEBU e71 Verify: sig = 00000000 30 45 02 21 00 ea ba 42 6a 0d 7f 8f 92 c1 6c f6 |0E.!...Bj.....l.| -orderer.example.com | 00000010 03 a4 3e b1 24 12 c8 f0 19 42 d4 87 ca cf a4 88 |..>.$....B......| -orderer.example.com | 00000020 00 77 73 9b aa 02 20 06 0f 01 29 0a a2 fc 8c ee |.ws... ...).....| -orderer.example.com | 00000030 ed 98 57 92 8f 02 4c 90 b6 33 7f 9a 62 ab 79 19 |..W...L..3..b.y.| -orderer.example.com | 00000040 ff cb 11 91 da a4 5d |......]| -orderer.example.com | 2018-01-04 01:51:26.294 UTC [cauthdsl] func2 -> DEBU e72 0xc420026480 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:26.294 UTC [cauthdsl] func1 -> DEBU e73 0xc420026480 gate 1515030686290408600 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:26.294 UTC [orderer/common/sigfilter] Apply -> DEBU e74 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -orderer.example.com | 2018-01-04 01:51:26.295 UTC [orderer/common/broadcast] Handle -> DEBU e75 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-04 01:51:26.296 UTC [policies] GetPolicy -> DEBU e76 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:26.296 UTC [cauthdsl] func1 -> DEBU e77 0xc4200264a0 gate 1515030686296720600 evaluation starts -orderer.example.com | 2018-01-04 01:51:26.296 UTC [cauthdsl] func2 -> DEBU e78 0xc4200264a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:26.296 UTC [cauthdsl] func2 -> DEBU e79 0xc4200264a0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:26.297 UTC [msp/identity] newIdentity -> DEBU e7a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:00.615 UTC [cauthdsl] func2 -> DEBU e21 0xc4200260b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-14 11:46:00.615 UTC [cauthdsl] func2 -> DEBU e22 0xc4200260b0 principal evaluation fails +orderer.example.com | 2018-01-14 11:46:00.615 UTC [cauthdsl] func1 -> DEBU e23 0xc4200260b0 gate 1515930360613725364 evaluation fails +orderer.example.com | 2018-01-14 11:46:00.615 UTC [cauthdsl] func1 -> DEBU e24 0xc4200260c0 gate 1515930360615707864 evaluation starts +orderer.example.com | 2018-01-14 11:46:00.615 UTC [cauthdsl] func2 -> DEBU e25 0xc4200260c0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:00.615 UTC [cauthdsl] func2 -> DEBU e26 0xc4200260c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:00.615 UTC [msp/identity] newIdentity -> DEBU e27 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14649,216 +14450,25 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:26.297 UTC [msp] SatisfiesPrincipal -> DEBU e7b Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-04 01:51:26.297 UTC [msp] Validate -> DEBU e7c MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:51:26.297 UTC [cauthdsl] func2 -> DEBU e7d 0xc4200264a0 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:26.297 UTC [msp/identity] Verify -> DEBU e7e Verify: digest = 00000000 cc 15 55 9a c9 0a 38 69 c2 3a d8 7e d8 2e 83 2e |..U...8i.:.~....| -orderer.example.com | 00000010 f8 e2 2c 4a 76 1d b2 1f cc 34 53 e9 76 e0 3a f1 |..,Jv....4S.v.:.| -orderer.example.com | 2018-01-04 01:51:26.297 UTC [msp/identity] Verify -> DEBU e7f Verify: sig = 00000000 30 45 02 21 00 ea ba 42 6a 0d 7f 8f 92 c1 6c f6 |0E.!...Bj.....l.| -orderer.example.com | 00000010 03 a4 3e b1 24 12 c8 f0 19 42 d4 87 ca cf a4 88 |..>.$....B......| -orderer.example.com | 00000020 00 77 73 9b aa 02 20 06 0f 01 29 0a a2 fc 8c ee |.ws... ...).....| -orderer.example.com | 00000030 ed 98 57 92 8f 02 4c 90 b6 33 7f 9a 62 ab 79 19 |..W...L..3..b.y.| -orderer.example.com | 00000040 ff cb 11 91 da a4 5d |......]| -orderer.example.com | 2018-01-04 01:51:26.298 UTC [cauthdsl] func2 -> DEBU e80 0xc4200264a0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:26.298 UTC [cauthdsl] func1 -> DEBU e81 0xc4200264a0 gate 1515030686296720600 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:26.298 UTC [orderer/common/sigfilter] Apply -> DEBU e82 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -orderer.example.com | 2018-01-04 01:51:26.298 UTC [orderer/common/blockcutter] Ordered -> DEBU e83 Enqueuing message into batch -orderer.example.com | 2018-01-04 01:51:26.298 UTC [orderer/common/broadcast] Handle -> WARN e84 Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:51:26.298 UTC [orderer/main] func1 -> DEBU e85 Closing Broadcast stream -orderer.example.com | 2018-01-04 01:51:26.457 UTC [orderer/main] Broadcast -> DEBU e86 Starting new Broadcast handler -orderer.example.com | 2018-01-04 01:51:26.457 UTC [orderer/common/broadcast] Handle -> DEBU e87 Starting new broadcast loop -orderer.example.com | 2018-01-04 01:51:28.298 UTC [orderer/solo] main -> DEBU e88 Batch timer expired, creating block -orderer.example.com | 2018-01-04 01:51:28.298 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e89 retrieveBlockByNumber() - blockNum = [2] -orderer.example.com | 2018-01-04 01:51:28.298 UTC [fsblkstorage] newBlockfileStream -> DEBU e8a newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25665] -orderer.example.com | 2018-01-04 01:51:28.298 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8b Remaining bytes=[13793], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:28.298 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8c Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25665], bytesOffset=[25667]} -orderer.example.com | 2018-01-04 01:51:28.299 UTC [orderer/multichain] addBlockSignature -> DEBU e8d &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -orderer.example.com | 2018-01-04 01:51:28.299 UTC [orderer/multichain] addBlockSignature -> DEBU e8e &{} -orderer.example.com | 2018-01-04 01:51:28.299 UTC [msp] GetLocalMSP -> DEBU e8f Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:28.299 UTC [msp] GetDefaultSigningIdentity -> DEBU e90 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:28.299 UTC [msp] GetLocalMSP -> DEBU e91 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:28.299 UTC [msp] GetDefaultSigningIdentity -> DEBU e92 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:28.299 UTC [msp/identity] Sign -> DEBU e93 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...7CA4BAA58DB293A7E89C1BF8F55BFE4C -orderer.example.com | 2018-01-04 01:51:28.299 UTC [msp/identity] Sign -> DEBU e94 Sign: digest: F97E86C9B58ABAF9E7C743F010271279872FAC36826057DDB70ED56075D22BD4 -orderer.example.com | 2018-01-04 01:51:28.299 UTC [msp] GetLocalMSP -> DEBU e95 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:28.299 UTC [msp] GetDefaultSigningIdentity -> DEBU e96 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:28.299 UTC [orderer/multichain] addLastConfigSignature -> DEBU e97 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-04 01:51:28.300 UTC [msp] GetLocalMSP -> DEBU e98 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:28.300 UTC [msp] GetDefaultSigningIdentity -> DEBU e99 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:28.300 UTC [msp/identity] Sign -> DEBU e9a Sign: plaintext: 08020AFA050A0A4F7264657265724D53...7CA4BAA58DB293A7E89C1BF8F55BFE4C -orderer.example.com | 2018-01-04 01:51:28.300 UTC [msp/identity] Sign -> DEBU e9b Sign: digest: EC05286F65241A880D2B54D1DF543A7A1C3FE1C70F38C80B956379485AD3EEFD -orderer.example.com | 2018-01-04 01:51:28.303 UTC [fsblkstorage] indexBlock -> DEBU e9c Indexing block [blockNum=3, blockHash=[]byte{0x1, 0x89, 0x46, 0x2c, 0xf9, 0x7a, 0xc5, 0x26, 0xa0, 0x0, 0x75, 0xd, 0x2c, 0xe4, 0xad, 0x19, 0xe1, 0x78, 0x94, 0x3b, 0x7f, 0xa4, 0x2b, 0xe, 0x79, 0xfc, 0x32, 0xb3, 0x54, 0x7b, 0x83, 0x63} txOffsets= -orderer.example.com | txId=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa locPointer=offset=70, bytesLength=3389 -orderer.example.com | ] -orderer.example.com | 2018-01-04 01:51:28.303 UTC [fsblkstorage] updateCheckpoint -> DEBU e9d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44668], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | 2018-01-04 01:51:28.304 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e9f retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | 2018-01-04 01:51:28.304 UTC [fsblkstorage] newBlockfileStream -> DEBU ea0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] -orderer.example.com | 2018-01-04 01:51:28.304 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea1 Remaining bytes=[5210], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:28.304 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea2 Returning blockbytes - length=[5208], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} -orderer.example.com | 2018-01-04 01:51:28.304 UTC [orderer/common/deliver] Handle -> DEBU ea3 [channel: businesschannel] Delivering block for (0xc42007b860) -orderer.example.com | 2018-01-04 01:51:28.304 UTC [orderer/common/deliver] Handle -> WARN ea4 [channel: businesschannel] Error sending to stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:51:28.304 UTC [orderer/main] func1 -> DEBU ea5 Closing Deliver stream -orderer.example.com | 2018-01-04 01:51:28.304 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea6 retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | 2018-01-04 01:51:28.304 UTC [fsblkstorage] newBlockfileStream -> DEBU ea7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] -orderer.example.com | 2018-01-04 01:51:28.305 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea8 Remaining bytes=[5210], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:28.305 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea9 Returning blockbytes - length=[5208], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} -orderer.example.com | 2018-01-04 01:51:28.305 UTC [orderer/common/deliver] Handle -> DEBU eaa [channel: businesschannel] Delivering block for (0xc4201f9360) -orderer.example.com | 2018-01-04 01:51:28.304 UTC [orderer/multichain] WriteBlock -> DEBU e9e [channel: businesschannel] Wrote block 3 -orderer.example.com | 2018-01-04 01:51:28.305 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU eab retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | 2018-01-04 01:51:28.308 UTC [fsblkstorage] newBlockfileStream -> DEBU eac newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] -orderer.example.com | 2018-01-04 01:51:28.308 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ead Remaining bytes=[5210], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:28.308 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU eae Returning blockbytes - length=[5208], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} -orderer.example.com | 2018-01-04 01:51:28.308 UTC [orderer/common/deliver] Handle -> DEBU eaf [channel: businesschannel] Delivering block for (0xc42027ed80) -orderer.example.com | 2018-01-04 01:51:45.808 UTC [orderer/common/broadcast] Handle -> DEBU eb0 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-04 01:51:45.808 UTC [policies] GetPolicy -> DEBU eb1 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:45.808 UTC [cauthdsl] func1 -> DEBU eb2 0xc42010ecc8 gate 1515030705808845300 evaluation starts -orderer.example.com | 2018-01-04 01:51:45.808 UTC [cauthdsl] func2 -> DEBU eb3 0xc42010ecc8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:45.809 UTC [cauthdsl] func2 -> DEBU eb4 0xc42010ecc8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:45.811 UTC [msp/identity] newIdentity -> DEBU eb5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:45.812 UTC [cauthdsl] func2 -> DEBU eb6 0xc42010ecc8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-04 01:51:45.813 UTC [cauthdsl] func2 -> DEBU eb7 0xc42010ecc8 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:45.813 UTC [cauthdsl] func1 -> DEBU eb8 0xc42010ecc8 gate 1515030705808845300 evaluation fails -orderer.example.com | 2018-01-04 01:51:45.813 UTC [cauthdsl] func1 -> DEBU eb9 0xc42010ecd8 gate 1515030705813705400 evaluation starts -orderer.example.com | 2018-01-04 01:51:45.814 UTC [cauthdsl] func2 -> DEBU eba 0xc42010ecd8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:45.814 UTC [cauthdsl] func2 -> DEBU ebb 0xc42010ecd8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:45.815 UTC [msp/identity] newIdentity -> DEBU ebc Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:45.816 UTC [msp] SatisfiesPrincipal -> DEBU ebd Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-04 01:51:45.816 UTC [msp] Validate -> DEBU ebe MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:51:45.816 UTC [cauthdsl] func2 -> DEBU ebf 0xc42010ecd8 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:45.817 UTC [msp/identity] Verify -> DEBU ec0 Verify: digest = 00000000 26 91 28 27 94 d8 66 66 3c d3 1c 90 0f 1e 97 50 |&.('..ff<......P| -orderer.example.com | 00000010 ee 6c 33 a5 0c de 74 98 85 93 27 9d d7 85 41 9b |.l3...t...'...A.| -orderer.example.com | 2018-01-04 01:51:45.817 UTC [msp/identity] Verify -> DEBU ec1 Verify: sig = 00000000 30 44 02 20 5a 88 e5 f2 94 c5 c5 5c 9b ed 7e 6e |0D. Z......\..~n| -orderer.example.com | 00000010 74 cf 2b 06 ef 92 16 0c 90 e3 46 ee 9d b9 ec aa |t.+.......F.....| -orderer.example.com | 00000020 72 dd ee 79 02 20 6d e7 22 11 05 e7 90 de c3 6c |r..y. m."......l| -orderer.example.com | 00000030 63 bb 03 ba 98 4d 0b 38 c0 af 59 55 d1 b8 16 85 |c....M.8..YU....| -orderer.example.com | 00000040 07 8d 3b 8a fd 49 |..;..I| -orderer.example.com | 2018-01-04 01:51:45.817 UTC [cauthdsl] func2 -> DEBU ec2 0xc42010ecd8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:45.817 UTC [cauthdsl] func1 -> DEBU ec3 0xc42010ecd8 gate 1515030705813705400 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:45.817 UTC [orderer/common/sigfilter] Apply -> DEBU ec4 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -orderer.example.com | 2018-01-04 01:51:45.818 UTC [orderer/common/broadcast] Handle -> DEBU ec5 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-04 01:51:45.819 UTC [policies] GetPolicy -> DEBU ec6 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:51:45.819 UTC [cauthdsl] func1 -> DEBU ec7 0xc420026510 gate 1515030705819090300 evaluation starts -orderer.example.com | 2018-01-04 01:51:45.819 UTC [cauthdsl] func2 -> DEBU ec8 0xc420026510 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:45.819 UTC [cauthdsl] func2 -> DEBU ec9 0xc420026510 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:45.820 UTC [msp/identity] newIdentity -> DEBU eca Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:45.820 UTC [cauthdsl] func2 -> DEBU ecb 0xc420026510 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-04 01:51:45.820 UTC [cauthdsl] func2 -> DEBU ecc 0xc420026510 principal evaluation fails -orderer.example.com | 2018-01-04 01:51:45.820 UTC [cauthdsl] func1 -> DEBU ecd 0xc420026510 gate 1515030705819090300 evaluation fails -orderer.example.com | 2018-01-04 01:51:45.820 UTC [cauthdsl] func1 -> DEBU ece 0xc420026520 gate 1515030705820460800 evaluation starts -orderer.example.com | 2018-01-04 01:51:45.820 UTC [cauthdsl] func2 -> DEBU ecf 0xc420026520 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:51:45.820 UTC [cauthdsl] func2 -> DEBU ed0 0xc420026520 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:51:45.820 UTC [msp/identity] newIdentity -> DEBU ed1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:51:45.821 UTC [msp] SatisfiesPrincipal -> DEBU ed2 Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-04 01:51:45.821 UTC [msp] Validate -> DEBU ed3 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:51:45.821 UTC [cauthdsl] func2 -> DEBU ed4 0xc420026520 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:51:45.821 UTC [msp/identity] Verify -> DEBU ed5 Verify: digest = 00000000 26 91 28 27 94 d8 66 66 3c d3 1c 90 0f 1e 97 50 |&.('..ff<......P| -orderer.example.com | 00000010 ee 6c 33 a5 0c de 74 98 85 93 27 9d d7 85 41 9b |.l3...t...'...A.| -orderer.example.com | 2018-01-04 01:51:45.821 UTC [msp/identity] Verify -> DEBU ed6 Verify: sig = 00000000 30 44 02 20 5a 88 e5 f2 94 c5 c5 5c 9b ed 7e 6e |0D. Z......\..~n| -orderer.example.com | 00000010 74 cf 2b 06 ef 92 16 0c 90 e3 46 ee 9d b9 ec aa |t.+.......F.....| -orderer.example.com | 00000020 72 dd ee 79 02 20 6d e7 22 11 05 e7 90 de c3 6c |r..y. m."......l| -orderer.example.com | 00000030 63 bb 03 ba 98 4d 0b 38 c0 af 59 55 d1 b8 16 85 |c....M.8..YU....| -orderer.example.com | 00000040 07 8d 3b 8a fd 49 |..;..I| -orderer.example.com | 2018-01-04 01:51:45.821 UTC [cauthdsl] func2 -> DEBU ed7 0xc420026520 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:51:45.821 UTC [cauthdsl] func1 -> DEBU ed8 0xc420026520 gate 1515030705820460800 evaluation succeeds -orderer.example.com | 2018-01-04 01:51:45.821 UTC [orderer/common/sigfilter] Apply -> DEBU ed9 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -orderer.example.com | 2018-01-04 01:51:45.838 UTC [orderer/common/broadcast] Handle -> WARN eda Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:51:45.838 UTC [orderer/main] func1 -> DEBU edb Closing Broadcast stream -orderer.example.com | 2018-01-04 01:51:45.838 UTC [orderer/common/blockcutter] Ordered -> DEBU edc Enqueuing message into batch -orderer.example.com | 2018-01-04 01:51:47.839 UTC [orderer/solo] main -> DEBU edd Batch timer expired, creating block -orderer.example.com | 2018-01-04 01:51:47.840 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ede retrieveBlockByNumber() - blockNum = [3] -orderer.example.com | 2018-01-04 01:51:47.841 UTC [fsblkstorage] newBlockfileStream -> DEBU edf newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] -orderer.example.com | 2018-01-04 01:51:47.842 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee0 Remaining bytes=[5210], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:47.842 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee1 Returning blockbytes - length=[5208], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} -orderer.example.com | 2018-01-04 01:51:47.843 UTC [orderer/multichain] addBlockSignature -> DEBU ee2 &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -orderer.example.com | 2018-01-04 01:51:47.843 UTC [orderer/multichain] addBlockSignature -> DEBU ee3 &{} -orderer.example.com | 2018-01-04 01:51:47.844 UTC [msp] GetLocalMSP -> DEBU ee4 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:47.845 UTC [msp] GetDefaultSigningIdentity -> DEBU ee5 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:47.846 UTC [msp] GetLocalMSP -> DEBU ee6 Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:47.846 UTC [msp] GetDefaultSigningIdentity -> DEBU ee7 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:47.847 UTC [msp/identity] Sign -> DEBU ee8 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...7851BD8A85BFC961410A32179394FF3D -orderer.example.com | 2018-01-04 01:51:47.848 UTC [msp/identity] Sign -> DEBU ee9 Sign: digest: 2987BB0601C3ED10C7022E86BDF1C23D53895D139CC8E4A5552CE885C88B6FA0 -orderer.example.com | 2018-01-04 01:51:47.849 UTC [msp] GetLocalMSP -> DEBU eea Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:47.849 UTC [msp] GetDefaultSigningIdentity -> DEBU eeb Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:47.849 UTC [orderer/multichain] addLastConfigSignature -> DEBU eec [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-04 01:51:47.850 UTC [msp] GetLocalMSP -> DEBU eed Returning existing local MSP -orderer.example.com | 2018-01-04 01:51:47.850 UTC [msp] GetDefaultSigningIdentity -> DEBU eee Obtaining default signing identity -orderer.example.com | 2018-01-04 01:51:47.850 UTC [msp/identity] Sign -> DEBU eef Sign: plaintext: 08020AFA050A0A4F7264657265724D53...7851BD8A85BFC961410A32179394FF3D -orderer.example.com | 2018-01-04 01:51:47.851 UTC [msp/identity] Sign -> DEBU ef0 Sign: digest: 76AA4ED837FA886F1A13A37D7D47E2D8DAB0125960511E843782359BEF511064 -orderer.example.com | 2018-01-04 01:51:47.854 UTC [fsblkstorage] indexBlock -> DEBU ef1 Indexing block [blockNum=4, blockHash=[]byte{0xce, 0x54, 0x20, 0x1a, 0xf4, 0x6a, 0xac, 0x8f, 0xbc, 0x59, 0x8, 0xbf, 0xd7, 0xbd, 0x23, 0x20, 0x17, 0xe6, 0x36, 0xd, 0xbe, 0xfa, 0x91, 0x3, 0x38, 0x61, 0x2e, 0xf1, 0x4, 0x9f, 0x6e, 0xa2} txOffsets= -orderer.example.com | txId=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 locPointer=offset=70, bytesLength=3388 -orderer.example.com | ] -orderer.example.com | 2018-01-04 01:51:47.854 UTC [fsblkstorage] updateCheckpoint -> DEBU ef2 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49876], isChainEmpty=[false], lastBlockNumber=[4] -orderer.example.com | 2018-01-04 01:51:47.854 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ef4 retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | 2018-01-04 01:51:47.854 UTC [orderer/multichain] WriteBlock -> DEBU ef3 [channel: businesschannel] Wrote block 4 -orderer.example.com | 2018-01-04 01:51:47.854 UTC [fsblkstorage] newBlockfileStream -> DEBU ef5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -orderer.example.com | 2018-01-04 01:51:47.855 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ef6 retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | 2018-01-04 01:51:47.855 UTC [fsblkstorage] newBlockfileStream -> DEBU ef8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -orderer.example.com | 2018-01-04 01:51:47.855 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef7 Remaining bytes=[5208], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:47.855 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef9 Remaining bytes=[5208], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:51:47.855 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU efb Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -orderer.example.com | 2018-01-04 01:51:47.855 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU efa Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -orderer.example.com | 2018-01-04 01:51:47.855 UTC [orderer/common/deliver] Handle -> DEBU efd [channel: businesschannel] Delivering block for (0xc42027ed80) -orderer.example.com | 2018-01-04 01:51:47.855 UTC [orderer/common/deliver] Handle -> DEBU efc [channel: businesschannel] Delivering block for (0xc4201f9360) -orderer.example.com | 2018-01-04 01:52:07.248 UTC [orderer/main] Broadcast -> DEBU efe Starting new Broadcast handler -orderer.example.com | 2018-01-04 01:52:07.248 UTC [orderer/common/broadcast] Handle -> DEBU eff Starting new broadcast loop -orderer.example.com | 2018-01-04 01:52:07.264 UTC [orderer/common/broadcast] Handle -> DEBU f00 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-04 01:52:07.264 UTC [policies] GetPolicy -> DEBU f01 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:52:07.264 UTC [cauthdsl] func1 -> DEBU f02 0xc42010ed40 gate 1515030727264764400 evaluation starts -orderer.example.com | 2018-01-04 01:52:07.264 UTC [cauthdsl] func2 -> DEBU f03 0xc42010ed40 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:52:07.264 UTC [cauthdsl] func2 -> DEBU f04 0xc42010ed40 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:52:07.266 UTC [msp/identity] newIdentity -> DEBU f05 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:00.616 UTC [msp] SatisfiesPrincipal -> DEBU e28 Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-14 11:46:00.616 UTC [msp] Validate -> DEBU e29 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:46:00.616 UTC [cauthdsl] func2 -> DEBU e2a 0xc4200260c0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:46:00.617 UTC [msp/identity] Verify -> DEBU e2b Verify: digest = 00000000 90 d9 40 5a f7 c9 1b 46 58 bf 15 6a 11 07 e0 1b |..@Z...FX..j....| +orderer.example.com | 00000010 d0 a6 0e 16 1b b3 d0 b2 05 39 ce b8 4e 0f 86 95 |.........9..N...| +orderer.example.com | 2018-01-14 11:46:00.617 UTC [msp/identity] Verify -> DEBU e2c Verify: sig = 00000000 30 45 02 21 00 e7 c4 78 21 ef 88 05 bd ea 1a 6c |0E.!...x!......l| +orderer.example.com | 00000010 1f 76 c4 5b 74 cb 8a b2 39 21 00 ae 28 6c 6d fc |.v.[t...9!..(lm.| +orderer.example.com | 00000020 8a 88 8b 7c 57 02 20 06 f5 8a 10 dd d5 94 6f 95 |...|W. .......o.| +orderer.example.com | 00000030 1f 2b 78 a8 83 17 de 43 c9 8e 61 a4 e2 c7 b5 36 |.+x....C..a....6| +orderer.example.com | 00000040 51 b2 b9 b2 be d0 f7 |Q......| +orderer.example.com | 2018-01-14 11:46:00.617 UTC [cauthdsl] func2 -> DEBU e2d 0xc4200260c0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:46:00.617 UTC [cauthdsl] func1 -> DEBU e2e 0xc4200260c0 gate 1515930360615707864 evaluation succeeds +orderer.example.com | 2018-01-14 11:46:00.617 UTC [orderer/common/sigfilter] Apply -> DEBU e2f Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +orderer.example.com | 2018-01-14 11:46:00.617 UTC [orderer/common/broadcast] Handle -> DEBU e30 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-14 11:46:00.618 UTC [policies] GetPolicy -> DEBU e31 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:46:00.618 UTC [cauthdsl] func1 -> DEBU e32 0xc420150c78 gate 1515930360618240364 evaluation starts +orderer.example.com | 2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e33 0xc420150c78 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e34 0xc420150c78 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:00.618 UTC [msp/identity] newIdentity -> DEBU e35 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14872,25 +14482,13 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:52:07.267 UTC [msp] SatisfiesPrincipal -> DEBU f06 Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-04 01:52:07.267 UTC [msp] Validate -> DEBU f07 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:52:07.268 UTC [cauthdsl] func2 -> DEBU f08 0xc42010ed40 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:52:07.268 UTC [msp/identity] Verify -> DEBU f09 Verify: digest = 00000000 c5 14 f8 e0 6f fa 67 35 28 8f f7 b8 23 4f 8e 9b |....o.g5(...#O..| -orderer.example.com | 00000010 7e 30 e8 8d bd b1 07 56 01 1c e4 82 95 2e f8 89 |~0.....V........| -orderer.example.com | 2018-01-04 01:52:07.268 UTC [msp/identity] Verify -> DEBU f0a Verify: sig = 00000000 30 45 02 21 00 ba 76 ab bb 19 0d 60 b4 1b 7d 06 |0E.!..v....`..}.| -orderer.example.com | 00000010 3b f5 5d 90 b5 78 ed 31 e7 a8 a9 e7 3d ee 39 61 |;.]..x.1....=.9a| -orderer.example.com | 00000020 9a 5b 76 09 c4 02 20 75 c7 4b a5 7b ca 9f 34 5b |.[v... u.K.{..4[| -orderer.example.com | 00000030 0b 76 40 87 99 06 20 62 f5 a2 18 33 cd 92 5a 52 |.v@... b...3..ZR| -orderer.example.com | 00000040 3b 89 62 d9 31 19 1d |;.b.1..| -orderer.example.com | 2018-01-04 01:52:07.268 UTC [cauthdsl] func2 -> DEBU f0b 0xc42010ed40 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:52:07.268 UTC [cauthdsl] func1 -> DEBU f0c 0xc42010ed40 gate 1515030727264764400 evaluation succeeds -orderer.example.com | 2018-01-04 01:52:07.268 UTC [orderer/common/sigfilter] Apply -> DEBU f0d Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -orderer.example.com | 2018-01-04 01:52:07.268 UTC [orderer/common/broadcast] Handle -> DEBU f0e [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-04 01:52:07.269 UTC [policies] GetPolicy -> DEBU f0f Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:52:07.269 UTC [cauthdsl] func1 -> DEBU f10 0xc42010e030 gate 1515030727269103200 evaluation starts -orderer.example.com | 2018-01-04 01:52:07.269 UTC [cauthdsl] func2 -> DEBU f11 0xc42010e030 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:52:07.269 UTC [cauthdsl] func2 -> DEBU f12 0xc42010e030 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:52:07.269 UTC [msp/identity] newIdentity -> DEBU f13 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e36 0xc420150c78 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e37 0xc420150c78 principal evaluation fails +orderer.example.com | 2018-01-14 11:46:00.618 UTC [cauthdsl] func1 -> DEBU e38 0xc420150c78 gate 1515930360618240364 evaluation fails +orderer.example.com | 2018-01-14 11:46:00.618 UTC [cauthdsl] func1 -> DEBU e39 0xc420150c88 gate 1515930360618954764 evaluation starts +orderer.example.com | 2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e3a 0xc420150c88 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:00.619 UTC [cauthdsl] func2 -> DEBU e3b 0xc420150c88 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:00.619 UTC [msp/identity] newIdentity -> DEBU e3c Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14904,65 +14502,65 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ orderer.example.com | xHTBvxfK6mAzmUitFmY= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:52:07.269 UTC [msp] SatisfiesPrincipal -> DEBU f14 Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | 2018-01-04 01:52:07.269 UTC [msp] Validate -> DEBU f15 MSP Org1MSP validating identity -orderer.example.com | 2018-01-04 01:52:07.270 UTC [cauthdsl] func2 -> DEBU f16 0xc42010e030 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:52:07.270 UTC [msp/identity] Verify -> DEBU f17 Verify: digest = 00000000 c5 14 f8 e0 6f fa 67 35 28 8f f7 b8 23 4f 8e 9b |....o.g5(...#O..| -orderer.example.com | 00000010 7e 30 e8 8d bd b1 07 56 01 1c e4 82 95 2e f8 89 |~0.....V........| -orderer.example.com | 2018-01-04 01:52:07.270 UTC [msp/identity] Verify -> DEBU f18 Verify: sig = 00000000 30 45 02 21 00 ba 76 ab bb 19 0d 60 b4 1b 7d 06 |0E.!..v....`..}.| -orderer.example.com | 00000010 3b f5 5d 90 b5 78 ed 31 e7 a8 a9 e7 3d ee 39 61 |;.]..x.1....=.9a| -orderer.example.com | 00000020 9a 5b 76 09 c4 02 20 75 c7 4b a5 7b ca 9f 34 5b |.[v... u.K.{..4[| -orderer.example.com | 00000030 0b 76 40 87 99 06 20 62 f5 a2 18 33 cd 92 5a 52 |.v@... b...3..ZR| -orderer.example.com | 00000040 3b 89 62 d9 31 19 1d |;.b.1..| -orderer.example.com | 2018-01-04 01:52:07.270 UTC [cauthdsl] func2 -> DEBU f19 0xc42010e030 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:52:07.270 UTC [cauthdsl] func1 -> DEBU f1a 0xc42010e030 gate 1515030727269103200 evaluation succeeds -orderer.example.com | 2018-01-04 01:52:07.270 UTC [orderer/common/sigfilter] Apply -> DEBU f1b Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -orderer.example.com | 2018-01-04 01:52:07.270 UTC [orderer/common/blockcutter] Ordered -> DEBU f1c Enqueuing message into batch -orderer.example.com | 2018-01-04 01:52:07.271 UTC [orderer/common/broadcast] Handle -> WARN f1d Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:52:07.271 UTC [orderer/main] func1 -> DEBU f1e Closing Broadcast stream -orderer.example.com | 2018-01-04 01:52:09.271 UTC [orderer/solo] main -> DEBU f1f Batch timer expired, creating block -orderer.example.com | 2018-01-04 01:52:09.272 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f20 retrieveBlockByNumber() - blockNum = [4] -orderer.example.com | 2018-01-04 01:52:09.272 UTC [fsblkstorage] newBlockfileStream -> DEBU f21 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -orderer.example.com | 2018-01-04 01:52:09.272 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f22 Remaining bytes=[5208], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:52:09.273 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f23 Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -orderer.example.com | 2018-01-04 01:52:09.274 UTC [orderer/multichain] addBlockSignature -> DEBU f24 &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -orderer.example.com | 2018-01-04 01:52:09.274 UTC [orderer/multichain] addBlockSignature -> DEBU f25 &{} -orderer.example.com | 2018-01-04 01:52:09.274 UTC [msp] GetLocalMSP -> DEBU f26 Returning existing local MSP -orderer.example.com | 2018-01-04 01:52:09.274 UTC [msp] GetDefaultSigningIdentity -> DEBU f27 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:52:09.275 UTC [msp] GetLocalMSP -> DEBU f28 Returning existing local MSP -orderer.example.com | 2018-01-04 01:52:09.275 UTC [msp] GetDefaultSigningIdentity -> DEBU f29 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:52:09.275 UTC [msp/identity] Sign -> DEBU f2a Sign: plaintext: 0AFA050A0A4F7264657265724D535012...97FB44388D0AF46E0BD496A273F86EC2 -orderer.example.com | 2018-01-04 01:52:09.275 UTC [msp/identity] Sign -> DEBU f2b Sign: digest: EC91E0DD044A98058BCA0DF48542781C7D45C3665D85BB1907828CC7B1572035 -orderer.example.com | 2018-01-04 01:52:09.276 UTC [msp] GetLocalMSP -> DEBU f2c Returning existing local MSP -orderer.example.com | 2018-01-04 01:52:09.276 UTC [msp] GetDefaultSigningIdentity -> DEBU f2d Obtaining default signing identity -orderer.example.com | 2018-01-04 01:52:09.277 UTC [orderer/multichain] addLastConfigSignature -> DEBU f2e [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-04 01:52:09.277 UTC [msp] GetLocalMSP -> DEBU f2f Returning existing local MSP -orderer.example.com | 2018-01-04 01:52:09.277 UTC [msp] GetDefaultSigningIdentity -> DEBU f30 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:52:09.278 UTC [msp/identity] Sign -> DEBU f31 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...97FB44388D0AF46E0BD496A273F86EC2 -orderer.example.com | 2018-01-04 01:52:09.279 UTC [msp/identity] Sign -> DEBU f32 Sign: digest: 4D39D98164C71485B200601B75F9B3D9D94326B573D7CAFCA1B873490360C6D3 -orderer.example.com | 2018-01-04 01:52:09.282 UTC [fsblkstorage] indexBlock -> DEBU f33 Indexing block [blockNum=5, blockHash=[]byte{0xe8, 0x99, 0x74, 0xde, 0xf0, 0x6e, 0x31, 0xc2, 0xbb, 0xbe, 0x2a, 0x50, 0x27, 0x3f, 0xfb, 0x5c, 0x63, 0xb0, 0xc1, 0x65, 0xf4, 0x14, 0xd3, 0x85, 0x3a, 0xd3, 0x86, 0x68, 0x6d, 0x6e, 0x6, 0x7e} txOffsets= -orderer.example.com | txId=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec locPointer=offset=70, bytesLength=2849 +orderer.example.com | 2018-01-14 11:46:00.619 UTC [msp] SatisfiesPrincipal -> DEBU e3d Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-14 11:46:00.620 UTC [msp] Validate -> DEBU e3e MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:46:00.620 UTC [cauthdsl] func2 -> DEBU e3f 0xc420150c88 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:46:00.620 UTC [msp/identity] Verify -> DEBU e40 Verify: digest = 00000000 90 d9 40 5a f7 c9 1b 46 58 bf 15 6a 11 07 e0 1b |..@Z...FX..j....| +orderer.example.com | 00000010 d0 a6 0e 16 1b b3 d0 b2 05 39 ce b8 4e 0f 86 95 |.........9..N...| +orderer.example.com | 2018-01-14 11:46:00.620 UTC [msp/identity] Verify -> DEBU e41 Verify: sig = 00000000 30 45 02 21 00 e7 c4 78 21 ef 88 05 bd ea 1a 6c |0E.!...x!......l| +orderer.example.com | 00000010 1f 76 c4 5b 74 cb 8a b2 39 21 00 ae 28 6c 6d fc |.v.[t...9!..(lm.| +orderer.example.com | 00000020 8a 88 8b 7c 57 02 20 06 f5 8a 10 dd d5 94 6f 95 |...|W. .......o.| +orderer.example.com | 00000030 1f 2b 78 a8 83 17 de 43 c9 8e 61 a4 e2 c7 b5 36 |.+x....C..a....6| +orderer.example.com | 00000040 51 b2 b9 b2 be d0 f7 |Q......| +orderer.example.com | 2018-01-14 11:46:00.621 UTC [cauthdsl] func2 -> DEBU e42 0xc420150c88 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:46:00.621 UTC [cauthdsl] func1 -> DEBU e43 0xc420150c88 gate 1515930360618954764 evaluation succeeds +orderer.example.com | 2018-01-14 11:46:00.621 UTC [orderer/common/sigfilter] Apply -> DEBU e44 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +orderer.example.com | 2018-01-14 11:46:00.621 UTC [orderer/common/blockcutter] Ordered -> DEBU e45 Enqueuing message into batch +orderer.example.com | 2018-01-14 11:46:00.622 UTC [orderer/common/broadcast] Handle -> WARN e46 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:46:00.622 UTC [orderer/main] func1 -> DEBU e47 Closing Broadcast stream +orderer.example.com | 2018-01-14 11:46:00.773 UTC [orderer/main] Broadcast -> DEBU e48 Starting new Broadcast handler +orderer.example.com | 2018-01-14 11:46:00.773 UTC [orderer/common/broadcast] Handle -> DEBU e49 Starting new broadcast loop +orderer.example.com | 2018-01-14 11:46:02.622 UTC [orderer/solo] main -> DEBU e4a Batch timer expired, creating block +orderer.example.com | 2018-01-14 11:46:02.623 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e4b retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-14 11:46:02.624 UTC [fsblkstorage] newBlockfileStream -> DEBU e4c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +orderer.example.com | 2018-01-14 11:46:02.624 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e4d Remaining bytes=[13792], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:02.625 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e4e Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +orderer.example.com | 2018-01-14 11:46:02.625 UTC [orderer/multichain] addBlockSignature -> DEBU e4f &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +orderer.example.com | 2018-01-14 11:46:02.625 UTC [orderer/multichain] addBlockSignature -> DEBU e50 &{} +orderer.example.com | 2018-01-14 11:46:02.625 UTC [msp] GetLocalMSP -> DEBU e51 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:02.625 UTC [msp] GetDefaultSigningIdentity -> DEBU e52 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp] GetLocalMSP -> DEBU e53 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp] GetDefaultSigningIdentity -> DEBU e54 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp/identity] Sign -> DEBU e55 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...5D6340F2F922DF5F60A7A910D4273A51 +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp/identity] Sign -> DEBU e56 Sign: digest: E92F73C428534CA50BE125EEF0EF6505FFE713D9ED20A6F1CB26FAA5FE1299E2 +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp] GetLocalMSP -> DEBU e57 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp] GetDefaultSigningIdentity -> DEBU e58 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:02.626 UTC [orderer/multichain] addLastConfigSignature -> DEBU e59 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp] GetLocalMSP -> DEBU e5a Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp] GetDefaultSigningIdentity -> DEBU e5b Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp/identity] Sign -> DEBU e5c Sign: plaintext: 08020AFA050A0A4F7264657265724D53...5D6340F2F922DF5F60A7A910D4273A51 +orderer.example.com | 2018-01-14 11:46:02.626 UTC [msp/identity] Sign -> DEBU e5d Sign: digest: 53352678F607C203EA5E24CA1F992F3FDD962D09E3D32D24AF8D859C849A1D77 +orderer.example.com | 2018-01-14 11:46:02.630 UTC [fsblkstorage] indexBlock -> DEBU e5e Indexing block [blockNum=3, blockHash=[]byte{0xba, 0x24, 0x96, 0x98, 0xea, 0x83, 0xc, 0x88, 0x92, 0x2d, 0x8d, 0xe0, 0x99, 0x42, 0x2d, 0x3a, 0xe0, 0x84, 0xec, 0x46, 0x3c, 0xa6, 0xc, 0x6, 0xc2, 0x1e, 0xe1, 0x1a, 0x22, 0xb8, 0xa2, 0x6b} txOffsets= +orderer.example.com | txId=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d locPointer=offset=70, bytesLength=3394 orderer.example.com | ] -orderer.example.com | 2018-01-04 01:52:09.282 UTC [fsblkstorage] updateCheckpoint -> DEBU f34 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54545], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | 2018-01-04 01:52:09.282 UTC [orderer/multichain] WriteBlock -> DEBU f35 [channel: businesschannel] Wrote block 5 -orderer.example.com | 2018-01-04 01:52:09.282 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f37 retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | 2018-01-04 01:52:09.283 UTC [fsblkstorage] newBlockfileStream -> DEBU f38 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49876] -orderer.example.com | 2018-01-04 01:52:09.282 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f36 retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | 2018-01-04 01:52:09.283 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f39 Remaining bytes=[4669], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:52:09.283 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3b Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[49876], bytesOffset=[49878]} -orderer.example.com | 2018-01-04 01:52:09.283 UTC [fsblkstorage] newBlockfileStream -> DEBU f3a newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49876] -orderer.example.com | 2018-01-04 01:52:09.283 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3d Remaining bytes=[4669], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:52:09.283 UTC [orderer/common/deliver] Handle -> DEBU f3c [channel: businesschannel] Delivering block for (0xc42027ed80) -orderer.example.com | 2018-01-04 01:52:09.283 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3e Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[49876], bytesOffset=[49878]} -orderer.example.com | 2018-01-04 01:52:09.283 UTC [orderer/common/deliver] Handle -> DEBU f3f [channel: businesschannel] Delivering block for (0xc4201f9360) -orderer.example.com | 2018-01-04 01:52:24.382 UTC [orderer/main] Broadcast -> DEBU f40 Starting new Broadcast handler -orderer.example.com | 2018-01-04 01:52:24.382 UTC [orderer/common/broadcast] Handle -> DEBU f41 Starting new broadcast loop -orderer.example.com | 2018-01-04 01:52:24.405 UTC [orderer/common/broadcast] Handle -> DEBU f42 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-04 01:52:24.406 UTC [policies] GetPolicy -> DEBU f43 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:52:24.406 UTC [cauthdsl] func1 -> DEBU f44 0xc42010e1c0 gate 1515030744406061000 evaluation starts -orderer.example.com | 2018-01-04 01:52:24.406 UTC [cauthdsl] func2 -> DEBU f45 0xc42010e1c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:52:24.406 UTC [cauthdsl] func2 -> DEBU f46 0xc42010e1c0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:52:24.407 UTC [msp/identity] newIdentity -> DEBU f47 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:02.630 UTC [fsblkstorage] updateCheckpoint -> DEBU e5f Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | 2018-01-14 11:46:02.630 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e60 retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-14 11:46:02.631 UTC [fsblkstorage] newBlockfileStream -> DEBU e61 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-14 11:46:02.631 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e62 Remaining bytes=[5214], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:02.631 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e63 Returning blockbytes - length=[5212], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-14 11:46:02.631 UTC [orderer/common/deliver] Handle -> DEBU e64 [channel: businesschannel] Delivering block for (0xc42034dc80) +orderer.example.com | 2018-01-14 11:46:02.635 UTC [orderer/multichain] WriteBlock -> DEBU e66 [channel: businesschannel] Wrote block 3 +orderer.example.com | 2018-01-14 11:46:02.635 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e65 retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-14 11:46:02.635 UTC [fsblkstorage] newBlockfileStream -> DEBU e67 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-14 11:46:02.636 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e68 Remaining bytes=[5214], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:02.636 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e69 Returning blockbytes - length=[5212], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-14 11:46:02.636 UTC [orderer/common/deliver] Handle -> DEBU e6a [channel: businesschannel] Delivering block for (0xc420373960) +orderer.example.com | 2018-01-14 11:46:18.341 UTC [orderer/common/broadcast] Handle -> DEBU e6b [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-14 11:46:18.342 UTC [policies] GetPolicy -> DEBU e6c Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:46:18.342 UTC [cauthdsl] func1 -> DEBU e6d 0xc420150cf8 gate 1515930378342137164 evaluation starts +orderer.example.com | 2018-01-14 11:46:18.342 UTC [cauthdsl] func2 -> DEBU e6e 0xc420150cf8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:18.342 UTC [cauthdsl] func2 -> DEBU e6f 0xc420150cf8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:18.342 UTC [msp/identity] newIdentity -> DEBU e70 Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14976,13 +14574,25 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:52:24.407 UTC [cauthdsl] func2 -> DEBU f48 0xc42010e1c0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-04 01:52:24.407 UTC [cauthdsl] func2 -> DEBU f49 0xc42010e1c0 principal evaluation fails -orderer.example.com | 2018-01-04 01:52:24.407 UTC [cauthdsl] func1 -> DEBU f4a 0xc42010e1c0 gate 1515030744406061000 evaluation fails -orderer.example.com | 2018-01-04 01:52:24.407 UTC [cauthdsl] func1 -> DEBU f4b 0xc42010e1d0 gate 1515030744407926900 evaluation starts -orderer.example.com | 2018-01-04 01:52:24.408 UTC [cauthdsl] func2 -> DEBU f4c 0xc42010e1d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:52:24.408 UTC [cauthdsl] func2 -> DEBU f4d 0xc42010e1d0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:52:24.408 UTC [msp/identity] newIdentity -> DEBU f4e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:18.343 UTC [msp] SatisfiesPrincipal -> DEBU e71 Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-14 11:46:18.343 UTC [msp] Validate -> DEBU e72 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:46:18.343 UTC [cauthdsl] func2 -> DEBU e73 0xc420150cf8 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:46:18.343 UTC [msp/identity] Verify -> DEBU e74 Verify: digest = 00000000 fd 8e e4 98 84 ad 46 84 7b 94 99 4d 23 e6 46 82 |......F.{..M#.F.| +orderer.example.com | 00000010 4d a5 e9 a8 42 15 a7 0a 2a 53 f1 9d 36 ea 67 c6 |M...B...*S..6.g.| +orderer.example.com | 2018-01-14 11:46:18.343 UTC [msp/identity] Verify -> DEBU e75 Verify: sig = 00000000 30 45 02 21 00 e5 32 b2 b5 f1 d6 b2 9c 5f 6b 47 |0E.!..2......_kG| +orderer.example.com | 00000010 ab cf c4 61 cd 85 fc 4d 3e 63 5a 08 f5 dc 95 e8 |...a...M>cZ.....| +orderer.example.com | 00000020 99 58 df 37 64 02 20 1b 05 0a 39 53 e7 a7 54 b3 |.X.7d. ...9S..T.| +orderer.example.com | 00000030 ba 89 be 35 cc a6 83 85 54 1d 6b db 74 73 e8 50 |...5....T.k.ts.P| +orderer.example.com | 00000040 8e af d0 01 f8 d0 d4 |.......| +orderer.example.com | 2018-01-14 11:46:18.344 UTC [cauthdsl] func2 -> DEBU e76 0xc420150cf8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:46:18.344 UTC [cauthdsl] func1 -> DEBU e77 0xc420150cf8 gate 1515930378342137164 evaluation succeeds +orderer.example.com | 2018-01-14 11:46:18.344 UTC [orderer/common/sigfilter] Apply -> DEBU e78 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +orderer.example.com | 2018-01-14 11:46:18.344 UTC [orderer/common/broadcast] Handle -> DEBU e79 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-14 11:46:18.345 UTC [policies] GetPolicy -> DEBU e7a Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:46:18.345 UTC [cauthdsl] func1 -> DEBU e7b 0xc420150d10 gate 1515930378345273664 evaluation starts +orderer.example.com | 2018-01-14 11:46:18.345 UTC [cauthdsl] func2 -> DEBU e7c 0xc420150d10 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:18.345 UTC [cauthdsl] func2 -> DEBU e7d 0xc420150d10 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:18.345 UTC [msp/identity] newIdentity -> DEBU e7e Creating identity instance for ID -----BEGIN CERTIFICATE----- orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -14996,106 +14606,1317 @@ Attaching to peer1.org2.example.com, peer1.org1.example.com, peer0.org1.example. orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS orderer.example.com | AXYxULZpXYDQXt1KaLI= orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:52:24.409 UTC [msp] SatisfiesPrincipal -> DEBU f4f Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-04 01:52:24.409 UTC [msp] Validate -> DEBU f50 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:52:24.409 UTC [cauthdsl] func2 -> DEBU f51 0xc42010e1d0 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:52:24.409 UTC [msp/identity] Verify -> DEBU f52 Verify: digest = 00000000 4d 56 15 48 1c 76 9e 7f ec 59 21 48 ad b4 a7 6f |MV.H.v...Y!H...o| -orderer.example.com | 00000010 e0 15 52 46 5d a2 bb 14 39 ed 7c db 2a b6 9f e1 |..RF]...9.|.*...| -orderer.example.com | 2018-01-04 01:52:24.410 UTC [msp/identity] Verify -> DEBU f53 Verify: sig = 00000000 30 44 02 20 3e fd 26 4c bd ba f8 8f ca f1 20 a5 |0D. >.&L...... .| -orderer.example.com | 00000010 bf 36 7d af 9b 02 3b 35 7b f0 53 d7 eb c0 52 a9 |.6}...;5{.S...R.| -orderer.example.com | 00000020 6b ec 7d a8 02 20 34 dd 86 ea f0 0b 75 39 b1 77 |k.}.. 4.....u9.w| -orderer.example.com | 00000030 fa 18 24 cb 2b 4d b9 cc e9 af 6d 5c ae d7 53 8b |..$.+M....m\..S.| -orderer.example.com | 00000040 b2 58 f9 f7 d2 c3 |.X....| -orderer.example.com | 2018-01-04 01:52:24.410 UTC [cauthdsl] func2 -> DEBU f54 0xc42010e1d0 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:52:24.410 UTC [cauthdsl] func1 -> DEBU f55 0xc42010e1d0 gate 1515030744407926900 evaluation succeeds -orderer.example.com | 2018-01-04 01:52:24.410 UTC [orderer/common/sigfilter] Apply -> DEBU f56 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -orderer.example.com | 2018-01-04 01:52:24.410 UTC [orderer/common/broadcast] Handle -> DEBU f57 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -orderer.example.com | 2018-01-04 01:52:24.411 UTC [policies] GetPolicy -> DEBU f58 Returning policy Writers for evaluation -orderer.example.com | 2018-01-04 01:52:24.411 UTC [cauthdsl] func1 -> DEBU f59 0xc420026178 gate 1515030744411208100 evaluation starts -orderer.example.com | 2018-01-04 01:52:24.411 UTC [cauthdsl] func2 -> DEBU f5a 0xc420026178 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:52:24.411 UTC [cauthdsl] func2 -> DEBU f5b 0xc420026178 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:52:24.411 UTC [msp/identity] newIdentity -> DEBU f5c Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:52:24.411 UTC [cauthdsl] func2 -> DEBU f5d 0xc420026178 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | 2018-01-04 01:52:24.411 UTC [cauthdsl] func2 -> DEBU f5e 0xc420026178 principal evaluation fails -orderer.example.com | 2018-01-04 01:52:24.411 UTC [cauthdsl] func1 -> DEBU f5f 0xc420026178 gate 1515030744411208100 evaluation fails -orderer.example.com | 2018-01-04 01:52:24.412 UTC [cauthdsl] func1 -> DEBU f60 0xc4200263c8 gate 1515030744411974900 evaluation starts -orderer.example.com | 2018-01-04 01:52:24.412 UTC [cauthdsl] func2 -> DEBU f61 0xc4200263c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | 2018-01-04 01:52:24.412 UTC [cauthdsl] func2 -> DEBU f62 0xc4200263c8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -orderer.example.com | 2018-01-04 01:52:24.412 UTC [msp/identity] newIdentity -> DEBU f63 Creating identity instance for ID -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -orderer.example.com | AXYxULZpXYDQXt1KaLI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | 2018-01-04 01:52:24.412 UTC [msp] SatisfiesPrincipal -> DEBU f64 Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | 2018-01-04 01:52:24.412 UTC [msp] Validate -> DEBU f65 MSP Org2MSP validating identity -orderer.example.com | 2018-01-04 01:52:24.412 UTC [cauthdsl] func2 -> DEBU f66 0xc4200263c8 principal matched by identity 0 -orderer.example.com | 2018-01-04 01:52:24.413 UTC [msp/identity] Verify -> DEBU f67 Verify: digest = 00000000 4d 56 15 48 1c 76 9e 7f ec 59 21 48 ad b4 a7 6f |MV.H.v...Y!H...o| -orderer.example.com | 00000010 e0 15 52 46 5d a2 bb 14 39 ed 7c db 2a b6 9f e1 |..RF]...9.|.*...| -orderer.example.com | 2018-01-04 01:52:24.413 UTC [msp/identity] Verify -> DEBU f68 Verify: sig = 00000000 30 44 02 20 3e fd 26 4c bd ba f8 8f ca f1 20 a5 |0D. >.&L...... .| -orderer.example.com | 00000010 bf 36 7d af 9b 02 3b 35 7b f0 53 d7 eb c0 52 a9 |.6}...;5{.S...R.| -orderer.example.com | 00000020 6b ec 7d a8 02 20 34 dd 86 ea f0 0b 75 39 b1 77 |k.}.. 4.....u9.w| -orderer.example.com | 00000030 fa 18 24 cb 2b 4d b9 cc e9 af 6d 5c ae d7 53 8b |..$.+M....m\..S.| -orderer.example.com | 00000040 b2 58 f9 f7 d2 c3 |.X....| -orderer.example.com | 2018-01-04 01:52:24.413 UTC [cauthdsl] func2 -> DEBU f69 0xc4200263c8 principal evaluation succeeds for identity 0 -orderer.example.com | 2018-01-04 01:52:24.413 UTC [cauthdsl] func1 -> DEBU f6a 0xc4200263c8 gate 1515030744411974900 evaluation succeeds -orderer.example.com | 2018-01-04 01:52:24.413 UTC [orderer/common/sigfilter] Apply -> DEBU f6b Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -orderer.example.com | 2018-01-04 01:52:24.413 UTC [orderer/common/blockcutter] Ordered -> DEBU f6c Enqueuing message into batch -orderer.example.com | 2018-01-04 01:52:24.414 UTC [orderer/common/broadcast] Handle -> WARN f6d Error reading from stream: rpc error: code = Canceled desc = context canceled -orderer.example.com | 2018-01-04 01:52:24.414 UTC [orderer/main] func1 -> DEBU f6e Closing Broadcast stream -orderer.example.com | 2018-01-04 01:52:26.416 UTC [orderer/solo] main -> DEBU f6f Batch timer expired, creating block -orderer.example.com | 2018-01-04 01:52:26.417 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f70 retrieveBlockByNumber() - blockNum = [5] -orderer.example.com | 2018-01-04 01:52:26.417 UTC [fsblkstorage] newBlockfileStream -> DEBU f71 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49876] -orderer.example.com | 2018-01-04 01:52:26.417 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f72 Remaining bytes=[4669], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:52:26.417 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f73 Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[49876], bytesOffset=[49878]} -orderer.example.com | 2018-01-04 01:52:26.419 UTC [orderer/multichain] addBlockSignature -> DEBU f74 &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -orderer.example.com | 2018-01-04 01:52:26.419 UTC [orderer/multichain] addBlockSignature -> DEBU f75 &{} -orderer.example.com | 2018-01-04 01:52:26.420 UTC [msp] GetLocalMSP -> DEBU f76 Returning existing local MSP -orderer.example.com | 2018-01-04 01:52:26.420 UTC [msp] GetDefaultSigningIdentity -> DEBU f77 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:52:26.420 UTC [msp] GetLocalMSP -> DEBU f78 Returning existing local MSP -orderer.example.com | 2018-01-04 01:52:26.420 UTC [msp] GetDefaultSigningIdentity -> DEBU f79 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:52:26.420 UTC [msp/identity] Sign -> DEBU f7a Sign: plaintext: 0AFA050A0A4F7264657265724D535012...4B64F8FE67A959DD5A0871DC59AC3374 -orderer.example.com | 2018-01-04 01:52:26.420 UTC [msp/identity] Sign -> DEBU f7b Sign: digest: F321048D12AB600D4D7B06F3943A744360B26EEB7797BDD90D798411C51C8295 -orderer.example.com | 2018-01-04 01:52:26.421 UTC [msp] GetLocalMSP -> DEBU f7c Returning existing local MSP -orderer.example.com | 2018-01-04 01:52:26.422 UTC [msp] GetDefaultSigningIdentity -> DEBU f7d Obtaining default signing identity -orderer.example.com | 2018-01-04 01:52:26.422 UTC [orderer/multichain] addLastConfigSignature -> DEBU f7e [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | 2018-01-04 01:52:26.422 UTC [msp] GetLocalMSP -> DEBU f7f Returning existing local MSP -orderer.example.com | 2018-01-04 01:52:26.422 UTC [msp] GetDefaultSigningIdentity -> DEBU f80 Obtaining default signing identity -orderer.example.com | 2018-01-04 01:52:26.422 UTC [msp/identity] Sign -> DEBU f81 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...4B64F8FE67A959DD5A0871DC59AC3374 -orderer.example.com | 2018-01-04 01:52:26.422 UTC [msp/identity] Sign -> DEBU f82 Sign: digest: 1370CBAC82707B665FC715A1CC175196CF288D3BE63C503D454B6248E6AC3FB3 -orderer.example.com | 2018-01-04 01:52:26.426 UTC [fsblkstorage] indexBlock -> DEBU f83 Indexing block [blockNum=6, blockHash=[]byte{0xa3, 0x96, 0xc0, 0xf9, 0x28, 0xfe, 0x7e, 0x14, 0xc0, 0xf3, 0x58, 0xaf, 0xa7, 0xcd, 0xfe, 0xbb, 0xfc, 0xc3, 0xe2, 0x1c, 0x33, 0x37, 0xd5, 0x9a, 0xe7, 0x19, 0x56, 0x62, 0xcc, 0x79, 0x72, 0x45} txOffsets= -orderer.example.com | txId=926e5ab374aa8e3cda802dd445cfbffcdeb5f693c6165603871d88872da70bcd locPointer=offset=70, bytesLength=2848 +orderer.example.com | 2018-01-14 11:46:18.346 UTC [msp] SatisfiesPrincipal -> DEBU e7f Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-14 11:46:18.346 UTC [msp] Validate -> DEBU e80 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:46:18.346 UTC [cauthdsl] func2 -> DEBU e81 0xc420150d10 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:46:18.346 UTC [msp/identity] Verify -> DEBU e82 Verify: digest = 00000000 fd 8e e4 98 84 ad 46 84 7b 94 99 4d 23 e6 46 82 |......F.{..M#.F.| +orderer.example.com | 00000010 4d a5 e9 a8 42 15 a7 0a 2a 53 f1 9d 36 ea 67 c6 |M...B...*S..6.g.| +orderer.example.com | 2018-01-14 11:46:18.347 UTC [msp/identity] Verify -> DEBU e83 Verify: sig = 00000000 30 45 02 21 00 e5 32 b2 b5 f1 d6 b2 9c 5f 6b 47 |0E.!..2......_kG| +orderer.example.com | 00000010 ab cf c4 61 cd 85 fc 4d 3e 63 5a 08 f5 dc 95 e8 |...a...M>cZ.....| +orderer.example.com | 00000020 99 58 df 37 64 02 20 1b 05 0a 39 53 e7 a7 54 b3 |.X.7d. ...9S..T.| +orderer.example.com | 00000030 ba 89 be 35 cc a6 83 85 54 1d 6b db 74 73 e8 50 |...5....T.k.ts.P| +orderer.example.com | 00000040 8e af d0 01 f8 d0 d4 |.......| +orderer.example.com | 2018-01-14 11:46:18.347 UTC [cauthdsl] func2 -> DEBU e84 0xc420150d10 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:46:18.347 UTC [cauthdsl] func1 -> DEBU e85 0xc420150d10 gate 1515930378345273664 evaluation succeeds +orderer.example.com | 2018-01-14 11:46:18.347 UTC [orderer/common/sigfilter] Apply -> DEBU e86 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +orderer.example.com | 2018-01-14 11:46:18.347 UTC [orderer/common/blockcutter] Ordered -> DEBU e87 Enqueuing message into batch +orderer.example.com | 2018-01-14 11:46:18.349 UTC [orderer/common/broadcast] Handle -> WARN e88 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:46:18.349 UTC [orderer/main] func1 -> DEBU e89 Closing Broadcast stream +orderer.example.com | 2018-01-14 11:46:20.348 UTC [orderer/solo] main -> DEBU e8a Batch timer expired, creating block +orderer.example.com | 2018-01-14 11:46:20.350 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e8b retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-14 11:46:20.350 UTC [fsblkstorage] newBlockfileStream -> DEBU e8c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-14 11:46:20.350 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8d Remaining bytes=[5214], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:20.351 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8e Returning blockbytes - length=[5212], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-14 11:46:20.351 UTC [orderer/multichain] addBlockSignature -> DEBU e8f &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +orderer.example.com | 2018-01-14 11:46:20.351 UTC [orderer/multichain] addBlockSignature -> DEBU e90 &{} +orderer.example.com | 2018-01-14 11:46:20.351 UTC [msp] GetLocalMSP -> DEBU e91 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:20.351 UTC [msp] GetDefaultSigningIdentity -> DEBU e92 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:20.352 UTC [msp] GetLocalMSP -> DEBU e93 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:20.352 UTC [msp] GetDefaultSigningIdentity -> DEBU e94 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:20.352 UTC [msp/identity] Sign -> DEBU e95 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...CE40CD81DBD263DEAC9BDBB8DF2E12D4 +orderer.example.com | 2018-01-14 11:46:20.352 UTC [msp/identity] Sign -> DEBU e96 Sign: digest: 0D921CCE52C1DEF8D5CD73D9AA13F9BFFA3857338FFCAFCCE35310107852839A +orderer.example.com | 2018-01-14 11:46:20.353 UTC [msp] GetLocalMSP -> DEBU e97 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:20.353 UTC [msp] GetDefaultSigningIdentity -> DEBU e98 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:20.353 UTC [orderer/multichain] addLastConfigSignature -> DEBU e99 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-14 11:46:20.353 UTC [msp] GetLocalMSP -> DEBU e9a Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:20.353 UTC [msp] GetDefaultSigningIdentity -> DEBU e9b Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:20.354 UTC [msp/identity] Sign -> DEBU e9c Sign: plaintext: 08020AFA050A0A4F7264657265724D53...CE40CD81DBD263DEAC9BDBB8DF2E12D4 +orderer.example.com | 2018-01-14 11:46:20.354 UTC [msp/identity] Sign -> DEBU e9d Sign: digest: 557D0E03D2CDAE786234FC6C8774245A336AACC9AE2D1873839E6F5CA5AF4697 +orderer.example.com | 2018-01-14 11:46:20.360 UTC [fsblkstorage] indexBlock -> DEBU e9e Indexing block [blockNum=4, blockHash=[]byte{0x3e, 0xa5, 0xb9, 0x9c, 0xb8, 0xc5, 0x29, 0x6f, 0xda, 0xd3, 0xfd, 0xc3, 0x49, 0x31, 0x1d, 0xc8, 0xf5, 0x6d, 0xce, 0x76, 0x5e, 0x7f, 0x6e, 0x5c, 0xf0, 0x98, 0xb6, 0x7b, 0x85, 0xb8, 0x9, 0x2b} txOffsets= +orderer.example.com | txId=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee locPointer=offset=70, bytesLength=3395 orderer.example.com | ] -orderer.example.com | 2018-01-04 01:52:26.426 UTC [fsblkstorage] updateCheckpoint -> DEBU f84 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59212], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | 2018-01-04 01:52:26.426 UTC [orderer/multichain] WriteBlock -> DEBU f85 [channel: businesschannel] Wrote block 6 -orderer.example.com | 2018-01-04 01:52:26.426 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f86 retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | 2018-01-04 01:52:26.426 UTC [fsblkstorage] newBlockfileStream -> DEBU f87 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54545] -orderer.example.com | 2018-01-04 01:52:26.427 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f88 Remaining bytes=[4667], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:52:26.427 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f89 Returning blockbytes - length=[4665], placementInfo={fileNum=[0], startOffset=[54545], bytesOffset=[54547]} -orderer.example.com | 2018-01-04 01:52:26.427 UTC [orderer/common/deliver] Handle -> DEBU f8a [channel: businesschannel] Delivering block for (0xc42027ed80) -orderer.example.com | 2018-01-04 01:52:26.429 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f8b retrieveBlockByNumber() - blockNum = [6] -orderer.example.com | 2018-01-04 01:52:26.429 UTC [fsblkstorage] newBlockfileStream -> DEBU f8c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54545] -orderer.example.com | 2018-01-04 01:52:26.429 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f8d Remaining bytes=[4667], Going to peek [8] bytes -orderer.example.com | 2018-01-04 01:52:26.429 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f8e Returning blockbytes - length=[4665], placementInfo={fileNum=[0], startOffset=[54545], bytesOffset=[54547]} -orderer.example.com | 2018-01-04 01:52:26.429 UTC [orderer/common/deliver] Handle -> DEBU f8f [channel: businesschannel] Delivering block for (0xc4201f9360) +orderer.example.com | 2018-01-14 11:46:20.360 UTC [fsblkstorage] updateCheckpoint -> DEBU e9f Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49888], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | 2018-01-14 11:46:20.360 UTC [orderer/multichain] WriteBlock -> DEBU ea0 [channel: businesschannel] Wrote block 4 +orderer.example.com | 2018-01-14 11:46:20.360 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea1 retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | 2018-01-14 11:46:20.361 UTC [fsblkstorage] newBlockfileStream -> DEBU ea2 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44672] +orderer.example.com | 2018-01-14 11:46:20.361 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea3 Remaining bytes=[5216], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:20.361 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea4 Returning blockbytes - length=[5214], placementInfo={fileNum=[0], startOffset=[44672], bytesOffset=[44674]} +orderer.example.com | 2018-01-14 11:46:20.361 UTC [orderer/common/deliver] Handle -> DEBU ea5 [channel: businesschannel] Delivering block for (0xc420373960) +orderer.example.com | 2018-01-14 11:46:20.366 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea6 retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | 2018-01-14 11:46:20.366 UTC [fsblkstorage] newBlockfileStream -> DEBU ea7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44672] +orderer.example.com | 2018-01-14 11:46:20.366 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea8 Remaining bytes=[5216], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:20.366 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea9 Returning blockbytes - length=[5214], placementInfo={fileNum=[0], startOffset=[44672], bytesOffset=[44674]} +orderer.example.com | 2018-01-14 11:46:20.367 UTC [orderer/common/deliver] Handle -> DEBU eaa [channel: businesschannel] Delivering block for (0xc42034dc80) +orderer.example.com | 2018-01-14 11:46:38.924 UTC [orderer/main] Broadcast -> DEBU eab Starting new Broadcast handler +orderer.example.com | 2018-01-14 11:46:38.924 UTC [orderer/common/broadcast] Handle -> DEBU eac Starting new broadcast loop +orderer.example.com | 2018-01-14 11:46:38.989 UTC [orderer/common/broadcast] Handle -> DEBU ead [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-14 11:46:38.989 UTC [policies] GetPolicy -> DEBU eae Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:46:38.989 UTC [cauthdsl] func1 -> DEBU eaf 0xc420150d48 gate 1515930398989424064 evaluation starts +orderer.example.com | 2018-01-14 11:46:38.989 UTC [cauthdsl] func2 -> DEBU eb0 0xc420150d48 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:38.989 UTC [cauthdsl] func2 -> DEBU eb1 0xc420150d48 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:38.990 UTC [msp/identity] newIdentity -> DEBU eb2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:38.991 UTC [cauthdsl] func2 -> DEBU eb3 0xc420150d48 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-14 11:46:38.991 UTC [cauthdsl] func2 -> DEBU eb4 0xc420150d48 principal evaluation fails +orderer.example.com | 2018-01-14 11:46:38.991 UTC [cauthdsl] func1 -> DEBU eb5 0xc420150d48 gate 1515930398989424064 evaluation fails +orderer.example.com | 2018-01-14 11:46:38.991 UTC [cauthdsl] func1 -> DEBU eb6 0xc420150d60 gate 1515930398991653164 evaluation starts +orderer.example.com | 2018-01-14 11:46:38.991 UTC [cauthdsl] func2 -> DEBU eb7 0xc420150d60 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:38.991 UTC [cauthdsl] func2 -> DEBU eb8 0xc420150d60 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:38.992 UTC [msp/identity] newIdentity -> DEBU eb9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:38.992 UTC [msp] SatisfiesPrincipal -> DEBU eba Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-14 11:46:38.992 UTC [msp] Validate -> DEBU ebb MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:46:38.993 UTC [cauthdsl] func2 -> DEBU ebc 0xc420150d60 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:46:38.993 UTC [msp/identity] Verify -> DEBU ebd Verify: digest = 00000000 aa 57 df f9 b0 80 37 ca 02 7f 2d ee 62 2b 64 55 |.W....7...-.b+dU| +orderer.example.com | 00000010 62 b0 05 4e 34 66 46 cf 97 58 fb d0 a2 cf b3 ee |b..N4fF..X......| +orderer.example.com | 2018-01-14 11:46:38.993 UTC [msp/identity] Verify -> DEBU ebe Verify: sig = 00000000 30 45 02 21 00 e3 39 2f fa f2 90 30 d6 01 41 8f |0E.!..9/...0..A.| +orderer.example.com | 00000010 7f a8 64 ce b7 5e 74 4f 34 0a 1b 0e 42 a6 15 ff |..d..^tO4...B...| +orderer.example.com | 00000020 21 b8 97 5b 07 02 20 41 7a 0f 8e 0a 65 60 d0 2a |!..[.. Az...e`.*| +orderer.example.com | 00000030 e0 88 ac f8 7d 50 12 2d b5 69 a4 e6 8a 13 50 c3 |....}P.-.i....P.| +orderer.example.com | 00000040 24 90 f5 e3 30 a1 08 |$...0..| +orderer.example.com | 2018-01-14 11:46:38.994 UTC [cauthdsl] func2 -> DEBU ebf 0xc420150d60 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:46:38.994 UTC [cauthdsl] func1 -> DEBU ec0 0xc420150d60 gate 1515930398991653164 evaluation succeeds +orderer.example.com | 2018-01-14 11:46:38.995 UTC [orderer/common/sigfilter] Apply -> DEBU ec1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +orderer.example.com | 2018-01-14 11:46:38.995 UTC [orderer/common/broadcast] Handle -> DEBU ec2 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-14 11:46:38.996 UTC [policies] GetPolicy -> DEBU ec3 Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:46:38.997 UTC [cauthdsl] func1 -> DEBU ec4 0xc420150da0 gate 1515930398997057664 evaluation starts +orderer.example.com | 2018-01-14 11:46:38.997 UTC [cauthdsl] func2 -> DEBU ec5 0xc420150da0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:38.997 UTC [cauthdsl] func2 -> DEBU ec6 0xc420150da0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:38.998 UTC [msp/identity] newIdentity -> DEBU ec7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:38.999 UTC [cauthdsl] func2 -> DEBU ec8 0xc420150da0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | 2018-01-14 11:46:38.999 UTC [cauthdsl] func2 -> DEBU ec9 0xc420150da0 principal evaluation fails +orderer.example.com | 2018-01-14 11:46:38.999 UTC [cauthdsl] func1 -> DEBU eca 0xc420150da0 gate 1515930398997057664 evaluation fails +orderer.example.com | 2018-01-14 11:46:38.999 UTC [cauthdsl] func1 -> DEBU ecb 0xc420150df0 gate 1515930398999223864 evaluation starts +orderer.example.com | 2018-01-14 11:46:38.999 UTC [cauthdsl] func2 -> DEBU ecc 0xc420150df0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:46:39.000 UTC [cauthdsl] func2 -> DEBU ecd 0xc420150df0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:46:39.005 UTC [orderer/common/broadcast] Handle -> WARN ece Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:46:39.005 UTC [orderer/main] func1 -> DEBU ecf Closing Broadcast stream +orderer.example.com | 2018-01-14 11:46:39.006 UTC [msp/identity] newIdentity -> DEBU ed0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +orderer.example.com | xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +orderer.example.com | ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +orderer.example.com | gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +orderer.example.com | xHTBvxfK6mAzmUitFmY= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:46:39.006 UTC [msp] SatisfiesPrincipal -> DEBU ed1 Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | 2018-01-14 11:46:39.006 UTC [msp] Validate -> DEBU ed2 MSP Org1MSP validating identity +orderer.example.com | 2018-01-14 11:46:39.013 UTC [cauthdsl] func2 -> DEBU ed3 0xc420150df0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:46:39.013 UTC [msp/identity] Verify -> DEBU ed4 Verify: digest = 00000000 aa 57 df f9 b0 80 37 ca 02 7f 2d ee 62 2b 64 55 |.W....7...-.b+dU| +orderer.example.com | 00000010 62 b0 05 4e 34 66 46 cf 97 58 fb d0 a2 cf b3 ee |b..N4fF..X......| +orderer.example.com | 2018-01-14 11:46:39.014 UTC [msp/identity] Verify -> DEBU ed5 Verify: sig = 00000000 30 45 02 21 00 e3 39 2f fa f2 90 30 d6 01 41 8f |0E.!..9/...0..A.| +orderer.example.com | 00000010 7f a8 64 ce b7 5e 74 4f 34 0a 1b 0e 42 a6 15 ff |..d..^tO4...B...| +orderer.example.com | 00000020 21 b8 97 5b 07 02 20 41 7a 0f 8e 0a 65 60 d0 2a |!..[.. Az...e`.*| +orderer.example.com | 00000030 e0 88 ac f8 7d 50 12 2d b5 69 a4 e6 8a 13 50 c3 |....}P.-.i....P.| +orderer.example.com | 00000040 24 90 f5 e3 30 a1 08 |$...0..| +orderer.example.com | 2018-01-14 11:46:39.016 UTC [cauthdsl] func2 -> DEBU ed6 0xc420150df0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:46:39.016 UTC [cauthdsl] func1 -> DEBU ed7 0xc420150df0 gate 1515930398999223864 evaluation succeeds +orderer.example.com | 2018-01-14 11:46:39.017 UTC [orderer/common/sigfilter] Apply -> DEBU ed8 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +orderer.example.com | 2018-01-14 11:46:39.018 UTC [orderer/common/blockcutter] Ordered -> DEBU ed9 Enqueuing message into batch +orderer.example.com | 2018-01-14 11:46:41.019 UTC [orderer/solo] main -> DEBU eda Batch timer expired, creating block +orderer.example.com | 2018-01-14 11:46:41.019 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU edb retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | 2018-01-14 11:46:41.019 UTC [fsblkstorage] newBlockfileStream -> DEBU edc newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44672] +orderer.example.com | 2018-01-14 11:46:41.019 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU edd Remaining bytes=[5216], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:41.019 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ede Returning blockbytes - length=[5214], placementInfo={fileNum=[0], startOffset=[44672], bytesOffset=[44674]} +orderer.example.com | 2018-01-14 11:46:41.020 UTC [orderer/multichain] addBlockSignature -> DEBU edf &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +orderer.example.com | 2018-01-14 11:46:41.020 UTC [orderer/multichain] addBlockSignature -> DEBU ee0 &{} +orderer.example.com | 2018-01-14 11:46:41.020 UTC [msp] GetLocalMSP -> DEBU ee1 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:41.020 UTC [msp] GetDefaultSigningIdentity -> DEBU ee2 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:41.020 UTC [msp] GetLocalMSP -> DEBU ee3 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:41.020 UTC [msp] GetDefaultSigningIdentity -> DEBU ee4 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:41.020 UTC [msp/identity] Sign -> DEBU ee5 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...B6512A4E48AF9C6948683A6124ECCEFF +orderer.example.com | 2018-01-14 11:46:41.020 UTC [msp/identity] Sign -> DEBU ee6 Sign: digest: 988F06EC25427688B61CAF5C94EEA1D94FAF311C8B7B2D7D2A5A58F73D755E85 +orderer.example.com | 2018-01-14 11:46:41.021 UTC [msp] GetLocalMSP -> DEBU ee7 Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:41.021 UTC [msp] GetDefaultSigningIdentity -> DEBU ee8 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:41.021 UTC [orderer/multichain] addLastConfigSignature -> DEBU ee9 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-14 11:46:41.021 UTC [msp] GetLocalMSP -> DEBU eea Returning existing local MSP +orderer.example.com | 2018-01-14 11:46:41.021 UTC [msp] GetDefaultSigningIdentity -> DEBU eeb Obtaining default signing identity +orderer.example.com | 2018-01-14 11:46:41.021 UTC [msp/identity] Sign -> DEBU eec Sign: plaintext: 08020AFA050A0A4F7264657265724D53...B6512A4E48AF9C6948683A6124ECCEFF +orderer.example.com | 2018-01-14 11:46:41.021 UTC [msp/identity] Sign -> DEBU eed Sign: digest: EDC138B5DEC193D583AE02A8E31A813F771808B7A4CBAF146AE72AD02BB698F9 +orderer.example.com | 2018-01-14 11:46:41.031 UTC [fsblkstorage] indexBlock -> DEBU eee Indexing block [blockNum=5, blockHash=[]byte{0xcd, 0x59, 0x35, 0x43, 0xb3, 0xfa, 0x14, 0xcb, 0x59, 0x18, 0x46, 0x89, 0x5f, 0xd3, 0xa0, 0x0, 0x87, 0xb9, 0x64, 0x3c, 0xe6, 0xb3, 0x98, 0x4d, 0x7a, 0xc5, 0x75, 0xe5, 0xbd, 0x79, 0xfa, 0x45} txOffsets= +orderer.example.com | txId=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 locPointer=offset=70, bytesLength=2855 +orderer.example.com | ] +orderer.example.com | 2018-01-14 11:46:41.031 UTC [fsblkstorage] updateCheckpoint -> DEBU eef Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54563], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | 2018-01-14 11:46:41.031 UTC [orderer/multichain] WriteBlock -> DEBU ef0 [channel: businesschannel] Wrote block 5 +orderer.example.com | 2018-01-14 11:46:41.031 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ef1 retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | 2018-01-14 11:46:41.031 UTC [fsblkstorage] newBlockfileStream -> DEBU ef2 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49888] +orderer.example.com | 2018-01-14 11:46:41.031 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef3 Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:41.031 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef4 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49888], bytesOffset=[49890]} +orderer.example.com | 2018-01-14 11:46:41.031 UTC [orderer/common/deliver] Handle -> DEBU ef5 [channel: businesschannel] Delivering block for (0xc420373960) +orderer.example.com | 2018-01-14 11:46:41.035 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ef6 retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | 2018-01-14 11:46:41.036 UTC [fsblkstorage] newBlockfileStream -> DEBU ef7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49888] +orderer.example.com | 2018-01-14 11:46:41.036 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef8 Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:46:41.036 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef9 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49888], bytesOffset=[49890]} +orderer.example.com | 2018-01-14 11:46:41.036 UTC [orderer/common/deliver] Handle -> DEBU efa [channel: businesschannel] Delivering block for (0xc42034dc80) +orderer.example.com | 2018-01-14 11:47:02.311 UTC [orderer/main] Broadcast -> DEBU efb Starting new Broadcast handler +orderer.example.com | 2018-01-14 11:47:02.311 UTC [orderer/common/broadcast] Handle -> DEBU efc Starting new broadcast loop +orderer.example.com | 2018-01-14 11:47:02.332 UTC [orderer/common/broadcast] Handle -> DEBU efd [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-14 11:47:02.332 UTC [policies] GetPolicy -> DEBU efe Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:47:02.332 UTC [cauthdsl] func1 -> DEBU eff 0xc420150e68 gate 1515930422332191264 evaluation starts +orderer.example.com | 2018-01-14 11:47:02.332 UTC [cauthdsl] func2 -> DEBU f00 0xc420150e68 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:02.332 UTC [cauthdsl] func2 -> DEBU f01 0xc420150e68 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:02.333 UTC [msp/identity] newIdentity -> DEBU f02 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:02.333 UTC [msp] SatisfiesPrincipal -> DEBU f03 Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-14 11:47:02.333 UTC [msp] Validate -> DEBU f04 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:47:02.333 UTC [cauthdsl] func2 -> DEBU f05 0xc420150e68 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:02.333 UTC [msp/identity] Verify -> DEBU f06 Verify: digest = 00000000 71 42 33 02 69 90 b2 80 34 a2 8b 8a 30 78 7d e4 |qB3.i...4...0x}.| +orderer.example.com | 00000010 21 9a 96 64 3c 41 0c b2 81 56 7d aa fd f5 21 77 |!..d DEBU f07 Verify: sig = 00000000 30 45 02 21 00 8d 48 db 23 eb 6a 9e 8a 9c 10 0b |0E.!..H.#.j.....| +orderer.example.com | 00000010 02 11 ce f9 6c c4 11 8f 9d 27 1b 1f 76 c7 c9 ed |....l....'..v...| +orderer.example.com | 00000020 5c ef a8 f8 f2 02 20 77 a8 6e 02 bb 64 71 62 a6 |\..... w.n..dqb.| +orderer.example.com | 00000030 5f 59 af e1 cb 32 6c 98 aa 93 1b 90 27 5c 11 0c |_Y...2l.....'\..| +orderer.example.com | 00000040 38 f1 94 5c 47 62 2a |8..\Gb*| +orderer.example.com | 2018-01-14 11:47:02.334 UTC [cauthdsl] func2 -> DEBU f08 0xc420150e68 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:02.334 UTC [cauthdsl] func1 -> DEBU f09 0xc420150e68 gate 1515930422332191264 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:02.334 UTC [orderer/common/sigfilter] Apply -> DEBU f0a Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +orderer.example.com | 2018-01-14 11:47:02.334 UTC [orderer/common/broadcast] Handle -> DEBU f0b [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +orderer.example.com | 2018-01-14 11:47:02.334 UTC [policies] GetPolicy -> DEBU f0c Returning policy Writers for evaluation +orderer.example.com | 2018-01-14 11:47:02.334 UTC [cauthdsl] func1 -> DEBU f0d 0xc420150e90 gate 1515930422334730064 evaluation starts +orderer.example.com | 2018-01-14 11:47:02.334 UTC [cauthdsl] func2 -> DEBU f0e 0xc420150e90 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:02.334 UTC [cauthdsl] func2 -> DEBU f0f 0xc420150e90 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:02.335 UTC [msp/identity] newIdentity -> DEBU f10 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +orderer.example.com | mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +orderer.example.com | ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +orderer.example.com | 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +orderer.example.com | AXYxULZpXYDQXt1KaLI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:02.335 UTC [msp] SatisfiesPrincipal -> DEBU f11 Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | 2018-01-14 11:47:02.335 UTC [msp] Validate -> DEBU f12 MSP Org2MSP validating identity +orderer.example.com | 2018-01-14 11:47:02.336 UTC [cauthdsl] func2 -> DEBU f13 0xc420150e90 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:02.336 UTC [msp/identity] Verify -> DEBU f14 Verify: digest = 00000000 71 42 33 02 69 90 b2 80 34 a2 8b 8a 30 78 7d e4 |qB3.i...4...0x}.| +orderer.example.com | 00000010 21 9a 96 64 3c 41 0c b2 81 56 7d aa fd f5 21 77 |!..d DEBU f15 Verify: sig = 00000000 30 45 02 21 00 8d 48 db 23 eb 6a 9e 8a 9c 10 0b |0E.!..H.#.j.....| +orderer.example.com | 00000010 02 11 ce f9 6c c4 11 8f 9d 27 1b 1f 76 c7 c9 ed |....l....'..v...| +orderer.example.com | 00000020 5c ef a8 f8 f2 02 20 77 a8 6e 02 bb 64 71 62 a6 |\..... w.n..dqb.| +orderer.example.com | 00000030 5f 59 af e1 cb 32 6c 98 aa 93 1b 90 27 5c 11 0c |_Y...2l.....'\..| +orderer.example.com | 00000040 38 f1 94 5c 47 62 2a |8..\Gb*| +orderer.example.com | 2018-01-14 11:47:02.336 UTC [cauthdsl] func2 -> DEBU f16 0xc420150e90 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:02.336 UTC [cauthdsl] func1 -> DEBU f17 0xc420150e90 gate 1515930422334730064 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:02.336 UTC [orderer/common/sigfilter] Apply -> DEBU f18 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +orderer.example.com | 2018-01-14 11:47:02.336 UTC [orderer/common/blockcutter] Ordered -> DEBU f19 Enqueuing message into batch +orderer.example.com | 2018-01-14 11:47:02.337 UTC [orderer/common/broadcast] Handle -> WARN f1a Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:02.337 UTC [orderer/main] func1 -> DEBU f1b Closing Broadcast stream +orderer.example.com | 2018-01-14 11:47:04.337 UTC [orderer/solo] main -> DEBU f1c Batch timer expired, creating block +orderer.example.com | 2018-01-14 11:47:04.337 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f1d retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | 2018-01-14 11:47:04.337 UTC [fsblkstorage] newBlockfileStream -> DEBU f1e newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49888] +orderer.example.com | 2018-01-14 11:47:04.337 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f1f Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:04.338 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f20 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49888], bytesOffset=[49890]} +orderer.example.com | 2018-01-14 11:47:04.339 UTC [orderer/multichain] addBlockSignature -> DEBU f21 &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +orderer.example.com | 2018-01-14 11:47:04.339 UTC [orderer/multichain] addBlockSignature -> DEBU f22 &{} +orderer.example.com | 2018-01-14 11:47:04.339 UTC [msp] GetLocalMSP -> DEBU f23 Returning existing local MSP +orderer.example.com | 2018-01-14 11:47:04.339 UTC [msp] GetDefaultSigningIdentity -> DEBU f24 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:47:04.341 UTC [msp] GetLocalMSP -> DEBU f25 Returning existing local MSP +orderer.example.com | 2018-01-14 11:47:04.341 UTC [msp] GetDefaultSigningIdentity -> DEBU f26 Obtaining default signing identity +orderer.example.com | 2018-01-14 11:47:04.341 UTC [msp/identity] Sign -> DEBU f27 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...019AFECC2613A2D0EB31A845E3B661EC +orderer.example.com | 2018-01-14 11:47:04.342 UTC [msp/identity] Sign -> DEBU f28 Sign: digest: 3A3B7D0B9AF66EF5D70900C6D59E77E2EF04A15C0C161DF276E69F9E1A72C437 +orderer.example.com | 2018-01-14 11:47:04.342 UTC [msp] GetLocalMSP -> DEBU f29 Returning existing local MSP +orderer.example.com | 2018-01-14 11:47:04.342 UTC [msp] GetDefaultSigningIdentity -> DEBU f2a Obtaining default signing identity +orderer.example.com | 2018-01-14 11:47:04.343 UTC [orderer/multichain] addLastConfigSignature -> DEBU f2b [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | 2018-01-14 11:47:04.343 UTC [msp] GetLocalMSP -> DEBU f2c Returning existing local MSP +orderer.example.com | 2018-01-14 11:47:04.344 UTC [msp] GetDefaultSigningIdentity -> DEBU f2d Obtaining default signing identity +orderer.example.com | 2018-01-14 11:47:04.344 UTC [msp/identity] Sign -> DEBU f2e Sign: plaintext: 08020AFA050A0A4F7264657265724D53...019AFECC2613A2D0EB31A845E3B661EC +orderer.example.com | 2018-01-14 11:47:04.344 UTC [msp/identity] Sign -> DEBU f2f Sign: digest: EEEBA22234A465B4A67EFFDA712DECE40FD027DB5049281799443A08006AF809 +orderer.example.com | 2018-01-14 11:47:04.354 UTC [fsblkstorage] indexBlock -> DEBU f30 Indexing block [blockNum=6, blockHash=[]byte{0x66, 0x95, 0xb9, 0xa7, 0xea, 0xde, 0xdc, 0xbc, 0x49, 0xd1, 0x7a, 0xf8, 0xb7, 0x8c, 0x68, 0x5, 0x62, 0x2d, 0x2f, 0x0, 0x6e, 0x1f, 0x51, 0x6, 0xe8, 0xa0, 0xe7, 0xba, 0x94, 0x12, 0xd3, 0x72} txOffsets= +orderer.example.com | txId=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 locPointer=offset=70, bytesLength=2856 +orderer.example.com | ] +orderer.example.com | 2018-01-14 11:47:04.354 UTC [fsblkstorage] updateCheckpoint -> DEBU f31 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59238], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | 2018-01-14 11:47:04.354 UTC [orderer/multichain] WriteBlock -> DEBU f32 [channel: businesschannel] Wrote block 6 +orderer.example.com | 2018-01-14 11:47:04.354 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f33 retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-14 11:47:04.354 UTC [fsblkstorage] newBlockfileStream -> DEBU f34 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +orderer.example.com | 2018-01-14 11:47:04.354 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f35 Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:04.355 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f36 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +orderer.example.com | 2018-01-14 11:47:04.355 UTC [orderer/common/deliver] Handle -> DEBU f37 [channel: businesschannel] Delivering block for (0xc420373960) +orderer.example.com | 2018-01-14 11:47:04.363 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f38 retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-14 11:47:04.364 UTC [fsblkstorage] newBlockfileStream -> DEBU f39 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +orderer.example.com | 2018-01-14 11:47:04.364 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3a Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:04.364 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3b Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +orderer.example.com | 2018-01-14 11:47:04.364 UTC [orderer/common/deliver] Handle -> DEBU f3c [channel: businesschannel] Delivering block for (0xc42034dc80) +orderer.example.com | 2018-01-14 11:47:04.792 UTC [orderer/main] Deliver -> DEBU f3d Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:04.792 UTC [orderer/common/deliver] Handle -> DEBU f3e Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:04.793 UTC [orderer/common/deliver] Handle -> DEBU f3f Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:04.794 UTC [policies] GetPolicy -> DEBU f40 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:04.794 UTC [cauthdsl] func1 -> DEBU f41 0xc420150108 gate 1515930424794459464 evaluation starts +orderer.example.com | 2018-01-14 11:47:04.794 UTC [cauthdsl] func2 -> DEBU f42 0xc420150108 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:04.794 UTC [cauthdsl] func2 -> DEBU f43 0xc420150108 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:04.795 UTC [msp/identity] newIdentity -> DEBU f44 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:04.795 UTC [cauthdsl] func2 -> DEBU f45 0xc420150108 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:04.795 UTC [cauthdsl] func2 -> DEBU f46 0xc420150108 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:04.795 UTC [cauthdsl] func1 -> DEBU f47 0xc420150108 gate 1515930424794459464 evaluation fails +orderer.example.com | 2018-01-14 11:47:04.795 UTC [cauthdsl] func1 -> DEBU f48 0xc420150408 gate 1515930424795628664 evaluation starts +orderer.example.com | 2018-01-14 11:47:04.795 UTC [cauthdsl] func2 -> DEBU f49 0xc420150408 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:04.796 UTC [cauthdsl] func2 -> DEBU f4a 0xc420150408 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:04.796 UTC [msp/identity] newIdentity -> DEBU f4b Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:04.796 UTC [cauthdsl] func2 -> DEBU f4c 0xc420150408 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:04.797 UTC [cauthdsl] func2 -> DEBU f4d 0xc420150408 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:04.797 UTC [cauthdsl] func1 -> DEBU f4e 0xc420150408 gate 1515930424795628664 evaluation fails +orderer.example.com | 2018-01-14 11:47:04.797 UTC [cauthdsl] func1 -> DEBU f4f 0xc420150420 gate 1515930424797284064 evaluation starts +orderer.example.com | 2018-01-14 11:47:04.797 UTC [cauthdsl] func2 -> DEBU f50 0xc420150420 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:04.797 UTC [cauthdsl] func2 -> DEBU f51 0xc420150420 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:04.798 UTC [msp/identity] newIdentity -> DEBU f52 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:04.798 UTC [msp] SatisfiesPrincipal -> DEBU f53 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:04.798 UTC [msp] Validate -> DEBU f54 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:04.799 UTC [cauthdsl] func2 -> DEBU f55 0xc420150420 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:04.799 UTC [msp/identity] Verify -> DEBU f56 Verify: digest = 00000000 07 5b 81 a6 5c e3 42 9e 14 7c 30 37 7f b0 b7 c3 |.[..\.B..|07....| +orderer.example.com | 00000010 e9 f6 90 c6 12 2a 77 43 3d 9f ca 38 a4 26 1c be |.....*wC=..8.&..| +orderer.example.com | 2018-01-14 11:47:04.799 UTC [msp/identity] Verify -> DEBU f57 Verify: sig = 00000000 30 44 02 20 08 cf 9a 28 23 6f 5c e9 d2 77 97 9d |0D. ...(#o\..w..| +orderer.example.com | 00000010 f5 e0 0b 70 66 99 ff 6a 58 5d ad 78 09 1b e3 bc |...pf..jX].x....| +orderer.example.com | 00000020 00 5b fb ee 02 20 7f e5 2e 7f e2 98 58 22 7f 4d |.[... ......X".M| +orderer.example.com | 00000030 80 f0 19 e4 e8 d7 05 bc 68 cb 97 51 26 1c f3 82 |........h..Q&...| +orderer.example.com | 00000040 9c ab 7f 9e ae 07 |......| +orderer.example.com | 2018-01-14 11:47:04.800 UTC [cauthdsl] func2 -> DEBU f58 0xc420150420 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:04.800 UTC [cauthdsl] func1 -> DEBU f59 0xc420150420 gate 1515930424797284064 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:04.800 UTC [orderer/common/sigfilter] Apply -> DEBU f5a Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:04.800 UTC [orderer/common/deliver] Handle -> DEBU f5b [channel: businesschannel] Received seekInfo (0xc420b439c0) start: > stop: > +orderer.example.com | 2018-01-14 11:47:04.801 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f5c retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-14 11:47:04.801 UTC [fsblkstorage] newBlockfileStream -> DEBU f5d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +orderer.example.com | 2018-01-14 11:47:04.801 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f5e Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:04.801 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f5f Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +orderer.example.com | 2018-01-14 11:47:04.801 UTC [orderer/common/deliver] Handle -> DEBU f60 [channel: businesschannel] Delivering block for (0xc420b439c0) +orderer.example.com | 2018-01-14 11:47:04.802 UTC [orderer/common/deliver] Handle -> DEBU f61 [channel: businesschannel] Done delivering for (0xc420b439c0), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:04.802 UTC [orderer/common/deliver] Handle -> DEBU f62 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:04.805 UTC [orderer/common/deliver] Handle -> WARN f63 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:04.806 UTC [orderer/main] func1 -> DEBU f64 Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:05.001 UTC [orderer/main] Deliver -> DEBU f65 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:05.001 UTC [orderer/common/deliver] Handle -> DEBU f66 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:05.001 UTC [orderer/common/deliver] Handle -> DEBU f67 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.002 UTC [policies] GetPolicy -> DEBU f68 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:05.003 UTC [cauthdsl] func1 -> DEBU f69 0xc420150730 gate 1515930425003040764 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.003 UTC [cauthdsl] func2 -> DEBU f6a 0xc420150730 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.003 UTC [cauthdsl] func2 -> DEBU f6b 0xc420150730 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.003 UTC [msp/identity] newIdentity -> DEBU f6c Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f6d 0xc420150730 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f6e 0xc420150730 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func1 -> DEBU f6f 0xc420150730 gate 1515930425003040764 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func1 -> DEBU f70 0xc420150780 gate 1515930425004191064 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f71 0xc420150780 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f72 0xc420150780 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.004 UTC [msp/identity] newIdentity -> DEBU f73 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f74 0xc420150780 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f75 0xc420150780 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func1 -> DEBU f76 0xc420150780 gate 1515930425004191064 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func1 -> DEBU f77 0xc4201507b0 gate 1515930425004941264 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f78 0xc4201507b0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f79 0xc4201507b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.005 UTC [msp/identity] newIdentity -> DEBU f7a Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.005 UTC [msp] SatisfiesPrincipal -> DEBU f7b Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:05.005 UTC [msp] Validate -> DEBU f7c MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:05.006 UTC [cauthdsl] func2 -> DEBU f7d 0xc4201507b0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:05.006 UTC [msp/identity] Verify -> DEBU f7e Verify: digest = 00000000 09 2c af c8 db 03 09 c4 7a 5d c4 3f ed 66 6f a7 |.,......z].?.fo.| +orderer.example.com | 00000010 97 49 dc c7 0e 94 24 6f 30 f0 98 bc 87 c3 48 f5 |.I....$o0.....H.| +orderer.example.com | 2018-01-14 11:47:05.006 UTC [msp/identity] Verify -> DEBU f7f Verify: sig = 00000000 30 44 02 20 0a d3 db af bf 7d a0 cf 09 d9 3d 3a |0D. .....}....=:| +orderer.example.com | 00000010 c1 5a 2c 41 80 dc e6 d0 38 ff c2 0a 22 ec ad 0b |.Z,A....8..."...| +orderer.example.com | 00000020 07 d7 6d 36 02 20 31 d1 56 87 20 0b e3 6e 37 ec |..m6. 1.V. ..n7.| +orderer.example.com | 00000030 0a 28 40 f7 75 23 0e ad c9 55 29 fe 61 92 01 1c |.(@.u#...U).a...| +orderer.example.com | 00000040 27 e2 1f f1 46 2b |'...F+| +orderer.example.com | 2018-01-14 11:47:05.006 UTC [cauthdsl] func2 -> DEBU f80 0xc4201507b0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:05.006 UTC [cauthdsl] func1 -> DEBU f81 0xc4201507b0 gate 1515930425004941264 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:05.006 UTC [orderer/common/sigfilter] Apply -> DEBU f82 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:05.006 UTC [orderer/common/deliver] Handle -> DEBU f83 [channel: businesschannel] Received seekInfo (0xc4203add00) start: > stop: > +orderer.example.com | 2018-01-14 11:47:05.007 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f84 retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-14 11:47:05.007 UTC [fsblkstorage] newBlockfileStream -> DEBU f85 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +orderer.example.com | 2018-01-14 11:47:05.007 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f86 Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:05.007 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f87 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +orderer.example.com | 2018-01-14 11:47:05.007 UTC [orderer/common/deliver] Handle -> DEBU f88 [channel: businesschannel] Delivering block for (0xc4203add00) +orderer.example.com | 2018-01-14 11:47:05.013 UTC [orderer/common/deliver] Handle -> DEBU f89 [channel: businesschannel] Done delivering for (0xc4203add00), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:05.013 UTC [orderer/common/deliver] Handle -> DEBU f8a Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.015 UTC [policies] GetPolicy -> DEBU f8b Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:05.016 UTC [cauthdsl] func1 -> DEBU f8c 0xc420150828 gate 1515930425015944464 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.016 UTC [cauthdsl] func2 -> DEBU f8d 0xc420150828 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.016 UTC [cauthdsl] func2 -> DEBU f8e 0xc420150828 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.016 UTC [msp/identity] newIdentity -> DEBU f8f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.017 UTC [cauthdsl] func2 -> DEBU f90 0xc420150828 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.017 UTC [cauthdsl] func2 -> DEBU f91 0xc420150828 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.017 UTC [cauthdsl] func1 -> DEBU f92 0xc420150828 gate 1515930425015944464 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.017 UTC [cauthdsl] func1 -> DEBU f93 0xc420150870 gate 1515930425017290864 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.017 UTC [cauthdsl] func2 -> DEBU f94 0xc420150870 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.017 UTC [cauthdsl] func2 -> DEBU f95 0xc420150870 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.017 UTC [msp/identity] newIdentity -> DEBU f96 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.018 UTC [cauthdsl] func2 -> DEBU f97 0xc420150870 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.018 UTC [cauthdsl] func2 -> DEBU f98 0xc420150870 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.018 UTC [cauthdsl] func1 -> DEBU f99 0xc420150870 gate 1515930425017290864 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.018 UTC [cauthdsl] func1 -> DEBU f9a 0xc420150898 gate 1515930425018498464 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.018 UTC [cauthdsl] func2 -> DEBU f9b 0xc420150898 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.018 UTC [cauthdsl] func2 -> DEBU f9c 0xc420150898 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.018 UTC [msp/identity] newIdentity -> DEBU f9d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.019 UTC [msp] SatisfiesPrincipal -> DEBU f9e Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:05.019 UTC [msp] Validate -> DEBU f9f MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:05.019 UTC [cauthdsl] func2 -> DEBU fa0 0xc420150898 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:05.019 UTC [msp/identity] Verify -> DEBU fa1 Verify: digest = 00000000 9e 29 3e 06 d2 1b 9b 51 61 f8 37 76 8f 6c ad ed |.)>....Qa.7v.l..| +orderer.example.com | 00000010 e9 70 c8 b3 7c 05 6e 34 4d 53 8c f0 ce 47 e8 b0 |.p..|.n4MS...G..| +orderer.example.com | 2018-01-14 11:47:05.020 UTC [msp/identity] Verify -> DEBU fa2 Verify: sig = 00000000 30 45 02 21 00 ff fe 14 26 00 f2 6b 9c 1b d2 cd |0E.!....&..k....| +orderer.example.com | 00000010 af 09 60 8d 67 8f 79 0c b6 ca 86 f4 4e 60 c3 3e |..`.g.y.....N`.>| +orderer.example.com | 00000020 9e f8 7f e0 7d 02 20 7a 04 c1 f5 12 da fc c9 17 |....}. z........| +orderer.example.com | 00000030 ad ec 0b 82 bd cb 6b 0f 26 3a 0c fc e3 f8 3d e2 |......k.&:....=.| +orderer.example.com | 00000040 9f 5a d7 99 98 7c 74 |.Z...|t| +orderer.example.com | 2018-01-14 11:47:05.020 UTC [cauthdsl] func2 -> DEBU fa3 0xc420150898 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:05.020 UTC [cauthdsl] func1 -> DEBU fa4 0xc420150898 gate 1515930425018498464 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:05.020 UTC [orderer/common/sigfilter] Apply -> DEBU fa5 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:05.020 UTC [orderer/common/deliver] Handle -> DEBU fa6 [channel: businesschannel] Received seekInfo (0xc42094dba0) start: > stop: > +orderer.example.com | 2018-01-14 11:47:05.021 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fa7 retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-14 11:47:05.021 UTC [fsblkstorage] newBlockfileStream -> DEBU fa8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +orderer.example.com | 2018-01-14 11:47:05.021 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fa9 Remaining bytes=[33572], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:05.021 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU faa Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +orderer.example.com | 2018-01-14 11:47:05.021 UTC [orderer/common/deliver] Handle -> DEBU fab [channel: businesschannel] Delivering block for (0xc42094dba0) +orderer.example.com | 2018-01-14 11:47:05.022 UTC [orderer/common/deliver] Handle -> DEBU fac [channel: businesschannel] Done delivering for (0xc42094dba0), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:05.022 UTC [orderer/common/deliver] Handle -> DEBU fad Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.033 UTC [orderer/common/deliver] Handle -> WARN fae Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:05.033 UTC [orderer/main] func1 -> DEBU faf Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:05.121 UTC [orderer/main] Deliver -> DEBU fb0 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:05.121 UTC [orderer/common/deliver] Handle -> DEBU fb1 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:05.121 UTC [orderer/common/deliver] Handle -> DEBU fb2 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.123 UTC [policies] GetPolicy -> DEBU fb3 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:05.123 UTC [cauthdsl] func1 -> DEBU fb4 0xc420026080 gate 1515930425123321664 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.123 UTC [cauthdsl] func2 -> DEBU fb5 0xc420026080 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.123 UTC [cauthdsl] func2 -> DEBU fb6 0xc420026080 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.123 UTC [msp/identity] newIdentity -> DEBU fb7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.124 UTC [cauthdsl] func2 -> DEBU fb8 0xc420026080 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.124 UTC [cauthdsl] func2 -> DEBU fb9 0xc420026080 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.124 UTC [cauthdsl] func1 -> DEBU fba 0xc420026080 gate 1515930425123321664 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.124 UTC [cauthdsl] func1 -> DEBU fbb 0xc420026098 gate 1515930425124440564 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.124 UTC [cauthdsl] func2 -> DEBU fbc 0xc420026098 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.124 UTC [cauthdsl] func2 -> DEBU fbd 0xc420026098 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.125 UTC [msp/identity] newIdentity -> DEBU fbe Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.126 UTC [cauthdsl] func2 -> DEBU fbf 0xc420026098 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.126 UTC [cauthdsl] func2 -> DEBU fc0 0xc420026098 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.126 UTC [cauthdsl] func1 -> DEBU fc1 0xc420026098 gate 1515930425124440564 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.126 UTC [cauthdsl] func1 -> DEBU fc2 0xc4200260b0 gate 1515930425126845264 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.126 UTC [cauthdsl] func2 -> DEBU fc3 0xc4200260b0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.126 UTC [cauthdsl] func2 -> DEBU fc4 0xc4200260b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.127 UTC [msp/identity] newIdentity -> DEBU fc5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.127 UTC [msp] SatisfiesPrincipal -> DEBU fc6 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:05.127 UTC [msp] Validate -> DEBU fc7 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:05.128 UTC [cauthdsl] func2 -> DEBU fc8 0xc4200260b0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:05.128 UTC [msp/identity] Verify -> DEBU fc9 Verify: digest = 00000000 03 5d 41 6e d4 85 16 54 fb 95 8f 7e 18 1a a6 82 |.]An...T...~....| +orderer.example.com | 00000010 20 6f a5 b7 cb f5 ec 2b be d9 e5 91 10 3d f1 8b | o.....+.....=..| +orderer.example.com | 2018-01-14 11:47:05.128 UTC [msp/identity] Verify -> DEBU fca Verify: sig = 00000000 30 45 02 21 00 c5 a9 a5 28 f8 7b 63 45 16 59 3f |0E.!....(.{cE.Y?| +orderer.example.com | 00000010 33 86 05 30 05 61 84 ce 56 28 89 36 f6 f1 48 2b |3..0.a..V(.6..H+| +orderer.example.com | 00000020 b1 15 9e dc a2 02 20 5c 44 75 f6 51 cd 9f f8 75 |...... \Du.Q...u| +orderer.example.com | 00000030 7f 5d d9 9c 1b ad 40 50 f2 71 b7 aa ef 1b 1d 99 |.]....@P.q......| +orderer.example.com | 00000040 23 40 d3 a6 0d c6 fe |#@.....| +orderer.example.com | 2018-01-14 11:47:05.129 UTC [cauthdsl] func2 -> DEBU fcb 0xc4200260b0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:05.129 UTC [cauthdsl] func1 -> DEBU fcc 0xc4200260b0 gate 1515930425126845264 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:05.129 UTC [orderer/common/sigfilter] Apply -> DEBU fcd Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:05.129 UTC [orderer/common/deliver] Handle -> DEBU fce [channel: businesschannel] Received seekInfo (0xc4207ec060) start: > stop: > +orderer.example.com | 2018-01-14 11:47:05.129 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fcf retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-14 11:47:05.129 UTC [fsblkstorage] newBlockfileStream -> DEBU fd0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-14 11:47:05.130 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fd1 Remaining bytes=[59238], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:05.130 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fd2 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-14 11:47:05.131 UTC [orderer/common/deliver] Handle -> DEBU fd3 [channel: businesschannel] Delivering block for (0xc4207ec060) +orderer.example.com | 2018-01-14 11:47:05.132 UTC [orderer/common/deliver] Handle -> DEBU fd4 [channel: businesschannel] Done delivering for (0xc4207ec060), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:05.132 UTC [orderer/common/deliver] Handle -> DEBU fd5 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.136 UTC [orderer/common/deliver] Handle -> WARN fd6 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:05.136 UTC [orderer/main] func1 -> DEBU fd7 Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:05.336 UTC [orderer/main] Deliver -> DEBU fd8 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:05.336 UTC [orderer/common/deliver] Handle -> DEBU fd9 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:05.336 UTC [orderer/common/deliver] Handle -> DEBU fda Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.337 UTC [policies] GetPolicy -> DEBU fdb Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:05.337 UTC [cauthdsl] func1 -> DEBU fdc 0xc420150a08 gate 1515930425337555964 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.337 UTC [cauthdsl] func2 -> DEBU fdd 0xc420150a08 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.337 UTC [cauthdsl] func2 -> DEBU fde 0xc420150a08 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.338 UTC [msp/identity] newIdentity -> DEBU fdf Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.338 UTC [cauthdsl] func2 -> DEBU fe0 0xc420150a08 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.338 UTC [cauthdsl] func2 -> DEBU fe1 0xc420150a08 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.338 UTC [cauthdsl] func1 -> DEBU fe2 0xc420150a08 gate 1515930425337555964 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.338 UTC [cauthdsl] func1 -> DEBU fe3 0xc420150a60 gate 1515930425338868664 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.338 UTC [cauthdsl] func2 -> DEBU fe4 0xc420150a60 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.339 UTC [cauthdsl] func2 -> DEBU fe5 0xc420150a60 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.339 UTC [msp/identity] newIdentity -> DEBU fe6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.340 UTC [cauthdsl] func2 -> DEBU fe7 0xc420150a60 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.340 UTC [cauthdsl] func2 -> DEBU fe8 0xc420150a60 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.340 UTC [cauthdsl] func1 -> DEBU fe9 0xc420150a60 gate 1515930425338868664 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.340 UTC [cauthdsl] func1 -> DEBU fea 0xc420150a88 gate 1515930425340184564 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.340 UTC [cauthdsl] func2 -> DEBU feb 0xc420150a88 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.340 UTC [cauthdsl] func2 -> DEBU fec 0xc420150a88 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.340 UTC [msp/identity] newIdentity -> DEBU fed Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.341 UTC [msp] SatisfiesPrincipal -> DEBU fee Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:05.341 UTC [msp] Validate -> DEBU fef MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:05.341 UTC [cauthdsl] func2 -> DEBU ff0 0xc420150a88 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:05.341 UTC [msp/identity] Verify -> DEBU ff1 Verify: digest = 00000000 7f 3b da ca 3e 68 c0 78 b0 32 8c 79 33 56 84 cb |.;..>h.x.2.y3V..| +orderer.example.com | 00000010 f8 05 50 2a fa 23 3a 74 c8 80 8b 57 41 8f bf aa |..P*.#:t...WA...| +orderer.example.com | 2018-01-14 11:47:05.341 UTC [msp/identity] Verify -> DEBU ff2 Verify: sig = 00000000 30 45 02 21 00 99 80 74 f4 00 cd 33 5c 0d 8b 25 |0E.!...t...3\..%| +orderer.example.com | 00000010 97 32 4e 51 22 0f 5e a9 57 7d 5f e7 6d 92 d6 7f |.2NQ".^.W}_.m...| +orderer.example.com | 00000020 52 d9 78 67 6b 02 20 2b 77 17 0d a9 70 6f 0c 52 |R.xgk. +w...po.R| +orderer.example.com | 00000030 06 ea 1f bf 16 b6 f0 00 ad 40 30 7b 85 cd 78 52 |.........@0{..xR| +orderer.example.com | 00000040 cf 67 d0 91 22 72 6b |.g.."rk| +orderer.example.com | 2018-01-14 11:47:05.342 UTC [cauthdsl] func2 -> DEBU ff3 0xc420150a88 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:05.342 UTC [cauthdsl] func1 -> DEBU ff4 0xc420150a88 gate 1515930425340184564 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:05.342 UTC [orderer/common/sigfilter] Apply -> DEBU ff5 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:05.342 UTC [orderer/common/deliver] Handle -> DEBU ff6 [channel: businesschannel] Received seekInfo (0xc420a46aa0) start: > stop: > +orderer.example.com | 2018-01-14 11:47:05.342 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ff7 retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-14 11:47:05.343 UTC [fsblkstorage] newBlockfileStream -> DEBU ff8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] +orderer.example.com | 2018-01-14 11:47:05.343 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ff9 Remaining bytes=[47305], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:05.343 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ffa Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} +orderer.example.com | 2018-01-14 11:47:05.343 UTC [orderer/common/deliver] Handle -> DEBU ffb [channel: businesschannel] Delivering block for (0xc420a46aa0) +orderer.example.com | 2018-01-14 11:47:05.344 UTC [orderer/common/deliver] Handle -> DEBU ffc [channel: businesschannel] Done delivering for (0xc420a46aa0), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:05.344 UTC [orderer/common/deliver] Handle -> DEBU ffd Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.350 UTC [orderer/common/deliver] Handle -> WARN ffe Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:05.350 UTC [orderer/main] func1 -> DEBU fff Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:05.507 UTC [orderer/main] Deliver -> DEBU 1000 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:05.507 UTC [orderer/common/deliver] Handle -> DEBU 1001 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:05.507 UTC [orderer/common/deliver] Handle -> DEBU 1002 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.510 UTC [policies] GetPolicy -> DEBU 1003 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:05.510 UTC [cauthdsl] func1 -> DEBU 1004 0xc420026108 gate 1515930425510328364 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 1005 0xc420026108 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 1006 0xc420026108 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.510 UTC [msp/identity] newIdentity -> DEBU 1007 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 1008 0xc420026108 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 1009 0xc420026108 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.510 UTC [cauthdsl] func1 -> DEBU 100a 0xc420026108 gate 1515930425510328364 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.510 UTC [cauthdsl] func1 -> DEBU 100b 0xc420026118 gate 1515930425510979664 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 100c 0xc420026118 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 100d 0xc420026118 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.511 UTC [msp/identity] newIdentity -> DEBU 100e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 100f 0xc420026118 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 1010 0xc420026118 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.511 UTC [cauthdsl] func1 -> DEBU 1011 0xc420026118 gate 1515930425510979664 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.511 UTC [cauthdsl] func1 -> DEBU 1012 0xc420026128 gate 1515930425511773964 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 1013 0xc420026128 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 1014 0xc420026128 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.512 UTC [msp/identity] newIdentity -> DEBU 1015 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.516 UTC [msp] SatisfiesPrincipal -> DEBU 1016 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:05.516 UTC [msp] Validate -> DEBU 1017 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:05.516 UTC [cauthdsl] func2 -> DEBU 1018 0xc420026128 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:05.516 UTC [msp/identity] Verify -> DEBU 1019 Verify: digest = 00000000 82 a2 42 b9 b2 9b 9c 2a ca 62 04 1c 5b d1 e5 11 |..B....*.b..[...| +orderer.example.com | 00000010 92 4c 71 7b 9d 9b 08 5d ae db 38 33 31 b1 f1 8c |.Lq{...]..831...| +orderer.example.com | 2018-01-14 11:47:05.516 UTC [msp/identity] Verify -> DEBU 101a Verify: sig = 00000000 30 45 02 21 00 e0 ba 72 22 07 52 72 be 8c fd 56 |0E.!...r".Rr...V| +orderer.example.com | 00000010 a4 6a 3a 18 8c 30 11 15 74 df 9f f4 51 a5 ea ab |.j:..0..t...Q...| +orderer.example.com | 00000020 24 00 a2 77 f7 02 20 50 7e d2 49 54 7d c6 81 bf |$..w.. P~.IT}...| +orderer.example.com | 00000030 68 d0 d1 e3 95 61 fe 21 89 e2 a5 28 2c 75 c8 81 |h....a.!...(,u..| +orderer.example.com | 00000040 29 c4 09 84 df b1 fb |)......| +orderer.example.com | 2018-01-14 11:47:05.518 UTC [cauthdsl] func2 -> DEBU 101b 0xc420026128 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:05.518 UTC [cauthdsl] func1 -> DEBU 101c 0xc420026128 gate 1515930425511773964 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:05.518 UTC [orderer/common/sigfilter] Apply -> DEBU 101d Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:05.518 UTC [orderer/common/deliver] Handle -> DEBU 101e [channel: businesschannel] Received seekInfo (0xc420398560) start: > stop: > +orderer.example.com | 2018-01-14 11:47:05.518 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 101f retrieveBlockByNumber() - blockNum = [2] +orderer.example.com | 2018-01-14 11:47:05.518 UTC [fsblkstorage] newBlockfileStream -> DEBU 1020 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +orderer.example.com | 2018-01-14 11:47:05.519 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1021 Remaining bytes=[33572], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:05.519 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1022 Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +orderer.example.com | 2018-01-14 11:47:05.519 UTC [orderer/common/deliver] Handle -> DEBU 1023 [channel: businesschannel] Delivering block for (0xc420398560) +orderer.example.com | 2018-01-14 11:47:05.519 UTC [orderer/common/deliver] Handle -> DEBU 1024 [channel: businesschannel] Done delivering for (0xc420398560), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:05.519 UTC [orderer/common/deliver] Handle -> DEBU 1025 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.529 UTC [orderer/common/deliver] Handle -> WARN 1026 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:05.529 UTC [orderer/main] func1 -> DEBU 1027 Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:05.682 UTC [orderer/main] Deliver -> DEBU 1028 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:05.682 UTC [orderer/common/deliver] Handle -> DEBU 1029 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:05.682 UTC [orderer/common/deliver] Handle -> DEBU 102a Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.683 UTC [policies] GetPolicy -> DEBU 102b Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:05.683 UTC [cauthdsl] func1 -> DEBU 102c 0xc420026178 gate 1515930425683616764 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.683 UTC [cauthdsl] func2 -> DEBU 102d 0xc420026178 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.683 UTC [cauthdsl] func2 -> DEBU 102e 0xc420026178 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.684 UTC [msp/identity] newIdentity -> DEBU 102f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.694 UTC [cauthdsl] func2 -> DEBU 1030 0xc420026178 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.694 UTC [cauthdsl] func2 -> DEBU 1031 0xc420026178 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.694 UTC [cauthdsl] func1 -> DEBU 1032 0xc420026178 gate 1515930425683616764 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.694 UTC [cauthdsl] func1 -> DEBU 1033 0xc420026188 gate 1515930425694993264 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.695 UTC [cauthdsl] func2 -> DEBU 1034 0xc420026188 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.695 UTC [cauthdsl] func2 -> DEBU 1035 0xc420026188 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.695 UTC [msp/identity] newIdentity -> DEBU 1036 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.695 UTC [cauthdsl] func2 -> DEBU 1037 0xc420026188 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.695 UTC [cauthdsl] func2 -> DEBU 1038 0xc420026188 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.695 UTC [cauthdsl] func1 -> DEBU 1039 0xc420026188 gate 1515930425694993264 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.695 UTC [cauthdsl] func1 -> DEBU 103a 0xc4200261a0 gate 1515930425695891764 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.696 UTC [cauthdsl] func2 -> DEBU 103b 0xc4200261a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.696 UTC [cauthdsl] func2 -> DEBU 103c 0xc4200261a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.696 UTC [msp/identity] newIdentity -> DEBU 103d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.697 UTC [msp] SatisfiesPrincipal -> DEBU 103e Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:05.698 UTC [msp] Validate -> DEBU 103f MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:05.698 UTC [cauthdsl] func2 -> DEBU 1040 0xc4200261a0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:05.699 UTC [msp/identity] Verify -> DEBU 1041 Verify: digest = 00000000 2a 70 fb 9c f3 77 df da ab 29 1f bf 53 4f 97 0f |*p...w...)..SO..| +orderer.example.com | 00000010 35 be 5e 01 0f 43 f4 96 57 1c a5 6d ce 23 f6 fb |5.^..C..W..m.#..| +orderer.example.com | 2018-01-14 11:47:05.699 UTC [msp/identity] Verify -> DEBU 1042 Verify: sig = 00000000 30 45 02 21 00 ca 0e c9 54 de ef 84 b0 fa 71 47 |0E.!....T.....qG| +orderer.example.com | 00000010 7d 5b 93 ab 2f 33 e2 44 ef e2 c2 8c d6 bf d1 1c |}[../3.D........| +orderer.example.com | 00000020 ca 91 b6 72 32 02 20 79 44 36 b9 6f bc 0f fd 62 |...r2. yD6.o...b| +orderer.example.com | 00000030 94 46 3c 23 10 46 75 5d 06 0b 10 ff da e2 d3 40 |.F<#.Fu].......@| +orderer.example.com | 00000040 94 ff 09 a5 bc 4b 85 |.....K.| +orderer.example.com | 2018-01-14 11:47:05.699 UTC [cauthdsl] func2 -> DEBU 1043 0xc4200261a0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:05.699 UTC [cauthdsl] func1 -> DEBU 1044 0xc4200261a0 gate 1515930425695891764 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:05.699 UTC [orderer/common/sigfilter] Apply -> DEBU 1045 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:05.700 UTC [orderer/common/deliver] Handle -> DEBU 1046 [channel: businesschannel] Received seekInfo (0xc4203733e0) start: > stop: > +orderer.example.com | 2018-01-14 11:47:05.700 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1047 retrieveBlockByNumber() - blockNum = [3] +orderer.example.com | 2018-01-14 11:47:05.700 UTC [fsblkstorage] newBlockfileStream -> DEBU 1048 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +orderer.example.com | 2018-01-14 11:47:05.700 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1049 Remaining bytes=[19780], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:05.700 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 104a Returning blockbytes - length=[5212], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +orderer.example.com | 2018-01-14 11:47:05.700 UTC [orderer/common/deliver] Handle -> DEBU 104b [channel: businesschannel] Delivering block for (0xc4203733e0) +orderer.example.com | 2018-01-14 11:47:05.701 UTC [orderer/common/deliver] Handle -> DEBU 104c [channel: businesschannel] Done delivering for (0xc4203733e0), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:05.701 UTC [orderer/common/deliver] Handle -> DEBU 104d Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.708 UTC [orderer/common/deliver] Handle -> WARN 104e Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:05.708 UTC [orderer/main] func1 -> DEBU 104f Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:05.874 UTC [orderer/main] Deliver -> DEBU 1050 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:05.874 UTC [orderer/common/deliver] Handle -> DEBU 1051 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:05.874 UTC [orderer/common/deliver] Handle -> DEBU 1052 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.875 UTC [policies] GetPolicy -> DEBU 1053 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:05.875 UTC [cauthdsl] func1 -> DEBU 1054 0xc420150b88 gate 1515930425875673364 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.875 UTC [cauthdsl] func2 -> DEBU 1055 0xc420150b88 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.875 UTC [cauthdsl] func2 -> DEBU 1056 0xc420150b88 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.876 UTC [msp/identity] newIdentity -> DEBU 1057 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.876 UTC [cauthdsl] func2 -> DEBU 1058 0xc420150b88 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.876 UTC [cauthdsl] func2 -> DEBU 1059 0xc420150b88 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.876 UTC [cauthdsl] func1 -> DEBU 105a 0xc420150b88 gate 1515930425875673364 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.876 UTC [cauthdsl] func1 -> DEBU 105b 0xc420150b98 gate 1515930425876664264 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.876 UTC [cauthdsl] func2 -> DEBU 105c 0xc420150b98 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.876 UTC [cauthdsl] func2 -> DEBU 105d 0xc420150b98 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.877 UTC [msp/identity] newIdentity -> DEBU 105e Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.877 UTC [cauthdsl] func2 -> DEBU 105f 0xc420150b98 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:05.877 UTC [cauthdsl] func2 -> DEBU 1060 0xc420150b98 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:05.877 UTC [cauthdsl] func1 -> DEBU 1061 0xc420150b98 gate 1515930425876664264 evaluation fails +orderer.example.com | 2018-01-14 11:47:05.877 UTC [cauthdsl] func1 -> DEBU 1062 0xc420150bb8 gate 1515930425877481864 evaluation starts +orderer.example.com | 2018-01-14 11:47:05.877 UTC [cauthdsl] func2 -> DEBU 1063 0xc420150bb8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:05.877 UTC [cauthdsl] func2 -> DEBU 1064 0xc420150bb8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:05.878 UTC [msp/identity] newIdentity -> DEBU 1065 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:05.878 UTC [msp] SatisfiesPrincipal -> DEBU 1066 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:05.878 UTC [msp] Validate -> DEBU 1067 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:05.878 UTC [cauthdsl] func2 -> DEBU 1068 0xc420150bb8 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:05.878 UTC [msp/identity] Verify -> DEBU 1069 Verify: digest = 00000000 09 b4 c3 ec 3e ab 07 cb 57 ca 1c bd db 00 04 cb |....>...W.......| +orderer.example.com | 00000010 23 dd ab a1 23 bf 81 ec a8 87 20 aa 12 97 e2 f8 |#...#..... .....| +orderer.example.com | 2018-01-14 11:47:05.878 UTC [msp/identity] Verify -> DEBU 106a Verify: sig = 00000000 30 45 02 21 00 da 00 c5 8c 72 a5 4f 24 71 69 b8 |0E.!.....r.O$qi.| +orderer.example.com | 00000010 47 7f ec e9 62 7f ae 77 64 85 9c 34 11 d1 46 40 |G...b..wd..4..F@| +orderer.example.com | 00000020 49 84 d0 15 da 02 20 3f a4 7a c6 13 3f 5d 60 70 |I..... ?.z..?]`p| +orderer.example.com | 00000030 a2 5e 9e a3 72 19 8f 3c 08 6b 48 4e 3b 2b aa f0 |.^..r..<.kHN;+..| +orderer.example.com | 00000040 8c de 98 c0 e0 42 98 |.....B.| +orderer.example.com | 2018-01-14 11:47:05.879 UTC [cauthdsl] func2 -> DEBU 106b 0xc420150bb8 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:05.879 UTC [cauthdsl] func1 -> DEBU 106c 0xc420150bb8 gate 1515930425877481864 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:05.879 UTC [orderer/common/sigfilter] Apply -> DEBU 106d Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:05.879 UTC [orderer/common/deliver] Handle -> DEBU 106e [channel: businesschannel] Received seekInfo (0xc42080f940) start: > stop: > +orderer.example.com | 2018-01-14 11:47:05.879 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 106f retrieveBlockByNumber() - blockNum = [4] +orderer.example.com | 2018-01-14 11:47:05.879 UTC [fsblkstorage] newBlockfileStream -> DEBU 1070 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44672] +orderer.example.com | 2018-01-14 11:47:05.879 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1071 Remaining bytes=[14566], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:05.879 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1072 Returning blockbytes - length=[5214], placementInfo={fileNum=[0], startOffset=[44672], bytesOffset=[44674]} +orderer.example.com | 2018-01-14 11:47:05.880 UTC [orderer/common/deliver] Handle -> DEBU 1073 [channel: businesschannel] Delivering block for (0xc42080f940) +orderer.example.com | 2018-01-14 11:47:05.880 UTC [orderer/common/deliver] Handle -> DEBU 1074 [channel: businesschannel] Done delivering for (0xc42080f940), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:05.880 UTC [orderer/common/deliver] Handle -> DEBU 1075 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:05.884 UTC [orderer/common/deliver] Handle -> WARN 1076 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:05.885 UTC [orderer/main] func1 -> DEBU 1077 Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:06.094 UTC [orderer/main] Deliver -> DEBU 1078 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:06.094 UTC [orderer/common/deliver] Handle -> DEBU 1079 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:06.094 UTC [orderer/common/deliver] Handle -> DEBU 107a Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.094 UTC [policies] GetPolicy -> DEBU 107b Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:06.095 UTC [cauthdsl] func1 -> DEBU 107c 0xc420150c08 gate 1515930426095003064 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.095 UTC [cauthdsl] func2 -> DEBU 107d 0xc420150c08 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.095 UTC [cauthdsl] func2 -> DEBU 107e 0xc420150c08 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.095 UTC [msp/identity] newIdentity -> DEBU 107f Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.096 UTC [cauthdsl] func2 -> DEBU 1080 0xc420150c08 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:06.096 UTC [cauthdsl] func2 -> DEBU 1081 0xc420150c08 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:06.096 UTC [cauthdsl] func1 -> DEBU 1082 0xc420150c08 gate 1515930426095003064 evaluation fails +orderer.example.com | 2018-01-14 11:47:06.096 UTC [cauthdsl] func1 -> DEBU 1083 0xc420150c18 gate 1515930426096369764 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.096 UTC [cauthdsl] func2 -> DEBU 1084 0xc420150c18 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.096 UTC [cauthdsl] func2 -> DEBU 1085 0xc420150c18 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.096 UTC [msp/identity] newIdentity -> DEBU 1086 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.097 UTC [cauthdsl] func2 -> DEBU 1087 0xc420150c18 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:06.097 UTC [cauthdsl] func2 -> DEBU 1088 0xc420150c18 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:06.097 UTC [cauthdsl] func1 -> DEBU 1089 0xc420150c18 gate 1515930426096369764 evaluation fails +orderer.example.com | 2018-01-14 11:47:06.097 UTC [cauthdsl] func1 -> DEBU 108a 0xc420150c38 gate 1515930426097971964 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.098 UTC [cauthdsl] func2 -> DEBU 108b 0xc420150c38 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.098 UTC [cauthdsl] func2 -> DEBU 108c 0xc420150c38 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.098 UTC [msp/identity] newIdentity -> DEBU 108d Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.099 UTC [msp] SatisfiesPrincipal -> DEBU 108e Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:06.099 UTC [msp] Validate -> DEBU 108f MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:06.099 UTC [cauthdsl] func2 -> DEBU 1090 0xc420150c38 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:06.099 UTC [msp/identity] Verify -> DEBU 1091 Verify: digest = 00000000 e2 73 0f 2d 4f 8a f7 e6 58 66 3f d0 a1 06 cf d7 |.s.-O...Xf?.....| +orderer.example.com | 00000010 85 71 c1 b1 4e 6c d8 22 ef a4 b8 a3 9a e2 eb 48 |.q..Nl.".......H| +orderer.example.com | 2018-01-14 11:47:06.099 UTC [msp/identity] Verify -> DEBU 1092 Verify: sig = 00000000 30 45 02 21 00 da 43 a0 55 11 b5 ad 69 66 05 7c |0E.!..C.U...if.|| +orderer.example.com | 00000010 37 b6 4e 2f 5a c9 15 d1 1f 43 ee 35 ac 3d 3f 3d |7.N/Z....C.5.=?=| +orderer.example.com | 00000020 5c ee 8e ef 44 02 20 53 74 0c a3 ae e2 2d 28 fa |\...D. St....-(.| +orderer.example.com | 00000030 cf 59 ff 2f 44 c5 3d 8a 29 2e fa 23 05 aa 93 0c |.Y./D.=.)..#....| +orderer.example.com | 00000040 ad 62 9a f1 77 f6 e2 |.b..w..| +orderer.example.com | 2018-01-14 11:47:06.100 UTC [cauthdsl] func2 -> DEBU 1093 0xc420150c38 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:06.100 UTC [cauthdsl] func1 -> DEBU 1094 0xc420150c38 gate 1515930426097971964 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:06.100 UTC [orderer/common/sigfilter] Apply -> DEBU 1095 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:06.100 UTC [orderer/common/deliver] Handle -> DEBU 1096 [channel: businesschannel] Received seekInfo (0xc420bd1e80) start: > stop: > +orderer.example.com | 2018-01-14 11:47:06.100 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1097 retrieveBlockByNumber() - blockNum = [5] +orderer.example.com | 2018-01-14 11:47:06.101 UTC [fsblkstorage] newBlockfileStream -> DEBU 1098 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49888] +orderer.example.com | 2018-01-14 11:47:06.101 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1099 Remaining bytes=[9350], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:06.101 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 109a Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49888], bytesOffset=[49890]} +orderer.example.com | 2018-01-14 11:47:06.101 UTC [orderer/common/deliver] Handle -> DEBU 109b [channel: businesschannel] Delivering block for (0xc420bd1e80) +orderer.example.com | 2018-01-14 11:47:06.102 UTC [orderer/common/deliver] Handle -> DEBU 109c [channel: businesschannel] Done delivering for (0xc420bd1e80), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:06.103 UTC [orderer/common/deliver] Handle -> DEBU 109d Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.106 UTC [orderer/common/deliver] Handle -> WARN 109e Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:06.107 UTC [orderer/main] func1 -> DEBU 109f Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:06.269 UTC [orderer/main] Deliver -> DEBU 10a0 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:06.269 UTC [orderer/common/deliver] Handle -> DEBU 10a1 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:06.269 UTC [orderer/common/deliver] Handle -> DEBU 10a2 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.270 UTC [policies] GetPolicy -> DEBU 10a3 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:06.270 UTC [cauthdsl] func1 -> DEBU 10a4 0xc420150ca0 gate 1515930426270331564 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.270 UTC [cauthdsl] func2 -> DEBU 10a5 0xc420150ca0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.270 UTC [cauthdsl] func2 -> DEBU 10a6 0xc420150ca0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.270 UTC [msp/identity] newIdentity -> DEBU 10a7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10a8 0xc420150ca0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10a9 0xc420150ca0 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func1 -> DEBU 10aa 0xc420150ca0 gate 1515930426270331564 evaluation fails +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func1 -> DEBU 10ab 0xc420150cb0 gate 1515930426271113164 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10ac 0xc420150cb0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10ad 0xc420150cb0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.271 UTC [msp/identity] newIdentity -> DEBU 10ae Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10af 0xc420150cb0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10b0 0xc420150cb0 principal evaluation fails +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func1 -> DEBU 10b1 0xc420150cb0 gate 1515930426271113164 evaluation fails +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func1 -> DEBU 10b2 0xc420150cc0 gate 1515930426271865364 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10b3 0xc420150cc0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10b4 0xc420150cc0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.272 UTC [msp/identity] newIdentity -> DEBU 10b5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.272 UTC [msp] SatisfiesPrincipal -> DEBU 10b6 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:06.272 UTC [msp] Validate -> DEBU 10b7 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:06.272 UTC [cauthdsl] func2 -> DEBU 10b8 0xc420150cc0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:06.272 UTC [msp/identity] Verify -> DEBU 10b9 Verify: digest = 00000000 2c 54 d2 54 45 30 59 b7 b3 8a 97 2f 96 6f 7f 40 |,T.TE0Y..../.o.@| +orderer.example.com | 00000010 f1 86 b3 13 d5 9c a3 15 2a ef 72 07 bc cc 20 aa |........*.r... .| +orderer.example.com | 2018-01-14 11:47:06.272 UTC [msp/identity] Verify -> DEBU 10ba Verify: sig = 00000000 30 44 02 20 56 0b 5e bc 9a 20 89 cd d9 71 d4 c3 |0D. V.^.. ...q..| +orderer.example.com | 00000010 57 fa ca 1a 5c 81 d8 79 31 3e 97 8c ba fd 62 e5 |W...\..y1>....b.| +orderer.example.com | 00000020 43 fe 85 a8 02 20 37 41 76 16 b7 95 8f 02 fd 9e |C.... 7Av.......| +orderer.example.com | 00000030 a1 17 44 46 71 72 63 f5 99 f0 fb d9 8e c1 2e a1 |..DFqrc.........| +orderer.example.com | 00000040 42 d0 84 98 48 a2 |B...H.| +orderer.example.com | 2018-01-14 11:47:06.273 UTC [cauthdsl] func2 -> DEBU 10bb 0xc420150cc0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:06.273 UTC [cauthdsl] func1 -> DEBU 10bc 0xc420150cc0 gate 1515930426271865364 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:06.273 UTC [orderer/common/sigfilter] Apply -> DEBU 10bd Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +orderer.example.com | 2018-01-14 11:47:06.273 UTC [orderer/common/deliver] Handle -> DEBU 10be [channel: businesschannel] Received seekInfo (0xc42081db80) start: > stop: > +orderer.example.com | 2018-01-14 11:47:06.273 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10bf retrieveBlockByNumber() - blockNum = [6] +orderer.example.com | 2018-01-14 11:47:06.273 UTC [fsblkstorage] newBlockfileStream -> DEBU 10c0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +orderer.example.com | 2018-01-14 11:47:06.273 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c1 Remaining bytes=[4675], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:06.273 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c2 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +orderer.example.com | 2018-01-14 11:47:06.273 UTC [orderer/common/deliver] Handle -> DEBU 10c3 [channel: businesschannel] Delivering block for (0xc42081db80) +orderer.example.com | 2018-01-14 11:47:06.274 UTC [orderer/common/deliver] Handle -> DEBU 10c4 [channel: businesschannel] Done delivering for (0xc42081db80), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:06.274 UTC [orderer/common/deliver] Handle -> DEBU 10c5 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.278 UTC [orderer/common/deliver] Handle -> WARN 10c6 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:06.278 UTC [orderer/main] func1 -> DEBU 10c7 Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:06.393 UTC [orderer/main] Deliver -> DEBU 10c8 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:06.393 UTC [orderer/common/deliver] Handle -> DEBU 10c9 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:06.393 UTC [orderer/common/deliver] Handle -> DEBU 10ca Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.395 UTC [policies] GetPolicy -> DEBU 10cb Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:06.395 UTC [cauthdsl] func1 -> DEBU 10cc 0xc420150d10 gate 1515930426395200564 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.395 UTC [cauthdsl] func2 -> DEBU 10cd 0xc420150d10 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.395 UTC [cauthdsl] func2 -> DEBU 10ce 0xc420150d10 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.395 UTC [msp/identity] newIdentity -> DEBU 10cf Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.396 UTC [msp] SatisfiesPrincipal -> DEBU 10d0 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:06.396 UTC [msp] Validate -> DEBU 10d1 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:06.396 UTC [cauthdsl] func2 -> DEBU 10d2 0xc420150d10 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:06.396 UTC [msp/identity] Verify -> DEBU 10d3 Verify: digest = 00000000 c9 a1 89 41 27 85 f8 9a 1f 9f 0c cc 3d 86 d6 7b |...A'.......=..{| +orderer.example.com | 00000010 bb cc 46 e3 b7 42 51 5a 10 55 65 ea 8f b0 90 da |..F..BQZ.Ue.....| +orderer.example.com | 2018-01-14 11:47:06.397 UTC [msp/identity] Verify -> DEBU 10d4 Verify: sig = 00000000 30 45 02 21 00 e8 10 a9 3b dd 03 88 b6 bb ab 06 |0E.!....;.......| +orderer.example.com | 00000010 72 1c b9 79 c0 2c 22 be 30 c4 95 81 ae 68 a2 6e |r..y.,".0....h.n| +orderer.example.com | 00000020 0c 70 42 ba c1 02 20 14 e1 47 c5 f9 99 a8 b4 de |.pB... ..G......| +orderer.example.com | 00000030 e3 15 49 c8 2a f2 eb 43 64 a0 05 2d ec 83 7a d7 |..I.*..Cd..-..z.| +orderer.example.com | 00000040 92 e1 dc 06 d7 89 fe |.......| +orderer.example.com | 2018-01-14 11:47:06.397 UTC [cauthdsl] func2 -> DEBU 10d5 0xc420150d10 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:06.397 UTC [cauthdsl] func1 -> DEBU 10d6 0xc420150d10 gate 1515930426395200564 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:06.397 UTC [orderer/common/sigfilter] Apply -> DEBU 10d7 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +orderer.example.com | 2018-01-14 11:47:06.397 UTC [orderer/common/deliver] Handle -> DEBU 10d8 [channel: testchainid] Received seekInfo (0xc4201da340) start: > stop: > +orderer.example.com | 2018-01-14 11:47:06.397 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10d9 retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-14 11:47:06.397 UTC [fsblkstorage] newBlockfileStream -> DEBU 10da newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +orderer.example.com | 2018-01-14 11:47:06.397 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10db Remaining bytes=[14606], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:06.398 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10dc Returning blockbytes - length=[14604], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +orderer.example.com | 2018-01-14 11:47:06.398 UTC [orderer/common/deliver] Handle -> DEBU 10dd [channel: testchainid] Delivering block for (0xc4201da340) +orderer.example.com | 2018-01-14 11:47:06.399 UTC [orderer/common/deliver] Handle -> DEBU 10de [channel: testchainid] Done delivering for (0xc4201da340), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:06.399 UTC [orderer/common/deliver] Handle -> DEBU 10df Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.401 UTC [orderer/common/deliver] Handle -> WARN 10e0 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:06.401 UTC [orderer/main] func1 -> DEBU 10e1 Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:06.540 UTC [orderer/main] Deliver -> DEBU 10e2 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:06.540 UTC [orderer/common/deliver] Handle -> DEBU 10e3 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:06.541 UTC [orderer/common/deliver] Handle -> DEBU 10e4 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.542 UTC [policies] GetPolicy -> DEBU 10e5 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:06.542 UTC [cauthdsl] func1 -> DEBU 10e6 0xc420026218 gate 1515930426542374364 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.542 UTC [cauthdsl] func2 -> DEBU 10e7 0xc420026218 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.542 UTC [cauthdsl] func2 -> DEBU 10e8 0xc420026218 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.542 UTC [msp/identity] newIdentity -> DEBU 10e9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.543 UTC [msp] SatisfiesPrincipal -> DEBU 10ea Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:06.543 UTC [msp] Validate -> DEBU 10eb MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:06.544 UTC [cauthdsl] func2 -> DEBU 10ec 0xc420026218 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:06.544 UTC [msp/identity] Verify -> DEBU 10ed Verify: digest = 00000000 c3 bf 91 b9 8c cd db ad 75 9a d4 e4 96 8c 31 c2 |........u.....1.| +orderer.example.com | 00000010 c5 0a c8 f1 b0 ab 67 bb b8 c4 7a 8c 91 9b da 45 |......g...z....E| +orderer.example.com | 2018-01-14 11:47:06.544 UTC [msp/identity] Verify -> DEBU 10ee Verify: sig = 00000000 30 45 02 21 00 c1 8b cb 93 77 93 c7 ee 7f 55 8b |0E.!.....w....U.| +orderer.example.com | 00000010 64 3b 91 96 ce b7 d8 0d 73 e1 be 02 1b 07 97 df |d;......s.......| +orderer.example.com | 00000020 bc 45 dd e3 a9 02 20 37 c4 51 60 0b 76 32 dc 4c |.E.... 7.Q`.v2.L| +orderer.example.com | 00000030 21 0b c1 84 7b 56 66 d6 b6 12 78 1a 7a 3e 3e 75 |!...{Vf...x.z>>u| +orderer.example.com | 00000040 44 30 29 2d 33 fa 75 |D0)-3.u| +orderer.example.com | 2018-01-14 11:47:06.544 UTC [cauthdsl] func2 -> DEBU 10ef 0xc420026218 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:06.544 UTC [cauthdsl] func1 -> DEBU 10f0 0xc420026218 gate 1515930426542374364 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:06.544 UTC [orderer/common/sigfilter] Apply -> DEBU 10f1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +orderer.example.com | 2018-01-14 11:47:06.544 UTC [orderer/common/deliver] Handle -> DEBU 10f2 [channel: testchainid] Received seekInfo (0xc4201dd160) start: > stop: > +orderer.example.com | 2018-01-14 11:47:06.545 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10f3 retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-14 11:47:06.545 UTC [fsblkstorage] newBlockfileStream -> DEBU 10f4 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +orderer.example.com | 2018-01-14 11:47:06.545 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f5 Remaining bytes=[14606], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:06.545 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f6 Returning blockbytes - length=[14604], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +orderer.example.com | 2018-01-14 11:47:06.545 UTC [orderer/common/deliver] Handle -> DEBU 10f7 [channel: testchainid] Delivering block for (0xc4201dd160) +orderer.example.com | 2018-01-14 11:47:06.546 UTC [orderer/common/deliver] Handle -> DEBU 10f8 [channel: testchainid] Done delivering for (0xc4201dd160), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:06.546 UTC [orderer/common/deliver] Handle -> DEBU 10f9 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.547 UTC [policies] GetPolicy -> DEBU 10fa Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:06.547 UTC [cauthdsl] func1 -> DEBU 10fb 0xc420026258 gate 1515930426547347864 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.547 UTC [cauthdsl] func2 -> DEBU 10fc 0xc420026258 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.547 UTC [cauthdsl] func2 -> DEBU 10fd 0xc420026258 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.548 UTC [msp/identity] newIdentity -> DEBU 10fe Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.548 UTC [msp] SatisfiesPrincipal -> DEBU 10ff Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:06.548 UTC [msp] Validate -> DEBU 1100 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:06.549 UTC [cauthdsl] func2 -> DEBU 1101 0xc420026258 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:06.549 UTC [msp/identity] Verify -> DEBU 1102 Verify: digest = 00000000 2e eb d4 87 6f a4 fa 0a 53 ca 3c 45 dc 0d ce 15 |....o...S. DEBU 1103 Verify: sig = 00000000 30 45 02 21 00 f5 be 6d 92 1c 0d d0 8f c8 0e 41 |0E.!...m.......A| +orderer.example.com | 00000010 d9 f1 5f a9 24 34 ed 54 24 2e c0 89 dd e7 4a ca |.._.$4.T$.....J.| +orderer.example.com | 00000020 81 19 d1 e0 81 02 20 70 38 55 7e 60 de d8 6f bf |...... p8U~`..o.| +orderer.example.com | 00000030 83 02 66 1b 53 33 77 0a 5f 25 07 08 f9 6c 80 f7 |..f.S3w._%...l..| +orderer.example.com | 00000040 77 8f 24 61 66 ee 4f |w.$af.O| +orderer.example.com | 2018-01-14 11:47:06.549 UTC [cauthdsl] func2 -> DEBU 1104 0xc420026258 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:06.549 UTC [cauthdsl] func1 -> DEBU 1105 0xc420026258 gate 1515930426547347864 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:06.549 UTC [orderer/common/sigfilter] Apply -> DEBU 1106 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +orderer.example.com | 2018-01-14 11:47:06.550 UTC [orderer/common/deliver] Handle -> DEBU 1107 [channel: testchainid] Received seekInfo (0xc420042680) start: > stop: > +orderer.example.com | 2018-01-14 11:47:06.550 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1108 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-14 11:47:06.550 UTC [fsblkstorage] newBlockfileStream -> DEBU 1109 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-14 11:47:06.550 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 110a Remaining bytes=[23688], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:06.550 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 110b Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-14 11:47:06.550 UTC [orderer/common/deliver] Handle -> DEBU 110c [channel: testchainid] Delivering block for (0xc420042680) +orderer.example.com | 2018-01-14 11:47:06.551 UTC [orderer/common/deliver] Handle -> DEBU 110d [channel: testchainid] Done delivering for (0xc420042680), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:06.551 UTC [orderer/common/deliver] Handle -> DEBU 110e Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.555 UTC [orderer/common/deliver] Handle -> WARN 110f Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:06.556 UTC [orderer/main] func1 -> DEBU 1110 Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:06.675 UTC [orderer/main] Deliver -> DEBU 1111 Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:06.675 UTC [orderer/common/deliver] Handle -> DEBU 1112 Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:06.675 UTC [orderer/common/deliver] Handle -> DEBU 1113 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.676 UTC [policies] GetPolicy -> DEBU 1114 Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:06.676 UTC [cauthdsl] func1 -> DEBU 1115 0xc4200262a0 gate 1515930426676661864 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.676 UTC [cauthdsl] func2 -> DEBU 1116 0xc4200262a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.676 UTC [cauthdsl] func2 -> DEBU 1117 0xc4200262a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.677 UTC [msp/identity] newIdentity -> DEBU 1118 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.677 UTC [msp] SatisfiesPrincipal -> DEBU 1119 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:06.677 UTC [msp] Validate -> DEBU 111a MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:06.678 UTC [cauthdsl] func2 -> DEBU 111b 0xc4200262a0 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:06.678 UTC [msp/identity] Verify -> DEBU 111c Verify: digest = 00000000 28 fc 06 6d dd 6f 90 ae 5a 80 a7 7c de f4 38 36 |(..m.o..Z..|..86| +orderer.example.com | 00000010 5c b1 fa ba 79 d9 4d 86 e0 11 2a 42 81 89 3c 7e |\...y.M...*B..<~| +orderer.example.com | 2018-01-14 11:47:06.678 UTC [msp/identity] Verify -> DEBU 111d Verify: sig = 00000000 30 45 02 21 00 e9 ab 24 7c f5 27 24 72 10 27 d1 |0E.!...$|.'$r.'.| +orderer.example.com | 00000010 eb 44 72 3c 8c fe bf 58 ea e5 3a 4f 02 8a d7 84 |.Dr<...X..:O....| +orderer.example.com | 00000020 c2 a5 2e 3a e4 02 20 44 a5 e8 d5 42 1a 0a 9b ff |...:.. D...B....| +orderer.example.com | 00000030 bd 8c 8e c4 ee 37 95 0b b4 00 da 06 f7 cf 39 0e |.....7........9.| +orderer.example.com | 00000040 99 05 b4 57 80 de f9 |...W...| +orderer.example.com | 2018-01-14 11:47:06.678 UTC [cauthdsl] func2 -> DEBU 111e 0xc4200262a0 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:06.678 UTC [cauthdsl] func1 -> DEBU 111f 0xc4200262a0 gate 1515930426676661864 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:06.678 UTC [orderer/common/sigfilter] Apply -> DEBU 1120 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +orderer.example.com | 2018-01-14 11:47:06.678 UTC [orderer/common/deliver] Handle -> DEBU 1121 [channel: testchainid] Received seekInfo (0xc4202e5920) start: > stop: > +orderer.example.com | 2018-01-14 11:47:06.678 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1122 retrieveBlockByNumber() - blockNum = [0] +orderer.example.com | 2018-01-14 11:47:06.678 UTC [fsblkstorage] newBlockfileStream -> DEBU 1123 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | 2018-01-14 11:47:06.679 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1124 Remaining bytes=[23688], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:06.679 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1125 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | 2018-01-14 11:47:06.679 UTC [orderer/common/deliver] Handle -> DEBU 1126 [channel: testchainid] Delivering block for (0xc4202e5920) +orderer.example.com | 2018-01-14 11:47:06.679 UTC [orderer/common/deliver] Handle -> DEBU 1127 [channel: testchainid] Done delivering for (0xc4202e5920), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:06.679 UTC [orderer/common/deliver] Handle -> DEBU 1128 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.683 UTC [orderer/common/deliver] Handle -> WARN 1129 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:06.683 UTC [orderer/main] func1 -> DEBU 112a Closing Deliver stream +orderer.example.com | 2018-01-14 11:47:06.880 UTC [orderer/main] Deliver -> DEBU 112b Starting new Deliver handler +orderer.example.com | 2018-01-14 11:47:06.880 UTC [orderer/common/deliver] Handle -> DEBU 112c Starting new deliver loop +orderer.example.com | 2018-01-14 11:47:06.880 UTC [orderer/common/deliver] Handle -> DEBU 112d Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.881 UTC [policies] GetPolicy -> DEBU 112e Returning policy Readers for evaluation +orderer.example.com | 2018-01-14 11:47:06.881 UTC [cauthdsl] func1 -> DEBU 112f 0xc420150d70 gate 1515930426881595664 evaluation starts +orderer.example.com | 2018-01-14 11:47:06.881 UTC [cauthdsl] func2 -> DEBU 1130 0xc420150d70 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | 2018-01-14 11:47:06.882 UTC [cauthdsl] func2 -> DEBU 1131 0xc420150d70 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +orderer.example.com | 2018-01-14 11:47:06.883 UTC [msp/identity] newIdentity -> DEBU 1132 Creating identity instance for ID -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +orderer.example.com | yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +orderer.example.com | TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +orderer.example.com | EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | 2018-01-14 11:47:06.883 UTC [msp] SatisfiesPrincipal -> DEBU 1133 Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | 2018-01-14 11:47:06.883 UTC [msp] Validate -> DEBU 1134 MSP OrdererMSP validating identity +orderer.example.com | 2018-01-14 11:47:06.883 UTC [cauthdsl] func2 -> DEBU 1135 0xc420150d70 principal matched by identity 0 +orderer.example.com | 2018-01-14 11:47:06.884 UTC [msp/identity] Verify -> DEBU 1136 Verify: digest = 00000000 09 25 19 ac 6f 93 7e a5 2f dc f2 0b 77 59 8e a0 |.%..o.~./...wY..| +orderer.example.com | 00000010 de a2 68 bf a4 24 f1 ad 7c ce 42 5b a1 ae 95 3d |..h..$..|.B[...=| +orderer.example.com | 2018-01-14 11:47:06.884 UTC [msp/identity] Verify -> DEBU 1137 Verify: sig = 00000000 30 44 02 20 53 81 eb bd 1b 37 67 b9 52 e4 1f f7 |0D. S....7g.R...| +orderer.example.com | 00000010 9d 0d 1a 00 5a 43 3a 6e fb 7a 6f 0b 19 b2 37 93 |....ZC:n.zo...7.| +orderer.example.com | 00000020 58 1f ed 3b 02 20 3f 62 3b 26 6a 1e 0f 83 a2 61 |X..;. ?b;&j....a| +orderer.example.com | 00000030 7d 08 af 53 e7 b1 c8 37 65 ef 61 ff e5 fb 06 5f |}..S...7e.a...._| +orderer.example.com | 00000040 5e c1 fc 3b be 72 |^..;.r| +orderer.example.com | 2018-01-14 11:47:06.884 UTC [cauthdsl] func2 -> DEBU 1138 0xc420150d70 principal evaluation succeeds for identity 0 +orderer.example.com | 2018-01-14 11:47:06.884 UTC [cauthdsl] func1 -> DEBU 1139 0xc420150d70 gate 1515930426881595664 evaluation succeeds +orderer.example.com | 2018-01-14 11:47:06.884 UTC [orderer/common/sigfilter] Apply -> DEBU 113a Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +orderer.example.com | 2018-01-14 11:47:06.885 UTC [orderer/common/deliver] Handle -> DEBU 113b [channel: testchainid] Received seekInfo (0xc420a1dbe0) start: > stop: > +orderer.example.com | 2018-01-14 11:47:06.885 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 113c retrieveBlockByNumber() - blockNum = [1] +orderer.example.com | 2018-01-14 11:47:06.885 UTC [fsblkstorage] newBlockfileStream -> DEBU 113d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +orderer.example.com | 2018-01-14 11:47:06.885 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 113e Remaining bytes=[14606], Going to peek [8] bytes +orderer.example.com | 2018-01-14 11:47:06.885 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 113f Returning blockbytes - length=[14604], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +orderer.example.com | 2018-01-14 11:47:06.886 UTC [orderer/common/deliver] Handle -> DEBU 1140 [channel: testchainid] Delivering block for (0xc420a1dbe0) +orderer.example.com | 2018-01-14 11:47:06.889 UTC [orderer/common/deliver] Handle -> DEBU 1141 [channel: testchainid] Done delivering for (0xc420a1dbe0), waiting for new SeekInfo +orderer.example.com | 2018-01-14 11:47:06.889 UTC [orderer/common/deliver] Handle -> DEBU 1142 Attempting to read seek info message +orderer.example.com | 2018-01-14 11:47:06.896 UTC [orderer/common/deliver] Handle -> WARN 1143 Error reading from stream: rpc error: code = Canceled desc = context canceled +orderer.example.com | 2018-01-14 11:47:06.896 UTC [orderer/main] func1 -> DEBU 1144 Closing Deliver stream diff --git a/hyperledger_fabric/v1.0.2/solo/logs/dev_orderer.log b/hyperledger_fabric/v1.0.2/solo/logs/dev_orderer.log index c9cc05c6..3dabf562 100644 --- a/hyperledger_fabric/v1.0.2/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/v1.0.2/solo/logs/dev_orderer.log @@ -1,29 +1,29 @@ -2018-01-04 01:50:54.213 UTC [orderer/main] main -> INFO 001 Starting orderer: +2018-01-14 11:45:28.113 UTC [orderer/main] main -> INFO 001 Starting orderer: Version: 1.0.2 Go version: go1.7.5 OS/Arch: linux/amd64 -2018-01-04 01:50:54.223 UTC [orderer/main] initializeSecureServerConfig -> INFO 002 Starting orderer with TLS enabled -2018-01-04 01:50:54.247 UTC [bccsp_sw] openKeyStore -> DEBU 003 KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -2018-01-04 01:50:54.247 UTC [bccsp] initBCCSP -> DEBU 004 Initialize BCCSP [SW] -2018-01-04 01:50:54.247 UTC [msp] getPemMaterialFromDir -> DEBU 005 Reading directory /var/hyperledger/orderer/msp/signcerts -2018-01-04 01:50:54.251 UTC [msp] getPemMaterialFromDir -> DEBU 006 Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -2018-01-04 01:50:54.253 UTC [msp] getPemMaterialFromDir -> DEBU 007 Reading directory /var/hyperledger/orderer/msp/cacerts -2018-01-04 01:50:54.255 UTC [msp] getPemMaterialFromDir -> DEBU 008 Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -2018-01-04 01:50:54.258 UTC [msp] getPemMaterialFromDir -> DEBU 009 Reading directory /var/hyperledger/orderer/msp/admincerts -2018-01-04 01:50:54.260 UTC [msp] getPemMaterialFromDir -> DEBU 00a Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -2018-01-04 01:50:54.262 UTC [msp] getPemMaterialFromDir -> DEBU 00b Reading directory /var/hyperledger/orderer/msp/intermediatecerts -2018-01-04 01:50:54.262 UTC [msp] getMspConfig -> DEBU 00c Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -2018-01-04 01:50:54.262 UTC [msp] getPemMaterialFromDir -> DEBU 00d Reading directory /var/hyperledger/orderer/msp/tlscacerts -2018-01-04 01:50:54.264 UTC [msp] getPemMaterialFromDir -> DEBU 00e Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -2018-01-04 01:50:54.265 UTC [msp] getPemMaterialFromDir -> DEBU 00f Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -2018-01-04 01:50:54.266 UTC [msp] getMspConfig -> DEBU 010 TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -2018-01-04 01:50:54.266 UTC [msp] getPemMaterialFromDir -> DEBU 011 Reading directory /var/hyperledger/orderer/msp/crls -2018-01-04 01:50:54.266 UTC [msp] getMspConfig -> DEBU 012 crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -2018-01-04 01:50:54.266 UTC [msp] getMspConfig -> DEBU 013 MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -2018-01-04 01:50:54.267 UTC [msp] NewBccspMsp -> DEBU 014 Creating BCCSP-based MSP instance -2018-01-04 01:50:54.267 UTC [msp] GetLocalMSP -> DEBU 015 Created new local MSP -2018-01-04 01:50:54.267 UTC [msp] Setup -> DEBU 016 Setting up MSP instance OrdererMSP -2018-01-04 01:50:54.267 UTC [msp/identity] newIdentity -> DEBU 017 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.124 UTC [orderer/main] initializeSecureServerConfig -> INFO 002 Starting orderer with TLS enabled +2018-01-14 11:45:28.162 UTC [bccsp_sw] openKeyStore -> DEBU 003 KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +2018-01-14 11:45:28.162 UTC [bccsp] initBCCSP -> DEBU 004 Initialize BCCSP [SW] +2018-01-14 11:45:28.163 UTC [msp] getPemMaterialFromDir -> DEBU 005 Reading directory /var/hyperledger/orderer/msp/signcerts +2018-01-14 11:45:28.167 UTC [msp] getPemMaterialFromDir -> DEBU 006 Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +2018-01-14 11:45:28.170 UTC [msp] getPemMaterialFromDir -> DEBU 007 Reading directory /var/hyperledger/orderer/msp/cacerts +2018-01-14 11:45:28.174 UTC [msp] getPemMaterialFromDir -> DEBU 008 Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +2018-01-14 11:45:28.177 UTC [msp] getPemMaterialFromDir -> DEBU 009 Reading directory /var/hyperledger/orderer/msp/admincerts +2018-01-14 11:45:28.180 UTC [msp] getPemMaterialFromDir -> DEBU 00a Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +2018-01-14 11:45:28.184 UTC [msp] getPemMaterialFromDir -> DEBU 00b Reading directory /var/hyperledger/orderer/msp/intermediatecerts +2018-01-14 11:45:28.185 UTC [msp] getMspConfig -> DEBU 00c Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +2018-01-14 11:45:28.185 UTC [msp] getPemMaterialFromDir -> DEBU 00d Reading directory /var/hyperledger/orderer/msp/tlscacerts +2018-01-14 11:45:28.187 UTC [msp] getPemMaterialFromDir -> DEBU 00e Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +2018-01-14 11:45:28.190 UTC [msp] getPemMaterialFromDir -> DEBU 00f Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +2018-01-14 11:45:28.191 UTC [msp] getMspConfig -> DEBU 010 TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +2018-01-14 11:45:28.191 UTC [msp] getPemMaterialFromDir -> DEBU 011 Reading directory /var/hyperledger/orderer/msp/crls +2018-01-14 11:45:28.191 UTC [msp] getMspConfig -> DEBU 012 crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +2018-01-14 11:45:28.191 UTC [msp] getMspConfig -> DEBU 013 MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +2018-01-14 11:45:28.192 UTC [msp] NewBccspMsp -> DEBU 014 Creating BCCSP-based MSP instance +2018-01-14 11:45:28.192 UTC [msp] GetLocalMSP -> DEBU 015 Created new local MSP +2018-01-14 11:45:28.192 UTC [msp] Setup -> DEBU 016 Setting up MSP instance OrdererMSP +2018-01-14 11:45:28.192 UTC [msp/identity] newIdentity -> DEBU 017 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -37,7 +37,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:54.268 UTC [msp/identity] newIdentity -> DEBU 018 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.192 UTC [msp/identity] newIdentity -> DEBU 018 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -50,7 +50,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:54.268 UTC [msp/identity] newIdentity -> DEBU 019 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.193 UTC [msp/identity] newIdentity -> DEBU 019 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -63,7 +63,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:54.269 UTC [msp/identity] newIdentity -> DEBU 01a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.193 UTC [msp/identity] newIdentity -> DEBU 01a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -76,8 +76,8 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-04 01:50:54.271 UTC [bccsp_sw] loadPrivateKey -> DEBU 01b Loading private key [0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e] at [/var/hyperledger/orderer/msp/keystore/0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e_sk]... -2018-01-04 01:50:54.273 UTC [msp/identity] newIdentity -> DEBU 01c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.196 UTC [bccsp_sw] loadPrivateKey -> DEBU 01b Loading private key [0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e] at [/var/hyperledger/orderer/msp/keystore/0edbe541bf5502a74172e6e52540bc522e7cbcdf9ba374fad803a4c87fd2e14e_sk]... +2018-01-14 11:45:28.198 UTC [msp/identity] newIdentity -> DEBU 01c Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -90,114 +90,114 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-04 01:50:54.274 UTC [msp] Validate -> DEBU 01d MSP OrdererMSP validating identity -2018-01-04 01:50:54.274 UTC [orderer/main] createLedgerFactory -> DEBU 01e Ledger dir: /var/hyperledger/production/orderer -2018-01-04 01:50:54.274 UTC [kvledger.util] CreateDirIfMissing -> DEBU 01f CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -2018-01-04 01:50:54.274 UTC [kvledger.util] logDirStatus -> DEBU 020 Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -2018-01-04 01:50:54.274 UTC [kvledger.util] logDirStatus -> DEBU 021 After creating dir - [/var/hyperledger/production/orderer/index/] exists -2018-01-04 01:50:54.281 UTC [fsblkstorage] newBlockfileMgr -> DEBU 022 newBlockfileMgr() initializing file-based block storage for ledger: testchainid -2018-01-04 01:50:54.281 UTC [kvledger.util] CreateDirIfMissing -> DEBU 023 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -2018-01-04 01:50:54.281 UTC [kvledger.util] logDirStatus -> DEBU 024 Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -2018-01-04 01:50:54.282 UTC [kvledger.util] logDirStatus -> DEBU 025 After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -2018-01-04 01:50:54.283 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 026 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -2018-01-04 01:50:54.283 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 027 status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] -2018-01-04 01:50:54.284 UTC [fsblkstorage] newBlockIndex -> DEBU 028 newBlockIndex() - indexItems:[[BlockNum]] -2018-01-04 01:50:54.284 UTC [fsblkstorage] newBlockfileStream -> DEBU 029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-04 01:50:54.284 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02a Finished reading file number [0] -2018-01-04 01:50:54.284 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02b blockbytes [0] read from file [0] -2018-01-04 01:50:54.286 UTC [fsblkstorage] indexBlock -> DEBU 02c Indexing block [blockNum=0, blockHash=[]byte{0x89, 0xd5, 0xd2, 0x88, 0xd1, 0xb6, 0xc3, 0x25, 0x91, 0xfb, 0x5e, 0x94, 0x7f, 0x80, 0xeb, 0xd3, 0x7d, 0xdd, 0x80, 0xdf, 0x56, 0xc0, 0xb2, 0xfc, 0xe3, 0x98, 0x5f, 0x12, 0xd8, 0x6b, 0xb0, 0x21} txOffsets= +2018-01-14 11:45:28.199 UTC [msp] Validate -> DEBU 01d MSP OrdererMSP validating identity +2018-01-14 11:45:28.199 UTC [orderer/main] createLedgerFactory -> DEBU 01e Ledger dir: /var/hyperledger/production/orderer +2018-01-14 11:45:28.199 UTC [kvledger.util] CreateDirIfMissing -> DEBU 01f CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +2018-01-14 11:45:28.199 UTC [kvledger.util] logDirStatus -> DEBU 020 Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +2018-01-14 11:45:28.199 UTC [kvledger.util] logDirStatus -> DEBU 021 After creating dir - [/var/hyperledger/production/orderer/index/] exists +2018-01-14 11:45:28.213 UTC [fsblkstorage] newBlockfileMgr -> DEBU 022 newBlockfileMgr() initializing file-based block storage for ledger: testchainid +2018-01-14 11:45:28.213 UTC [kvledger.util] CreateDirIfMissing -> DEBU 023 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +2018-01-14 11:45:28.213 UTC [kvledger.util] logDirStatus -> DEBU 024 Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +2018-01-14 11:45:28.213 UTC [kvledger.util] logDirStatus -> DEBU 025 After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +2018-01-14 11:45:28.215 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 026 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +2018-01-14 11:45:28.216 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 027 status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] +2018-01-14 11:45:28.216 UTC [fsblkstorage] newBlockIndex -> DEBU 028 newBlockIndex() - indexItems:[[BlockNum]] +2018-01-14 11:45:28.216 UTC [fsblkstorage] newBlockfileStream -> DEBU 029 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-14 11:45:28.216 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02a Finished reading file number [0] +2018-01-14 11:45:28.216 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 02b blockbytes [0] read from file [0] +2018-01-14 11:45:28.218 UTC [fsblkstorage] indexBlock -> DEBU 02c Indexing block [blockNum=0, blockHash=[]byte{0x89, 0xd5, 0xd2, 0x88, 0xd1, 0xb6, 0xc3, 0x25, 0x91, 0xfb, 0x5e, 0x94, 0x7f, 0x80, 0xeb, 0xd3, 0x7d, 0xdd, 0x80, 0xdf, 0x56, 0xc0, 0xb2, 0xfc, 0xe3, 0x98, 0x5f, 0x12, 0xd8, 0x6b, 0xb0, 0x21} txOffsets= txId=39266883a94d0b87be6c51e2f16ce943b4d54e117e366bcac9318c13c284ab01 locPointer=offset=38, bytesLength=9039 ] -2018-01-04 01:50:54.286 UTC [fsblkstorage] updateCheckpoint -> DEBU 02d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] -2018-01-04 01:50:54.286 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 02e retrieveBlockByNumber() - blockNum = [0] -2018-01-04 01:50:54.286 UTC [fsblkstorage] newBlockfileStream -> DEBU 02f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-04 01:50:54.286 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 030 Remaining bytes=[9082], Going to peek [8] bytes -2018-01-04 01:50:54.286 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 031 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-04 01:50:54.287 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 032 retrieveBlockByNumber() - blockNum = [0] -2018-01-04 01:50:54.287 UTC [fsblkstorage] newBlockfileStream -> DEBU 033 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-04 01:50:54.287 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 034 Remaining bytes=[9082], Going to peek [8] bytes -2018-01-04 01:50:54.287 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 035 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-04 01:50:54.287 UTC [common/config] NewStandardValues -> DEBU 036 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:54.287 UTC [common/config] initializeProtosStruct -> DEBU 037 Processing field: HashingAlgorithm -2018-01-04 01:50:54.287 UTC [common/config] initializeProtosStruct -> DEBU 038 Processing field: BlockDataHashingStructure -2018-01-04 01:50:54.287 UTC [common/config] initializeProtosStruct -> DEBU 039 Processing field: OrdererAddresses -2018-01-04 01:50:54.287 UTC [common/config] initializeProtosStruct -> DEBU 03a Processing field: Consortium -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03b Adding to config map: [Groups] /Channel -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03c Adding to config map: [Groups] /Channel/Consortiums -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03d Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03e Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 03f Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 040 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 041 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 042 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -2018-01-04 01:50:54.288 UTC [common/configtx] addToMap -> DEBU 043 Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -2018-01-04 01:50:54.289 UTC [common/configtx] addToMap -> DEBU 044 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -2018-01-04 01:50:54.289 UTC [common/configtx] addToMap -> DEBU 045 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -2018-01-04 01:50:54.289 UTC [common/configtx] addToMap -> DEBU 046 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 047 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 048 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 049 Adding to config map: [Policy] /Channel/Consortiums/Admins -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04a Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04b Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04c Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 04f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 050 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 051 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 052 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 053 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 054 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 055 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 056 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 057 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 058 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 059 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 05a Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 05b Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 05c Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:54.290 UTC [common/configtx] addToMap -> DEBU 05d Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:54.291 UTC [common/configtx] processConfig -> DEBU 05e Beginning new config for channel testchainid -2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 05f Initializing protos for *config.ChannelProtos -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 060 Processing field: HashingAlgorithm -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 061 Processing field: BlockDataHashingStructure -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 062 Processing field: OrdererAddresses -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 063 Processing field: Consortium -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 064 Proposed new policy Readers for Channel -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 065 Proposed new policy Writers for Channel -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 066 Proposed new policy Admins for Channel -2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 067 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 068 Processing field: ConsensusType -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 069 Processing field: BatchSize -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 06a Processing field: BatchTimeout -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 06b Processing field: KafkaBrokers -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 06c Processing field: ChannelRestrictions -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 06d Proposed new policy Writers for Orderer -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 06e Proposed new policy Admins for Orderer -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 06f Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 070 Proposed new policy Readers for Orderer -2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 071 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 072 Processing field: MSP -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 073 Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 074 Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 075 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 076 Proposed new policy Admins for Consortiums -2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 077 Initializing protos for *config.ConsortiumProtos -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 078 Processing field: ChannelCreationPolicy -2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 079 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 07a Processing field: MSP -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 07b Proposed new policy Readers for Org1MSP -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 07c Proposed new policy Writers for Org1MSP -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 07d Proposed new policy Admins for Org1MSP -2018-01-04 01:50:54.291 UTC [common/config] NewStandardValues -> DEBU 07e Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:54.291 UTC [common/config] initializeProtosStruct -> DEBU 07f Processing field: MSP -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 080 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 081 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:54.291 UTC [policies] ProposePolicy -> DEBU 082 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:54.291 UTC [common/config] validateMSP -> DEBU 083 Setting up MSP for org OrdererOrg -2018-01-04 01:50:54.291 UTC [msp] NewBccspMsp -> DEBU 084 Creating BCCSP-based MSP instance -2018-01-04 01:50:54.291 UTC [msp] Setup -> DEBU 085 Setting up MSP instance OrdererMSP -2018-01-04 01:50:54.291 UTC [msp/identity] newIdentity -> DEBU 086 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.218 UTC [fsblkstorage] updateCheckpoint -> DEBU 02d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9082], isChainEmpty=[false], lastBlockNumber=[0] +2018-01-14 11:45:28.218 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 02e retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:45:28.218 UTC [fsblkstorage] newBlockfileStream -> DEBU 02f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-14 11:45:28.218 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 030 Remaining bytes=[9082], Going to peek [8] bytes +2018-01-14 11:45:28.218 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 031 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:45:28.219 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 032 retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:45:28.219 UTC [fsblkstorage] newBlockfileStream -> DEBU 033 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-14 11:45:28.219 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 034 Remaining bytes=[9082], Going to peek [8] bytes +2018-01-14 11:45:28.219 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 035 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:45:28.219 UTC [common/config] NewStandardValues -> DEBU 036 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:28.219 UTC [common/config] initializeProtosStruct -> DEBU 037 Processing field: HashingAlgorithm +2018-01-14 11:45:28.219 UTC [common/config] initializeProtosStruct -> DEBU 038 Processing field: BlockDataHashingStructure +2018-01-14 11:45:28.219 UTC [common/config] initializeProtosStruct -> DEBU 039 Processing field: OrdererAddresses +2018-01-14 11:45:28.219 UTC [common/config] initializeProtosStruct -> DEBU 03a Processing field: Consortium +2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03b Adding to config map: [Groups] /Channel +2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03c Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03d Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03e Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 03f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 040 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:28.219 UTC [common/configtx] addToMap -> DEBU 041 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:28.220 UTC [common/configtx] addToMap -> DEBU 042 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:28.220 UTC [common/configtx] addToMap -> DEBU 043 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:28.220 UTC [common/configtx] addToMap -> DEBU 044 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:28.220 UTC [common/configtx] addToMap -> DEBU 045 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 046 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 047 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 048 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 049 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04a Adding to config map: [Groups] /Channel/Consortiums +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04b Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04c Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04d Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04e Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 04f Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 050 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 051 Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 052 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 053 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 054 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +2018-01-14 11:45:28.223 UTC [common/configtx] addToMap -> DEBU 055 Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 056 Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 057 Adding to config map: [Policy] /Channel/Consortiums/Admins +2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 058 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 059 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:28.224 UTC [common/configtx] addToMap -> DEBU 05a Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:28.225 UTC [common/configtx] addToMap -> DEBU 05b Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:28.225 UTC [common/configtx] addToMap -> DEBU 05c Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:28.225 UTC [common/configtx] addToMap -> DEBU 05d Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:28.225 UTC [common/configtx] processConfig -> DEBU 05e Beginning new config for channel testchainid +2018-01-14 11:45:28.225 UTC [common/config] NewStandardValues -> DEBU 05f Initializing protos for *config.ChannelProtos +2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 060 Processing field: HashingAlgorithm +2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 061 Processing field: BlockDataHashingStructure +2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 062 Processing field: OrdererAddresses +2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 063 Processing field: Consortium +2018-01-14 11:45:28.225 UTC [policies] ProposePolicy -> DEBU 064 Proposed new policy Readers for Channel +2018-01-14 11:45:28.225 UTC [policies] ProposePolicy -> DEBU 065 Proposed new policy Writers for Channel +2018-01-14 11:45:28.225 UTC [policies] ProposePolicy -> DEBU 066 Proposed new policy Admins for Channel +2018-01-14 11:45:28.225 UTC [common/config] NewStandardValues -> DEBU 067 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 068 Processing field: ConsensusType +2018-01-14 11:45:28.225 UTC [common/config] initializeProtosStruct -> DEBU 069 Processing field: BatchSize +2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 06a Processing field: BatchTimeout +2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 06b Processing field: KafkaBrokers +2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 06c Processing field: ChannelRestrictions +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 06d Proposed new policy Readers for Orderer +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 06e Proposed new policy Writers for Orderer +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 06f Proposed new policy Admins for Orderer +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 070 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:28.226 UTC [common/config] NewStandardValues -> DEBU 071 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 072 Processing field: MSP +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 073 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 074 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 075 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 076 Proposed new policy Admins for Consortiums +2018-01-14 11:45:28.226 UTC [common/config] NewStandardValues -> DEBU 077 Initializing protos for *config.ConsortiumProtos +2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 078 Processing field: ChannelCreationPolicy +2018-01-14 11:45:28.226 UTC [common/config] NewStandardValues -> DEBU 079 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 07a Processing field: MSP +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 07b Proposed new policy Writers for Org2MSP +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 07c Proposed new policy Admins for Org2MSP +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 07d Proposed new policy Readers for Org2MSP +2018-01-14 11:45:28.226 UTC [common/config] NewStandardValues -> DEBU 07e Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:28.226 UTC [common/config] initializeProtosStruct -> DEBU 07f Processing field: MSP +2018-01-14 11:45:28.226 UTC [policies] ProposePolicy -> DEBU 080 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:28.227 UTC [policies] ProposePolicy -> DEBU 081 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:28.227 UTC [policies] ProposePolicy -> DEBU 082 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:28.227 UTC [common/config] validateMSP -> DEBU 083 Setting up MSP for org OrdererOrg +2018-01-14 11:45:28.227 UTC [msp] NewBccspMsp -> DEBU 084 Creating BCCSP-based MSP instance +2018-01-14 11:45:28.227 UTC [msp] Setup -> DEBU 085 Setting up MSP instance OrdererMSP +2018-01-14 11:45:28.227 UTC [msp/identity] newIdentity -> DEBU 086 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -211,7 +211,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:54.292 UTC [msp/identity] newIdentity -> DEBU 087 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.227 UTC [msp/identity] newIdentity -> DEBU 087 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -224,7 +224,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:54.292 UTC [msp/identity] newIdentity -> DEBU 088 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.228 UTC [msp/identity] newIdentity -> DEBU 088 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -237,58 +237,11 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:54.292 UTC [msp] Validate -> DEBU 089 MSP OrdererMSP validating identity -2018-01-04 01:50:54.293 UTC [common/config] validateMSP -> DEBU 08a Setting up MSP for org Org1MSP -2018-01-04 01:50:54.293 UTC [msp] NewBccspMsp -> DEBU 08b Creating BCCSP-based MSP instance -2018-01-04 01:50:54.293 UTC [msp] Setup -> DEBU 08c Setting up MSP instance Org1MSP -2018-01-04 01:50:54.293 UTC [msp/identity] newIdentity -> DEBU 08d Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-04 01:50:54.293 UTC [msp/identity] newIdentity -> DEBU 08e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:50:54.293 UTC [msp/identity] newIdentity -> DEBU 08f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:50:54.294 UTC [msp] Validate -> DEBU 090 MSP Org1MSP validating identity -2018-01-04 01:50:54.294 UTC [common/config] validateMSP -> DEBU 091 Setting up MSP for org Org2MSP -2018-01-04 01:50:54.294 UTC [msp] NewBccspMsp -> DEBU 092 Creating BCCSP-based MSP instance -2018-01-04 01:50:54.294 UTC [msp] Setup -> DEBU 093 Setting up MSP instance Org2MSP -2018-01-04 01:50:54.294 UTC [msp/identity] newIdentity -> DEBU 094 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.229 UTC [msp] Validate -> DEBU 089 MSP OrdererMSP validating identity +2018-01-14 11:45:28.229 UTC [common/config] validateMSP -> DEBU 08a Setting up MSP for org Org2MSP +2018-01-14 11:45:28.229 UTC [msp] NewBccspMsp -> DEBU 08b Creating BCCSP-based MSP instance +2018-01-14 11:45:28.229 UTC [msp] Setup -> DEBU 08c Setting up MSP instance Org2MSP +2018-01-14 11:45:28.230 UTC [msp/identity] newIdentity -> DEBU 08d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -303,7 +256,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:54.294 UTC [msp/identity] newIdentity -> DEBU 095 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.230 UTC [msp/identity] newIdentity -> DEBU 08e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -317,7 +270,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:54.294 UTC [msp/identity] newIdentity -> DEBU 096 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.230 UTC [msp/identity] newIdentity -> DEBU 08f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -331,235 +284,11 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:54.295 UTC [msp] Validate -> DEBU 097 MSP Org2MSP validating identity -2018-01-04 01:50:54.295 UTC [msp] Setup -> DEBU 098 Setting up the MSP manager (3 msps) -2018-01-04 01:50:54.295 UTC [msp] Setup -> DEBU 099 MSP manager setup complete, setup 3 msps -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 09a Returning policy Readers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 09b In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 09c Returning policy Writers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 09d In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 09e Returning policy Admins for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 09f In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a0 Returning policy Writers for evaluation -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a1 Returning policy Admins for evaluation -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a2 Returning policy Writers for evaluation -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a3 Returning policy Readers for evaluation -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a4 Returning policy Readers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0a5 In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a6 Returning policy Writers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0a7 In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0a8 Returning policy Admins for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0a9 In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0aa Returning policy Writers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0ab In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0ac Returning policy Admins for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0ad In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0ae Returning policy Readers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0af In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b0 Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b1 In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b2 Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b3 In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b4 Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b5 In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b6 Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b7 In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0b8 Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:54.295 UTC [policies] CommitProposals -> DEBU 0b9 In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums -2018-01-04 01:50:54.295 UTC [policies] GetPolicy -> DEBU 0ba Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0bb In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0bc Returning policy Writers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0bd In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0be Returning policy Admins for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0bf In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c0 Returning policy BlockValidation for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c1 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c2 Returning policy Readers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c3 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c4 Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c5 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c6 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c7 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0c8 Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0c9 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0ca Returning policy SampleConsortium/Org2MSP/Writers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0cb In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0cc Returning policy SampleConsortium/Org2MSP/Admins for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0cd In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0ce Returning policy SampleConsortium/Org2MSP/Readers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0cf In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d0 Returning policy Admins for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0d1 In commit adding relative sub-policy Consortiums/Admins to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d2 Returning policy SampleConsortium/Org1MSP/Readers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0d3 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d4 Returning policy SampleConsortium/Org1MSP/Writers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0d5 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d6 Returning policy SampleConsortium/Org1MSP/Admins for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0d7 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d8 Returning policy Readers for evaluation -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0d9 Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0da Returning policy Writers for evaluation -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0db Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0dc Returning policy Admins for evaluation -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0dd Returning policy Admins for evaluation -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0de Returning policy Readers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0df As expected, current configuration has policy '/Channel/Readers' -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0e0 Returning policy Writers for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0e1 As expected, current configuration has policy '/Channel/Writers' -2018-01-04 01:50:54.296 UTC [policies] GetPolicy -> DEBU 0e2 Returning policy Orderer/BlockValidation for evaluation -2018-01-04 01:50:54.296 UTC [policies] CommitProposals -> DEBU 0e3 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-04 01:50:54.297 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 0e4 retrieveBlockByNumber() - blockNum = [0] -2018-01-04 01:50:54.297 UTC [fsblkstorage] newBlockfileStream -> DEBU 0e5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-04 01:50:54.297 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e6 Remaining bytes=[9082], Going to peek [8] bytes -2018-01-04 01:50:54.297 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e7 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-04 01:50:54.297 UTC [orderer/multichain] newChainSupport -> DEBU 0e8 [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): -2018-01-04 01:50:54.297 UTC [orderer/multichain] NewManagerImpl -> INFO 0e9 Starting with system channel testchainid and orderer type solo -2018-01-04 01:50:54.297 UTC [orderer/main] main -> INFO 0ea Beginning to serve requests -2018-01-04 01:50:57.095 UTC [orderer/main] Deliver -> DEBU 0eb Starting new Deliver handler -2018-01-04 01:50:57.095 UTC [orderer/common/deliver] Handle -> DEBU 0ec Starting new deliver loop -2018-01-04 01:50:57.095 UTC [orderer/common/deliver] Handle -> DEBU 0ed Attempting to read seek info message -2018-01-04 01:50:57.106 UTC [orderer/main] Broadcast -> DEBU 0ee Starting new Broadcast handler -2018-01-04 01:50:57.106 UTC [orderer/common/broadcast] Handle -> DEBU 0ef Starting new broadcast loop -2018-01-04 01:50:57.106 UTC [orderer/common/broadcast] Handle -> DEBU 0f0 Preprocessing CONFIG_UPDATE -2018-01-04 01:50:57.107 UTC [orderer/configupdate] Process -> DEBU 0f1 Processing channel creation request for channel businesschannel -2018-01-04 01:50:57.107 UTC [msp] GetLocalMSP -> DEBU 0f2 Returning existing local MSP -2018-01-04 01:50:57.107 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f3 Obtaining default signing identity -2018-01-04 01:50:57.107 UTC [msp] GetLocalMSP -> DEBU 0f4 Returning existing local MSP -2018-01-04 01:50:57.107 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f5 Obtaining default signing identity -2018-01-04 01:50:57.108 UTC [msp/identity] Sign -> DEBU 0f6 Sign: plaintext: 0AB7060A1B08011A06088191B6D20522...41646D696E7310021A0641646D696E73 -2018-01-04 01:50:57.108 UTC [msp/identity] Sign -> DEBU 0f7 Sign: digest: 05CDDD3553AAF8D82EEC7C8ED22B6BD99A9CC00293EF8DAC5D5FEF66F92839DE -2018-01-04 01:50:57.108 UTC [common/config] NewStandardValues -> DEBU 0f8 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.108 UTC [common/config] initializeProtosStruct -> DEBU 0f9 Processing field: HashingAlgorithm -2018-01-04 01:50:57.108 UTC [common/config] initializeProtosStruct -> DEBU 0fa Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.108 UTC [common/config] initializeProtosStruct -> DEBU 0fb Processing field: OrdererAddresses -2018-01-04 01:50:57.108 UTC [common/config] initializeProtosStruct -> DEBU 0fc Processing field: Consortium -2018-01-04 01:50:57.109 UTC [common/configtx] addToMap -> DEBU 0fd Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.110 UTC [common/configtx] addToMap -> DEBU 0fe Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:57.110 UTC [common/configtx] addToMap -> DEBU 0ff Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:57.110 UTC [common/configtx] addToMap -> DEBU 100 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:57.111 UTC [common/configtx] addToMap -> DEBU 101 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:57.111 UTC [common/configtx] addToMap -> DEBU 102 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:57.111 UTC [common/configtx] addToMap -> DEBU 103 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:57.114 UTC [common/configtx] addToMap -> DEBU 104 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:57.115 UTC [common/configtx] addToMap -> DEBU 105 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:57.115 UTC [common/configtx] addToMap -> DEBU 106 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:57.115 UTC [common/configtx] addToMap -> DEBU 107 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:57.116 UTC [common/configtx] addToMap -> DEBU 108 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:57.116 UTC [common/configtx] addToMap -> DEBU 109 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:57.116 UTC [common/configtx] addToMap -> DEBU 10a Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:57.116 UTC [common/configtx] addToMap -> DEBU 10b Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:57.117 UTC [common/configtx] addToMap -> DEBU 10c Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.117 UTC [common/configtx] addToMap -> DEBU 10d Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.117 UTC [common/configtx] addToMap -> DEBU 10e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:57.118 UTC [common/configtx] addToMap -> DEBU 10f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:57.118 UTC [common/configtx] addToMap -> DEBU 110 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:57.118 UTC [common/configtx] addToMap -> DEBU 111 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 112 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 113 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 114 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 115 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 116 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 117 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 118 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:57.126 UTC [common/configtx] addToMap -> DEBU 119 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11a Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11b Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11c Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11d Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:57.127 UTC [common/configtx] addToMap -> DEBU 11e Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:57.127 UTC [common/configtx] processConfig -> DEBU 11f Beginning new config for channel businesschannel -2018-01-04 01:50:57.127 UTC [common/config] NewStandardValues -> DEBU 120 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.127 UTC [common/config] initializeProtosStruct -> DEBU 121 Processing field: HashingAlgorithm -2018-01-04 01:50:57.127 UTC [common/config] initializeProtosStruct -> DEBU 122 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.127 UTC [common/config] initializeProtosStruct -> DEBU 123 Processing field: OrdererAddresses -2018-01-04 01:50:57.127 UTC [common/config] initializeProtosStruct -> DEBU 124 Processing field: Consortium -2018-01-04 01:50:57.128 UTC [policies] ProposePolicy -> DEBU 125 Proposed new policy Readers for Channel -2018-01-04 01:50:57.128 UTC [policies] ProposePolicy -> DEBU 126 Proposed new policy Writers for Channel -2018-01-04 01:50:57.128 UTC [policies] ProposePolicy -> DEBU 127 Proposed new policy Admins for Channel -2018-01-04 01:50:57.128 UTC [common/config] NewStandardValues -> DEBU 128 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.128 UTC [common/config] initializeProtosStruct -> DEBU 129 Processing field: ConsensusType -2018-01-04 01:50:57.128 UTC [common/config] initializeProtosStruct -> DEBU 12a Processing field: BatchSize -2018-01-04 01:50:57.128 UTC [common/config] initializeProtosStruct -> DEBU 12b Processing field: BatchTimeout -2018-01-04 01:50:57.130 UTC [common/config] initializeProtosStruct -> DEBU 12c Processing field: KafkaBrokers -2018-01-04 01:50:57.130 UTC [common/config] initializeProtosStruct -> DEBU 12d Processing field: ChannelRestrictions -2018-01-04 01:50:57.130 UTC [policies] ProposePolicy -> DEBU 12e Proposed new policy Writers for Orderer -2018-01-04 01:50:57.130 UTC [policies] ProposePolicy -> DEBU 12f Proposed new policy Admins for Orderer -2018-01-04 01:50:57.130 UTC [policies] ProposePolicy -> DEBU 130 Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.130 UTC [policies] ProposePolicy -> DEBU 131 Proposed new policy Readers for Orderer -2018-01-04 01:50:57.130 UTC [common/config] NewStandardValues -> DEBU 132 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.131 UTC [common/config] initializeProtosStruct -> DEBU 133 Processing field: MSP -2018-01-04 01:50:57.131 UTC [policies] ProposePolicy -> DEBU 134 Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.131 UTC [policies] ProposePolicy -> DEBU 135 Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.131 UTC [policies] ProposePolicy -> DEBU 136 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.131 UTC [common/config] NewStandardValues -> DEBU 137 Initializing protos for *struct {} -2018-01-04 01:50:57.132 UTC [policies] ProposePolicy -> DEBU 138 Proposed new policy ChannelCreationPolicy for Application -2018-01-04 01:50:57.132 UTC [common/config] NewStandardValues -> DEBU 139 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.132 UTC [common/config] initializeProtosStruct -> DEBU 13a Processing field: MSP -2018-01-04 01:50:57.132 UTC [common/config] NewStandardValues -> DEBU 13b Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.132 UTC [common/config] initializeProtosStruct -> DEBU 13c Processing field: AnchorPeers -2018-01-04 01:50:57.132 UTC [common/config] NewStandardValues -> DEBU 13d Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.132 UTC [common/config] initializeProtosStruct -> DEBU 13e Processing field: MSP -2018-01-04 01:50:57.133 UTC [policies] ProposePolicy -> DEBU 13f Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.134 UTC [policies] ProposePolicy -> DEBU 140 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.134 UTC [policies] ProposePolicy -> DEBU 141 Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.134 UTC [common/config] NewStandardValues -> DEBU 142 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.134 UTC [common/config] initializeProtosStruct -> DEBU 143 Processing field: MSP -2018-01-04 01:50:57.134 UTC [common/config] NewStandardValues -> DEBU 144 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.135 UTC [common/config] initializeProtosStruct -> DEBU 145 Processing field: AnchorPeers -2018-01-04 01:50:57.135 UTC [common/config] NewStandardValues -> DEBU 146 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.135 UTC [common/config] initializeProtosStruct -> DEBU 147 Processing field: MSP -2018-01-04 01:50:57.135 UTC [policies] ProposePolicy -> DEBU 148 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.136 UTC [policies] ProposePolicy -> DEBU 149 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.136 UTC [policies] ProposePolicy -> DEBU 14a Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.137 UTC [common/config] validateMSP -> DEBU 14b Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.137 UTC [msp] NewBccspMsp -> DEBU 14c Creating BCCSP-based MSP instance -2018-01-04 01:50:57.137 UTC [msp] Setup -> DEBU 14d Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.137 UTC [msp/identity] newIdentity -> DEBU 14e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:50:57.138 UTC [msp/identity] newIdentity -> DEBU 14f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.146 UTC [msp/identity] newIdentity -> DEBU 150 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.151 UTC [msp] Validate -> DEBU 151 MSP OrdererMSP validating identity -2018-01-04 01:50:57.151 UTC [common/config] Validate -> DEBU 152 Anchor peers for org Org1MSP are -2018-01-04 01:50:57.151 UTC [common/config] validateMSP -> DEBU 153 Setting up MSP for org Org1MSP -2018-01-04 01:50:57.151 UTC [msp] NewBccspMsp -> DEBU 154 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.151 UTC [msp] Setup -> DEBU 155 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.152 UTC [msp/identity] newIdentity -> DEBU 156 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.235 UTC [msp] Validate -> DEBU 090 MSP Org2MSP validating identity +2018-01-14 11:45:28.235 UTC [common/config] validateMSP -> DEBU 091 Setting up MSP for org Org1MSP +2018-01-14 11:45:28.235 UTC [msp] NewBccspMsp -> DEBU 092 Creating BCCSP-based MSP instance +2018-01-14 11:45:28.235 UTC [msp] Setup -> DEBU 093 Setting up MSP instance Org1MSP +2018-01-14 11:45:28.235 UTC [msp/identity] newIdentity -> DEBU 094 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -574,7 +303,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.152 UTC [msp/identity] newIdentity -> DEBU 157 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.236 UTC [msp/identity] newIdentity -> DEBU 095 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -588,7 +317,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.152 UTC [msp/identity] newIdentity -> DEBU 158 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.236 UTC [msp/identity] newIdentity -> DEBU 096 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -602,226 +331,190 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.153 UTC [msp] Validate -> DEBU 159 MSP Org1MSP validating identity -2018-01-04 01:50:57.153 UTC [common/config] Validate -> DEBU 15a Anchor peers for org Org2MSP are -2018-01-04 01:50:57.160 UTC [common/config] validateMSP -> DEBU 15b Setting up MSP for org Org2MSP -2018-01-04 01:50:57.160 UTC [msp] NewBccspMsp -> DEBU 15c Creating BCCSP-based MSP instance -2018-01-04 01:50:57.160 UTC [msp] Setup -> DEBU 15d Setting up MSP instance Org2MSP -2018-01-04 01:50:57.161 UTC [msp/identity] newIdentity -> DEBU 15e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-04 01:50:57.161 UTC [msp/identity] newIdentity -> DEBU 15f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.163 UTC [msp/identity] newIdentity -> DEBU 160 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.164 UTC [msp] Validate -> DEBU 161 MSP Org2MSP validating identity -2018-01-04 01:50:57.164 UTC [msp] Setup -> DEBU 162 Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.165 UTC [msp] Setup -> DEBU 163 MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 164 Returning policy Writers for evaluation -2018-01-04 01:50:57.165 UTC [policies] CommitProposals -> DEBU 165 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 166 Returning policy Admins for evaluation -2018-01-04 01:50:57.165 UTC [policies] CommitProposals -> DEBU 167 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 168 Returning policy Readers for evaluation -2018-01-04 01:50:57.165 UTC [policies] CommitProposals -> DEBU 169 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16a Returning policy Writers for evaluation -2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16b Returning policy Admins for evaluation -2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16c Returning policy Writers for evaluation -2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16d Returning policy Readers for evaluation -2018-01-04 01:50:57.165 UTC [policies] GetPolicy -> DEBU 16e Returning policy Writers for evaluation -2018-01-04 01:50:57.165 UTC [policies] CommitProposals -> DEBU 16f In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 170 Returning policy Admins for evaluation -2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 171 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 172 Returning policy Readers for evaluation -2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 173 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 174 Returning policy Readers for evaluation -2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 175 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 176 Returning policy Writers for evaluation -2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 177 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 178 Returning policy Admins for evaluation -2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 179 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 17a Returning policy Admins for evaluation -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 17b Returning policy Admins for evaluation -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 17c Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 17d In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 17e Returning policy Writers for evaluation -2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 17f In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:57.166 UTC [policies] GetPolicy -> DEBU 180 Returning policy Admins for evaluation -2018-01-04 01:50:57.166 UTC [policies] CommitProposals -> DEBU 181 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 182 Returning policy BlockValidation for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 183 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 184 Returning policy Readers for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 185 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 186 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 187 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 188 Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 189 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 18a Returning policy ChannelCreationPolicy for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 18b In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 18c Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 18d In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 18e Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 18f In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 190 Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 191 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 192 Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:57.167 UTC [policies] CommitProposals -> DEBU 193 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:57.167 UTC [policies] GetPolicy -> DEBU 194 Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:57.168 UTC [policies] CommitProposals -> DEBU 195 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 196 Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:57.168 UTC [policies] CommitProposals -> DEBU 197 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 198 Returning policy Readers for evaluation -2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 199 Returning dummy reject all policy because Readers could not be found in /Application/Readers -2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 19a Returning dummy reject all policy because Writers could not be found in /Application/Writers -2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 19b Returning policy Writers for evaluation -2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 19c Returning policy Admins for evaluation -2018-01-04 01:50:57.168 UTC [policies] GetPolicy -> DEBU 19d Returning dummy reject all policy because Admins could not be found in /Application/Admins -2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 19e Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 19f Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 1a0 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 1a1 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 1a2 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.168 UTC [common/configtx] addToMap -> DEBU 1a3 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a4 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a5 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a6 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a7 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a8 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1a9 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.169 UTC [common/configtx] addToMap -> DEBU 1aa Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.169 UTC [policies] GetPolicy -> DEBU 1ab Returning policy ChannelCreationPolicy for evaluation -2018-01-04 01:50:57.169 UTC [cauthdsl] func1 -> DEBU 1ac 0xc420026918 gate 1515030657169780600 evaluation starts -2018-01-04 01:50:57.169 UTC [cauthdsl] func2 -> DEBU 1ad 0xc420026918 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.169 UTC [cauthdsl] func2 -> DEBU 1ae 0xc420026918 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.170 UTC [msp/identity] newIdentity -> DEBU 1af Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:50:57.170 UTC [msp] SatisfiesPrincipal -> DEBU 1b0 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:57.170 UTC [cauthdsl] func2 -> DEBU 1b1 0xc420026918 principal matched by identity 0 -2018-01-04 01:50:57.170 UTC [msp/identity] Verify -> DEBU 1b2 Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -2018-01-04 01:50:57.170 UTC [msp/identity] Verify -> DEBU 1b3 Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -00000040 de 20 dd a7 3b f5 |. ..;.| -2018-01-04 01:50:57.170 UTC [cauthdsl] func2 -> DEBU 1b4 0xc420026918 principal evaluation succeeds for identity 0 -2018-01-04 01:50:57.171 UTC [cauthdsl] func1 -> DEBU 1b5 0xc420026918 gate 1515030657169780600 evaluation succeeds -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1b6 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1b7 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1b8 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1b9 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1ba Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1bb Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1bc Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1bd Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1be Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.171 UTC [common/configtx] recurseConfigMap -> DEBU 1bf Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c0 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c1 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c2 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c3 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c4 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c5 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c6 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c7 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] recurseConfigMap -> DEBU 1c8 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.172 UTC [common/configtx] processConfig -> DEBU 1c9 Beginning new config for channel businesschannel -2018-01-04 01:50:57.172 UTC [common/config] NewStandardValues -> DEBU 1ca Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.172 UTC [common/config] initializeProtosStruct -> DEBU 1cb Processing field: HashingAlgorithm -2018-01-04 01:50:57.172 UTC [common/config] initializeProtosStruct -> DEBU 1cc Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.172 UTC [common/config] initializeProtosStruct -> DEBU 1cd Processing field: OrdererAddresses -2018-01-04 01:50:57.172 UTC [common/config] initializeProtosStruct -> DEBU 1ce Processing field: Consortium -2018-01-04 01:50:57.172 UTC [policies] ProposePolicy -> DEBU 1cf Proposed new policy Readers for Channel -2018-01-04 01:50:57.172 UTC [policies] ProposePolicy -> DEBU 1d0 Proposed new policy Writers for Channel -2018-01-04 01:50:57.172 UTC [policies] ProposePolicy -> DEBU 1d1 Proposed new policy Admins for Channel -2018-01-04 01:50:57.172 UTC [common/config] NewStandardValues -> DEBU 1d2 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d3 Processing field: ConsensusType -2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d4 Processing field: BatchSize -2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d5 Processing field: BatchTimeout -2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d6 Processing field: KafkaBrokers -2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1d7 Processing field: ChannelRestrictions -2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1d8 Proposed new policy Writers for Orderer -2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1d9 Proposed new policy Admins for Orderer -2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1da Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1db Proposed new policy Readers for Orderer -2018-01-04 01:50:57.173 UTC [common/config] NewStandardValues -> DEBU 1dc Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.173 UTC [common/config] initializeProtosStruct -> DEBU 1dd Processing field: MSP -2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1de Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1df Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.173 UTC [policies] ProposePolicy -> DEBU 1e0 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1e1 Initializing protos for *struct {} -2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1e2 Proposed new policy Writers for Application -2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1e3 Proposed new policy Readers for Application -2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1e4 Proposed new policy Admins for Application -2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1e5 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1e6 Processing field: MSP -2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1e7 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1e8 Processing field: AnchorPeers -2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1e9 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1ea Processing field: MSP -2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1eb Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1ec Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.174 UTC [policies] ProposePolicy -> DEBU 1ed Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1ee Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1ef Processing field: MSP -2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1f0 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.174 UTC [common/config] initializeProtosStruct -> DEBU 1f1 Processing field: AnchorPeers -2018-01-04 01:50:57.174 UTC [common/config] NewStandardValues -> DEBU 1f2 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.175 UTC [common/config] initializeProtosStruct -> DEBU 1f3 Processing field: MSP -2018-01-04 01:50:57.175 UTC [policies] ProposePolicy -> DEBU 1f4 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.175 UTC [policies] ProposePolicy -> DEBU 1f5 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.175 UTC [policies] ProposePolicy -> DEBU 1f6 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.175 UTC [common/config] validateMSP -> DEBU 1f7 Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.175 UTC [msp] NewBccspMsp -> DEBU 1f8 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.175 UTC [msp] Setup -> DEBU 1f9 Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.175 UTC [msp/identity] newIdentity -> DEBU 1fa Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:28.236 UTC [msp] Validate -> DEBU 097 MSP Org1MSP validating identity +2018-01-14 11:45:28.237 UTC [msp] Setup -> DEBU 098 Setting up the MSP manager (3 msps) +2018-01-14 11:45:28.237 UTC [msp] Setup -> DEBU 099 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 09a Returning policy Admins for evaluation +2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 09b In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 09c Returning policy Readers for evaluation +2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 09d In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 09e Returning policy Writers for evaluation +2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 09f In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a0 Returning policy Readers for evaluation +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a1 Returning policy Writers for evaluation +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a2 Returning policy Admins for evaluation +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a3 Returning policy Writers for evaluation +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a4 Returning policy Writers for evaluation +2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 0a5 In commit adding relative sub-policy Org2MSP/Writers to SampleConsortium +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a6 Returning policy Admins for evaluation +2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 0a7 In commit adding relative sub-policy Org2MSP/Admins to SampleConsortium +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0a8 Returning policy Readers for evaluation +2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 0a9 In commit adding relative sub-policy Org2MSP/Readers to SampleConsortium +2018-01-14 11:45:28.238 UTC [policies] GetPolicy -> DEBU 0aa Returning policy Writers for evaluation +2018-01-14 11:45:28.238 UTC [policies] CommitProposals -> DEBU 0ab In commit adding relative sub-policy Org1MSP/Writers to SampleConsortium +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ac Returning policy Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0ad In commit adding relative sub-policy Org1MSP/Admins to SampleConsortium +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ae Returning policy Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0af In commit adding relative sub-policy Org1MSP/Readers to SampleConsortium +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b0 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b1 In commit adding relative sub-policy SampleConsortium/Org1MSP/Readers to Consortiums +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b2 Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b3 In commit adding relative sub-policy SampleConsortium/Org2MSP/Writers to Consortiums +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b4 Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b5 In commit adding relative sub-policy SampleConsortium/Org2MSP/Admins to Consortiums +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b6 Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b7 In commit adding relative sub-policy SampleConsortium/Org2MSP/Readers to Consortiums +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0b8 Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0b9 In commit adding relative sub-policy SampleConsortium/Org1MSP/Writers to Consortiums +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ba Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0bb In commit adding relative sub-policy SampleConsortium/Org1MSP/Admins to Consortiums +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0bc Returning policy Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0bd In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0be Returning policy Writers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0bf In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c0 Returning policy Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c1 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c2 Returning policy BlockValidation for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c3 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c4 Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c5 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c6 Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c7 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0c8 Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0c9 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ca Returning policy SampleConsortium/Org1MSP/Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0cb In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Readers to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0cc Returning policy SampleConsortium/Org2MSP/Writers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0cd In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Writers to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0ce Returning policy SampleConsortium/Org2MSP/Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0cf In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Admins to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d0 Returning policy SampleConsortium/Org2MSP/Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0d1 In commit adding relative sub-policy Consortiums/SampleConsortium/Org2MSP/Readers to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d2 Returning policy SampleConsortium/Org1MSP/Writers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0d3 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Writers to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d4 Returning policy SampleConsortium/Org1MSP/Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0d5 In commit adding relative sub-policy Consortiums/SampleConsortium/Org1MSP/Admins to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d6 Returning policy Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0d7 In commit adding relative sub-policy Consortiums/Admins to Channel +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d8 Returning policy Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0d9 Returning dummy reject all policy because Readers could not be found in /Consortiums/Readers +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0da Returning policy Writers for evaluation +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0db Returning dummy reject all policy because Writers could not be found in /Consortiums/Writers +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0dc Returning policy Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0dd Returning policy Admins for evaluation +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0de Returning policy Readers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0df As expected, current configuration has policy '/Channel/Readers' +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0e0 Returning policy Writers for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0e1 As expected, current configuration has policy '/Channel/Writers' +2018-01-14 11:45:28.239 UTC [policies] GetPolicy -> DEBU 0e2 Returning policy Orderer/BlockValidation for evaluation +2018-01-14 11:45:28.239 UTC [policies] CommitProposals -> DEBU 0e3 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-14 11:45:28.239 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 0e4 retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:45:28.239 UTC [fsblkstorage] newBlockfileStream -> DEBU 0e5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-14 11:45:28.239 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e6 Remaining bytes=[9082], Going to peek [8] bytes +2018-01-14 11:45:28.240 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 0e7 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:45:28.240 UTC [orderer/multichain] newChainSupport -> DEBU 0e8 [channel: testchainid] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=0): +2018-01-14 11:45:28.240 UTC [orderer/multichain] NewManagerImpl -> INFO 0e9 Starting with system channel testchainid and orderer type solo +2018-01-14 11:45:28.240 UTC [orderer/main] main -> INFO 0ea Beginning to serve requests +2018-01-14 11:45:32.418 UTC [orderer/main] Deliver -> DEBU 0eb Starting new Deliver handler +2018-01-14 11:45:32.418 UTC [orderer/common/deliver] Handle -> DEBU 0ec Starting new deliver loop +2018-01-14 11:45:32.418 UTC [orderer/common/deliver] Handle -> DEBU 0ed Attempting to read seek info message +2018-01-14 11:45:32.426 UTC [orderer/main] Broadcast -> DEBU 0ee Starting new Broadcast handler +2018-01-14 11:45:32.426 UTC [orderer/common/broadcast] Handle -> DEBU 0ef Starting new broadcast loop +2018-01-14 11:45:32.426 UTC [orderer/common/broadcast] Handle -> DEBU 0f0 Preprocessing CONFIG_UPDATE +2018-01-14 11:45:32.426 UTC [orderer/configupdate] Process -> DEBU 0f1 Processing channel creation request for channel businesschannel +2018-01-14 11:45:32.427 UTC [msp] GetLocalMSP -> DEBU 0f2 Returning existing local MSP +2018-01-14 11:45:32.427 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f3 Obtaining default signing identity +2018-01-14 11:45:32.427 UTC [msp] GetLocalMSP -> DEBU 0f4 Returning existing local MSP +2018-01-14 11:45:32.427 UTC [msp] GetDefaultSigningIdentity -> DEBU 0f5 Obtaining default signing identity +2018-01-14 11:45:32.427 UTC [msp/identity] Sign -> DEBU 0f6 Sign: plaintext: 0AB7060A1B08011A0608DC85EDD20522...41646D696E7310021A0641646D696E73 +2018-01-14 11:45:32.428 UTC [msp/identity] Sign -> DEBU 0f7 Sign: digest: 40191FC07C79BA002B950F1F6AD746FA6C5D119235C28D4BCDE66FC0848A96F2 +2018-01-14 11:45:32.428 UTC [common/config] NewStandardValues -> DEBU 0f8 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.428 UTC [common/config] initializeProtosStruct -> DEBU 0f9 Processing field: HashingAlgorithm +2018-01-14 11:45:32.428 UTC [common/config] initializeProtosStruct -> DEBU 0fa Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.428 UTC [common/config] initializeProtosStruct -> DEBU 0fb Processing field: OrdererAddresses +2018-01-14 11:45:32.428 UTC [common/config] initializeProtosStruct -> DEBU 0fc Processing field: Consortium +2018-01-14 11:45:32.428 UTC [common/configtx] addToMap -> DEBU 0fd Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 0fe Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 0ff Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 100 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 101 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 102 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 103 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 104 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 105 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 106 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:32.429 UTC [common/configtx] addToMap -> DEBU 107 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 108 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 109 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 10a Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 10b Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 10c Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.430 UTC [common/configtx] addToMap -> DEBU 10d Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.431 UTC [common/configtx] addToMap -> DEBU 10e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:32.431 UTC [common/configtx] addToMap -> DEBU 10f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:32.431 UTC [common/configtx] addToMap -> DEBU 110 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:32.433 UTC [common/configtx] addToMap -> DEBU 111 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 112 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 113 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 114 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 115 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 116 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 117 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 118 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:32.434 UTC [common/configtx] addToMap -> DEBU 119 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11a Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11b Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11c Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11d Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:32.435 UTC [common/configtx] addToMap -> DEBU 11e Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:32.435 UTC [common/configtx] processConfig -> DEBU 11f Beginning new config for channel businesschannel +2018-01-14 11:45:32.435 UTC [common/config] NewStandardValues -> DEBU 120 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 121 Processing field: HashingAlgorithm +2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 122 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 123 Processing field: OrdererAddresses +2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 124 Processing field: Consortium +2018-01-14 11:45:32.435 UTC [policies] ProposePolicy -> DEBU 125 Proposed new policy Readers for Channel +2018-01-14 11:45:32.435 UTC [policies] ProposePolicy -> DEBU 126 Proposed new policy Writers for Channel +2018-01-14 11:45:32.435 UTC [policies] ProposePolicy -> DEBU 127 Proposed new policy Admins for Channel +2018-01-14 11:45:32.435 UTC [common/config] NewStandardValues -> DEBU 128 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 129 Processing field: ConsensusType +2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 12a Processing field: BatchSize +2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 12b Processing field: BatchTimeout +2018-01-14 11:45:32.435 UTC [common/config] initializeProtosStruct -> DEBU 12c Processing field: KafkaBrokers +2018-01-14 11:45:32.436 UTC [common/config] initializeProtosStruct -> DEBU 12d Processing field: ChannelRestrictions +2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 12e Proposed new policy Readers for Orderer +2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 12f Proposed new policy Writers for Orderer +2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 130 Proposed new policy Admins for Orderer +2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 131 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.436 UTC [common/config] NewStandardValues -> DEBU 132 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.436 UTC [common/config] initializeProtosStruct -> DEBU 133 Processing field: MSP +2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 134 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 135 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 136 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.436 UTC [common/config] NewStandardValues -> DEBU 137 Initializing protos for *struct {} +2018-01-14 11:45:32.436 UTC [policies] ProposePolicy -> DEBU 138 Proposed new policy ChannelCreationPolicy for Application +2018-01-14 11:45:32.436 UTC [common/config] NewStandardValues -> DEBU 139 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.436 UTC [common/config] initializeProtosStruct -> DEBU 13a Processing field: MSP +2018-01-14 11:45:32.436 UTC [common/config] NewStandardValues -> DEBU 13b Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 13c Processing field: AnchorPeers +2018-01-14 11:45:32.437 UTC [common/config] NewStandardValues -> DEBU 13d Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 13e Processing field: MSP +2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 13f Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 140 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 141 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.437 UTC [common/config] NewStandardValues -> DEBU 142 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 143 Processing field: MSP +2018-01-14 11:45:32.437 UTC [common/config] NewStandardValues -> DEBU 144 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 145 Processing field: AnchorPeers +2018-01-14 11:45:32.437 UTC [common/config] NewStandardValues -> DEBU 146 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.437 UTC [common/config] initializeProtosStruct -> DEBU 147 Processing field: MSP +2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 148 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 149 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.437 UTC [policies] ProposePolicy -> DEBU 14a Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.437 UTC [common/config] validateMSP -> DEBU 14b Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.437 UTC [msp] NewBccspMsp -> DEBU 14c Creating BCCSP-based MSP instance +2018-01-14 11:45:32.437 UTC [msp] Setup -> DEBU 14d Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.438 UTC [msp/identity] newIdentity -> DEBU 14e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -835,7 +528,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:57.176 UTC [msp/identity] newIdentity -> DEBU 1fb Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.438 UTC [msp/identity] newIdentity -> DEBU 14f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -848,7 +541,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.176 UTC [msp/identity] newIdentity -> DEBU 1fc Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.439 UTC [msp/identity] newIdentity -> DEBU 150 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -861,12 +554,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.177 UTC [msp] Validate -> DEBU 1fd MSP OrdererMSP validating identity -2018-01-04 01:50:57.177 UTC [common/config] Validate -> DEBU 1fe Anchor peers for org Org1MSP are -2018-01-04 01:50:57.177 UTC [common/config] validateMSP -> DEBU 1ff Setting up MSP for org Org1MSP -2018-01-04 01:50:57.177 UTC [msp] NewBccspMsp -> DEBU 200 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.177 UTC [msp] Setup -> DEBU 201 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.177 UTC [msp/identity] newIdentity -> DEBU 202 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.440 UTC [msp] Validate -> DEBU 151 MSP OrdererMSP validating identity +2018-01-14 11:45:32.440 UTC [common/config] Validate -> DEBU 152 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.440 UTC [common/config] validateMSP -> DEBU 153 Setting up MSP for org Org1MSP +2018-01-14 11:45:32.440 UTC [msp] NewBccspMsp -> DEBU 154 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.440 UTC [msp] Setup -> DEBU 155 Setting up MSP instance Org1MSP +2018-01-14 11:45:32.440 UTC [msp/identity] newIdentity -> DEBU 156 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -881,7 +574,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.178 UTC [msp/identity] newIdentity -> DEBU 203 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.441 UTC [msp/identity] newIdentity -> DEBU 157 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -895,7 +588,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.178 UTC [msp/identity] newIdentity -> DEBU 204 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.442 UTC [msp/identity] newIdentity -> DEBU 158 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -909,12 +602,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.179 UTC [msp] Validate -> DEBU 205 MSP Org1MSP validating identity -2018-01-04 01:50:57.179 UTC [common/config] Validate -> DEBU 206 Anchor peers for org Org2MSP are -2018-01-04 01:50:57.179 UTC [common/config] validateMSP -> DEBU 207 Setting up MSP for org Org2MSP -2018-01-04 01:50:57.179 UTC [msp] NewBccspMsp -> DEBU 208 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.179 UTC [msp] Setup -> DEBU 209 Setting up MSP instance Org2MSP -2018-01-04 01:50:57.179 UTC [msp/identity] newIdentity -> DEBU 20a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.442 UTC [msp] Validate -> DEBU 159 MSP Org1MSP validating identity +2018-01-14 11:45:32.443 UTC [common/config] Validate -> DEBU 15a Anchor peers for org Org2MSP are +2018-01-14 11:45:32.443 UTC [common/config] validateMSP -> DEBU 15b Setting up MSP for org Org2MSP +2018-01-14 11:45:32.443 UTC [msp] NewBccspMsp -> DEBU 15c Creating BCCSP-based MSP instance +2018-01-14 11:45:32.443 UTC [msp] Setup -> DEBU 15d Setting up MSP instance Org2MSP +2018-01-14 11:45:32.444 UTC [msp/identity] newIdentity -> DEBU 15e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -929,7 +622,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:57.179 UTC [msp/identity] newIdentity -> DEBU 20b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.445 UTC [msp/identity] newIdentity -> DEBU 15f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -943,7 +636,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.180 UTC [msp/identity] newIdentity -> DEBU 20c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.445 UTC [msp/identity] newIdentity -> DEBU 160 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -957,27 +650,354 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.180 UTC [msp] Validate -> DEBU 20d MSP Org2MSP validating identity -2018-01-04 01:50:57.180 UTC [msp] Setup -> DEBU 20e Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.180 UTC [msp] Setup -> DEBU 20f MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.180 UTC [msp] GetLocalMSP -> DEBU 210 Returning existing local MSP -2018-01-04 01:50:57.180 UTC [msp] GetDefaultSigningIdentity -> DEBU 211 Obtaining default signing identity -2018-01-04 01:50:57.180 UTC [msp] GetLocalMSP -> DEBU 212 Returning existing local MSP -2018-01-04 01:50:57.180 UTC [msp] GetDefaultSigningIdentity -> DEBU 213 Obtaining default signing identity -2018-01-04 01:50:57.181 UTC [msp/identity] Sign -> DEBU 214 Sign: plaintext: 0AB7060A1B08011A06088191B6D20522...761B8EE0CEF06E7A016F0EFA6EF4C112 -2018-01-04 01:50:57.181 UTC [msp/identity] Sign -> DEBU 215 Sign: digest: 290B60ADF4E8CAEF2E8FD54679723A422F70BECF314A37D77CB303A607ADF783 -2018-01-04 01:50:57.181 UTC [msp] GetLocalMSP -> DEBU 216 Returning existing local MSP -2018-01-04 01:50:57.181 UTC [msp] GetDefaultSigningIdentity -> DEBU 217 Obtaining default signing identity -2018-01-04 01:50:57.181 UTC [msp] GetLocalMSP -> DEBU 218 Returning existing local MSP -2018-01-04 01:50:57.181 UTC [msp] GetDefaultSigningIdentity -> DEBU 219 Obtaining default signing identity -2018-01-04 01:50:57.181 UTC [msp/identity] Sign -> DEBU 21a Sign: plaintext: 0AB3060A1708041A06088191B6D20522...B3D14B8A87449ADFE31665CDD7613E64 -2018-01-04 01:50:57.181 UTC [msp/identity] Sign -> DEBU 21b Sign: digest: E9BB79C8670978A6F99A21CF62D26A9FA2611D8A7324146342B81F86BE8F3948 -2018-01-04 01:50:57.181 UTC [orderer/common/broadcast] Handle -> DEBU 21c [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION -2018-01-04 01:50:57.181 UTC [policies] GetPolicy -> DEBU 21d Returning policy Writers for evaluation -2018-01-04 01:50:57.181 UTC [cauthdsl] func1 -> DEBU 21e 0xc420026dd8 gate 1515030657181709900 evaluation starts -2018-01-04 01:50:57.181 UTC [cauthdsl] func2 -> DEBU 21f 0xc420026dd8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.181 UTC [cauthdsl] func2 -> DEBU 220 0xc420026dd8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.181 UTC [msp/identity] newIdentity -> DEBU 221 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.446 UTC [msp] Validate -> DEBU 161 MSP Org2MSP validating identity +2018-01-14 11:45:32.447 UTC [msp] Setup -> DEBU 162 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.447 UTC [msp] Setup -> DEBU 163 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 164 Returning policy Readers for evaluation +2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 165 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 166 Returning policy Writers for evaluation +2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 167 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 168 Returning policy Admins for evaluation +2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 169 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16a Returning policy Readers for evaluation +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16b Returning policy Writers for evaluation +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16c Returning policy Admins for evaluation +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16d Returning policy Writers for evaluation +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 16e Returning policy Admins for evaluation +2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 16f In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:32.447 UTC [policies] GetPolicy -> DEBU 170 Returning policy Readers for evaluation +2018-01-14 11:45:32.447 UTC [policies] CommitProposals -> DEBU 171 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 172 Returning policy Writers for evaluation +2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 173 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 174 Returning policy Writers for evaluation +2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 175 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 176 Returning policy Admins for evaluation +2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 177 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 178 Returning policy Readers for evaluation +2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 179 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 17a Returning policy Admins for evaluation +2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 17b Returning policy Admins for evaluation +2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 17c Returning policy Readers for evaluation +2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 17d In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:32.448 UTC [policies] GetPolicy -> DEBU 17e Returning policy Writers for evaluation +2018-01-14 11:45:32.448 UTC [policies] CommitProposals -> DEBU 17f In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 180 Returning policy Admins for evaluation +2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 181 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 182 Returning policy BlockValidation for evaluation +2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 183 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 184 Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 185 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 186 Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 187 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 188 Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 189 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 18a Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 18b In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 18c Returning policy ChannelCreationPolicy for evaluation +2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 18d In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 18e Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:32.449 UTC [policies] CommitProposals -> DEBU 18f In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:32.449 UTC [policies] GetPolicy -> DEBU 190 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:32.450 UTC [policies] CommitProposals -> DEBU 191 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 192 Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:32.450 UTC [policies] CommitProposals -> DEBU 193 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 194 Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:32.450 UTC [policies] CommitProposals -> DEBU 195 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 196 Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:32.450 UTC [policies] CommitProposals -> DEBU 197 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 198 Returning policy Readers for evaluation +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 199 Returning dummy reject all policy because Readers could not be found in /Application/Readers +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 19a Returning policy Writers for evaluation +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 19b Returning dummy reject all policy because Writers could not be found in /Application/Writers +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 19c Returning policy Admins for evaluation +2018-01-14 11:45:32.450 UTC [policies] GetPolicy -> DEBU 19d Returning dummy reject all policy because Admins could not be found in /Application/Admins +2018-01-14 11:45:32.450 UTC [common/configtx] addToMap -> DEBU 19e Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.450 UTC [common/configtx] addToMap -> DEBU 19f Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.450 UTC [common/configtx] addToMap -> DEBU 1a0 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.450 UTC [common/configtx] addToMap -> DEBU 1a1 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a2 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a3 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a4 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a5 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a6 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a7 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.451 UTC [common/configtx] addToMap -> DEBU 1a8 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.452 UTC [common/configtx] addToMap -> DEBU 1a9 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.452 UTC [common/configtx] addToMap -> DEBU 1aa Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.452 UTC [policies] GetPolicy -> DEBU 1ab Returning policy ChannelCreationPolicy for evaluation +2018-01-14 11:45:32.452 UTC [cauthdsl] func1 -> DEBU 1ac 0xc420150db8 gate 1515930332452367864 evaluation starts +2018-01-14 11:45:32.452 UTC [cauthdsl] func2 -> DEBU 1ad 0xc420150db8 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.452 UTC [cauthdsl] func2 -> DEBU 1ae 0xc420150db8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.452 UTC [msp/identity] newIdentity -> DEBU 1af Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.453 UTC [cauthdsl] func2 -> DEBU 1b0 0xc420150db8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-14 11:45:32.453 UTC [cauthdsl] func2 -> DEBU 1b1 0xc420150db8 principal evaluation fails +2018-01-14 11:45:32.453 UTC [cauthdsl] func1 -> DEBU 1b2 0xc420150db8 gate 1515930332452367864 evaluation fails +2018-01-14 11:45:32.453 UTC [cauthdsl] func1 -> DEBU 1b3 0xc420150dc8 gate 1515930332453641064 evaluation starts +2018-01-14 11:45:32.453 UTC [cauthdsl] func2 -> DEBU 1b4 0xc420150dc8 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.453 UTC [cauthdsl] func2 -> DEBU 1b5 0xc420150dc8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.454 UTC [msp/identity] newIdentity -> DEBU 1b6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.454 UTC [msp] SatisfiesPrincipal -> DEBU 1b7 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:32.454 UTC [cauthdsl] func2 -> DEBU 1b8 0xc420150dc8 principal matched by identity 0 +2018-01-14 11:45:32.454 UTC [msp/identity] Verify -> DEBU 1b9 Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +2018-01-14 11:45:32.454 UTC [msp/identity] Verify -> DEBU 1ba Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +00000040 12 a6 8e 7f 16 50 |.....P| +2018-01-14 11:45:32.455 UTC [cauthdsl] func2 -> DEBU 1bb 0xc420150dc8 principal evaluation succeeds for identity 0 +2018-01-14 11:45:32.455 UTC [cauthdsl] func1 -> DEBU 1bc 0xc420150dc8 gate 1515930332453641064 evaluation succeeds +2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1bd Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1be Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1bf Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1c0 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:32.455 UTC [common/configtx] recurseConfigMap -> DEBU 1c1 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c2 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c3 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c4 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c5 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c6 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c7 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.456 UTC [common/configtx] recurseConfigMap -> DEBU 1c8 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1c9 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1ca Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1cb Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1cc Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1cd Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1ce Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.457 UTC [common/configtx] recurseConfigMap -> DEBU 1cf Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.457 UTC [common/configtx] processConfig -> DEBU 1d0 Beginning new config for channel businesschannel +2018-01-14 11:45:32.457 UTC [common/config] NewStandardValues -> DEBU 1d1 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.457 UTC [common/config] initializeProtosStruct -> DEBU 1d2 Processing field: HashingAlgorithm +2018-01-14 11:45:32.457 UTC [common/config] initializeProtosStruct -> DEBU 1d3 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.457 UTC [common/config] initializeProtosStruct -> DEBU 1d4 Processing field: OrdererAddresses +2018-01-14 11:45:32.457 UTC [common/config] initializeProtosStruct -> DEBU 1d5 Processing field: Consortium +2018-01-14 11:45:32.457 UTC [policies] ProposePolicy -> DEBU 1d6 Proposed new policy Admins for Channel +2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1d7 Proposed new policy Readers for Channel +2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1d8 Proposed new policy Writers for Channel +2018-01-14 11:45:32.458 UTC [common/config] NewStandardValues -> DEBU 1d9 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1da Processing field: ConsensusType +2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1db Processing field: BatchSize +2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1dc Processing field: BatchTimeout +2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1dd Processing field: KafkaBrokers +2018-01-14 11:45:32.458 UTC [common/config] initializeProtosStruct -> DEBU 1de Processing field: ChannelRestrictions +2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1df Proposed new policy Admins for Orderer +2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1e0 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1e1 Proposed new policy Readers for Orderer +2018-01-14 11:45:32.458 UTC [policies] ProposePolicy -> DEBU 1e2 Proposed new policy Writers for Orderer +2018-01-14 11:45:32.459 UTC [common/config] NewStandardValues -> DEBU 1e3 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.459 UTC [common/config] initializeProtosStruct -> DEBU 1e4 Processing field: MSP +2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1e5 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1e6 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1e7 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.459 UTC [common/config] NewStandardValues -> DEBU 1e8 Initializing protos for *struct {} +2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1e9 Proposed new policy Admins for Application +2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1ea Proposed new policy Writers for Application +2018-01-14 11:45:32.459 UTC [policies] ProposePolicy -> DEBU 1eb Proposed new policy Readers for Application +2018-01-14 11:45:32.460 UTC [common/config] NewStandardValues -> DEBU 1ec Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.460 UTC [common/config] initializeProtosStruct -> DEBU 1ed Processing field: MSP +2018-01-14 11:45:32.460 UTC [common/config] NewStandardValues -> DEBU 1ee Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.460 UTC [common/config] initializeProtosStruct -> DEBU 1ef Processing field: AnchorPeers +2018-01-14 11:45:32.460 UTC [common/config] NewStandardValues -> DEBU 1f0 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.460 UTC [common/config] initializeProtosStruct -> DEBU 1f1 Processing field: MSP +2018-01-14 11:45:32.460 UTC [policies] ProposePolicy -> DEBU 1f2 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.460 UTC [policies] ProposePolicy -> DEBU 1f3 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.460 UTC [policies] ProposePolicy -> DEBU 1f4 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.460 UTC [common/config] NewStandardValues -> DEBU 1f5 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.460 UTC [common/config] initializeProtosStruct -> DEBU 1f6 Processing field: MSP +2018-01-14 11:45:32.461 UTC [common/config] NewStandardValues -> DEBU 1f7 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.461 UTC [common/config] initializeProtosStruct -> DEBU 1f8 Processing field: AnchorPeers +2018-01-14 11:45:32.461 UTC [common/config] NewStandardValues -> DEBU 1f9 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.461 UTC [common/config] initializeProtosStruct -> DEBU 1fa Processing field: MSP +2018-01-14 11:45:32.461 UTC [policies] ProposePolicy -> DEBU 1fb Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.461 UTC [policies] ProposePolicy -> DEBU 1fc Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.461 UTC [policies] ProposePolicy -> DEBU 1fd Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.461 UTC [common/config] validateMSP -> DEBU 1fe Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.461 UTC [msp] NewBccspMsp -> DEBU 1ff Creating BCCSP-based MSP instance +2018-01-14 11:45:32.461 UTC [msp] Setup -> DEBU 200 Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.462 UTC [msp/identity] newIdentity -> DEBU 201 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:32.463 UTC [msp/identity] newIdentity -> DEBU 202 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.463 UTC [msp/identity] newIdentity -> DEBU 203 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.464 UTC [msp] Validate -> DEBU 204 MSP OrdererMSP validating identity +2018-01-14 11:45:32.464 UTC [common/config] Validate -> DEBU 205 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.465 UTC [common/config] validateMSP -> DEBU 206 Setting up MSP for org Org1MSP +2018-01-14 11:45:32.465 UTC [msp] NewBccspMsp -> DEBU 207 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.465 UTC [msp] Setup -> DEBU 208 Setting up MSP instance Org1MSP +2018-01-14 11:45:32.465 UTC [msp/identity] newIdentity -> DEBU 209 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-14 11:45:32.466 UTC [msp/identity] newIdentity -> DEBU 20a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.466 UTC [msp/identity] newIdentity -> DEBU 20b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.467 UTC [msp] Validate -> DEBU 20c MSP Org1MSP validating identity +2018-01-14 11:45:32.467 UTC [common/config] Validate -> DEBU 20d Anchor peers for org Org2MSP are +2018-01-14 11:45:32.467 UTC [common/config] validateMSP -> DEBU 20e Setting up MSP for org Org2MSP +2018-01-14 11:45:32.467 UTC [msp] NewBccspMsp -> DEBU 20f Creating BCCSP-based MSP instance +2018-01-14 11:45:32.468 UTC [msp] Setup -> DEBU 210 Setting up MSP instance Org2MSP +2018-01-14 11:45:32.468 UTC [msp/identity] newIdentity -> DEBU 211 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-14 11:45:32.469 UTC [msp/identity] newIdentity -> DEBU 212 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.469 UTC [msp/identity] newIdentity -> DEBU 213 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.470 UTC [msp] Validate -> DEBU 214 MSP Org2MSP validating identity +2018-01-14 11:45:32.471 UTC [msp] Setup -> DEBU 215 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.471 UTC [msp] Setup -> DEBU 216 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.471 UTC [msp] GetLocalMSP -> DEBU 217 Returning existing local MSP +2018-01-14 11:45:32.471 UTC [msp] GetDefaultSigningIdentity -> DEBU 218 Obtaining default signing identity +2018-01-14 11:45:32.471 UTC [msp] GetLocalMSP -> DEBU 219 Returning existing local MSP +2018-01-14 11:45:32.471 UTC [msp] GetDefaultSigningIdentity -> DEBU 21a Obtaining default signing identity +2018-01-14 11:45:32.471 UTC [msp/identity] Sign -> DEBU 21b Sign: plaintext: 0AB7060A1B08011A0608DC85EDD20522...2D5E850992EA8478C14E4C1DBF4422FF +2018-01-14 11:45:32.471 UTC [msp/identity] Sign -> DEBU 21c Sign: digest: A357BF7A425EAC18D6CB0A7795D310494EAC3E338A27839ECD590E52FE3C7A63 +2018-01-14 11:45:32.471 UTC [msp] GetLocalMSP -> DEBU 21d Returning existing local MSP +2018-01-14 11:45:32.471 UTC [msp] GetDefaultSigningIdentity -> DEBU 21e Obtaining default signing identity +2018-01-14 11:45:32.471 UTC [msp] GetLocalMSP -> DEBU 21f Returning existing local MSP +2018-01-14 11:45:32.472 UTC [msp] GetDefaultSigningIdentity -> DEBU 220 Obtaining default signing identity +2018-01-14 11:45:32.472 UTC [msp/identity] Sign -> DEBU 221 Sign: plaintext: 0AB3060A1708041A0608DC85EDD20522...C1A8B008C889A2F19C71C8DA46B37A93 +2018-01-14 11:45:32.472 UTC [msp/identity] Sign -> DEBU 222 Sign: digest: 71D968A3EC699F0903EAAE321C1DFA88111FCB02B93451EF2AFB35341CA2EA3A +2018-01-14 11:45:32.472 UTC [orderer/common/broadcast] Handle -> DEBU 223 [channel: testchainid] Broadcast is filtering message of type ORDERER_TRANSACTION +2018-01-14 11:45:32.473 UTC [policies] GetPolicy -> DEBU 224 Returning policy Writers for evaluation +2018-01-14 11:45:32.473 UTC [cauthdsl] func1 -> DEBU 225 0xc420151178 gate 1515930332473192864 evaluation starts +2018-01-14 11:45:32.473 UTC [cauthdsl] func2 -> DEBU 226 0xc420151178 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.473 UTC [cauthdsl] func2 -> DEBU 227 0xc420151178 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.474 UTC [msp/identity] newIdentity -> DEBU 228 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -990,113 +1010,157 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-04 01:50:57.182 UTC [msp] SatisfiesPrincipal -> DEBU 222 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-04 01:50:57.182 UTC [msp] Validate -> DEBU 223 MSP OrdererMSP validating identity -2018-01-04 01:50:57.182 UTC [cauthdsl] func2 -> DEBU 224 0xc420026dd8 principal matched by identity 0 -2018-01-04 01:50:57.182 UTC [msp/identity] Verify -> DEBU 225 Verify: digest = 00000000 e9 bb 79 c8 67 09 78 a6 f9 9a 21 cf 62 d2 6a 9f |..y.g.x...!.b.j.| -00000010 a2 61 1d 8a 73 24 14 63 42 b8 1f 86 be 8f 39 48 |.a..s$.cB.....9H| -2018-01-04 01:50:57.182 UTC [msp/identity] Verify -> DEBU 226 Verify: sig = 00000000 30 44 02 20 5f 02 7c 3d e8 74 c3 bf d1 25 0f 5f |0D. _.|=.t...%._| -00000010 b6 7d 7e e9 68 a6 33 80 fb 14 46 9a 5d f9 5f 68 |.}~.h.3...F.]._h| -00000020 46 29 b4 76 02 20 50 52 83 8d 44 e7 86 b7 4c 2f |F).v. PR..D...L/| -00000030 6b e1 d5 27 02 df 89 de cb c7 5d 11 8b 5b a7 96 |k..'......]..[..| -00000040 4d 2e fe b4 07 2b |M....+| -2018-01-04 01:50:57.182 UTC [cauthdsl] func2 -> DEBU 227 0xc420026dd8 principal evaluation succeeds for identity 0 -2018-01-04 01:50:57.182 UTC [cauthdsl] func1 -> DEBU 228 0xc420026dd8 gate 1515030657181709900 evaluation succeeds -2018-01-04 01:50:57.182 UTC [orderer/common/sigfilter] Apply -> DEBU 229 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420367520 1 [0xc42010e410]}) Writers]} -2018-01-04 01:50:57.182 UTC [msp] GetLocalMSP -> DEBU 22a Returning existing local MSP -2018-01-04 01:50:57.182 UTC [msp] GetDefaultSigningIdentity -> DEBU 22b Obtaining default signing identity -2018-01-04 01:50:57.182 UTC [msp] GetLocalMSP -> DEBU 22c Returning existing local MSP -2018-01-04 01:50:57.182 UTC [msp] GetDefaultSigningIdentity -> DEBU 22d Obtaining default signing identity -2018-01-04 01:50:57.183 UTC [msp/identity] Sign -> DEBU 22e Sign: plaintext: 0AB7060A1B08011A06088191B6D20522...41646D696E7310021A0641646D696E73 -2018-01-04 01:50:57.183 UTC [msp/identity] Sign -> DEBU 22f Sign: digest: DCD638915B32C4901CCF2171C3A4E213433E3E34C1555A16CC2C2648789679D6 -2018-01-04 01:50:57.183 UTC [common/config] NewStandardValues -> DEBU 230 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.183 UTC [common/config] initializeProtosStruct -> DEBU 231 Processing field: HashingAlgorithm -2018-01-04 01:50:57.183 UTC [common/config] initializeProtosStruct -> DEBU 232 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.183 UTC [common/config] initializeProtosStruct -> DEBU 233 Processing field: OrdererAddresses -2018-01-04 01:50:57.183 UTC [common/config] initializeProtosStruct -> DEBU 234 Processing field: Consortium -2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 235 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 236 Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 237 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 238 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 239 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 23a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 23b Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:57.183 UTC [common/configtx] addToMap -> DEBU 23c Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 23d Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 23e Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 23f Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 240 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 241 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 242 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 243 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 244 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 245 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 246 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 247 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 248 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 249 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 24a Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 24b Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:57.184 UTC [common/configtx] addToMap -> DEBU 24c Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:57.185 UTC [common/configtx] addToMap -> DEBU 24d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 24e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 24f Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 250 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 251 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 252 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 253 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 254 Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 255 Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:57.186 UTC [common/configtx] addToMap -> DEBU 256 Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:57.187 UTC [common/configtx] processConfig -> DEBU 257 Beginning new config for channel businesschannel -2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 258 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 259 Processing field: HashingAlgorithm -2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 25a Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 25b Processing field: OrdererAddresses -2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 25c Processing field: Consortium -2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 25d Proposed new policy Admins for Channel -2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 25e Proposed new policy Readers for Channel -2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 25f Proposed new policy Writers for Channel -2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 260 Initializing protos for *struct {} -2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 261 Proposed new policy ChannelCreationPolicy for Application -2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 262 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 263 Processing field: MSP -2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 264 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 265 Processing field: AnchorPeers -2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 266 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 267 Processing field: MSP -2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 268 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 269 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.187 UTC [policies] ProposePolicy -> DEBU 26a Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.187 UTC [common/config] NewStandardValues -> DEBU 26b Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.187 UTC [common/config] initializeProtosStruct -> DEBU 26c Processing field: MSP -2018-01-04 01:50:57.188 UTC [common/config] NewStandardValues -> DEBU 26d Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 26e Processing field: AnchorPeers -2018-01-04 01:50:57.188 UTC [common/config] NewStandardValues -> DEBU 26f Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 270 Processing field: MSP -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 271 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 272 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 273 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.188 UTC [common/config] NewStandardValues -> DEBU 274 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 275 Processing field: ConsensusType -2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 276 Processing field: BatchSize -2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 277 Processing field: BatchTimeout -2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 278 Processing field: KafkaBrokers -2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 279 Processing field: ChannelRestrictions -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 27a Proposed new policy Admins for Orderer -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 27b Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 27c Proposed new policy Readers for Orderer -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 27d Proposed new policy Writers for Orderer -2018-01-04 01:50:57.188 UTC [common/config] NewStandardValues -> DEBU 27e Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.188 UTC [common/config] initializeProtosStruct -> DEBU 27f Processing field: MSP -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 280 Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 281 Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.188 UTC [policies] ProposePolicy -> DEBU 282 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.188 UTC [common/config] Validate -> DEBU 283 Anchor peers for org Org1MSP are -2018-01-04 01:50:57.188 UTC [common/config] validateMSP -> DEBU 284 Setting up MSP for org Org1MSP -2018-01-04 01:50:57.189 UTC [msp] NewBccspMsp -> DEBU 285 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.189 UTC [msp] Setup -> DEBU 286 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.189 UTC [msp/identity] newIdentity -> DEBU 287 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.474 UTC [msp] SatisfiesPrincipal -> DEBU 229 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:45:32.474 UTC [msp] Validate -> DEBU 22a MSP OrdererMSP validating identity +2018-01-14 11:45:32.474 UTC [cauthdsl] func2 -> DEBU 22b 0xc420151178 principal matched by identity 0 +2018-01-14 11:45:32.474 UTC [msp/identity] Verify -> DEBU 22c Verify: digest = 00000000 71 d9 68 a3 ec 69 9f 09 03 ea ae 32 1c 1d fa 88 |q.h..i.....2....| +00000010 11 1f cb 02 b9 34 51 ef 2a fb 35 34 1c a2 ea 3a |.....4Q.*.54...:| +2018-01-14 11:45:32.474 UTC [msp/identity] Verify -> DEBU 22d Verify: sig = 00000000 30 45 02 21 00 95 b5 76 17 9a 3d 5d c0 1c 6b 7f |0E.!...v..=]..k.| +00000010 f9 6b 96 b2 f7 1e 6e da f2 3c 79 a3 ea b3 28 d7 |.k....n.. DEBU 22e 0xc420151178 principal evaluation succeeds for identity 0 +2018-01-14 11:45:32.475 UTC [cauthdsl] func1 -> DEBU 22f 0xc420151178 gate 1515930332473192864 evaluation succeeds +2018-01-14 11:45:32.475 UTC [orderer/common/sigfilter] Apply -> DEBU 230 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380c20 1 [0xc420150650]}) Writers]} +2018-01-14 11:45:32.475 UTC [msp] GetLocalMSP -> DEBU 231 Returning existing local MSP +2018-01-14 11:45:32.475 UTC [msp] GetDefaultSigningIdentity -> DEBU 232 Obtaining default signing identity +2018-01-14 11:45:32.475 UTC [msp] GetLocalMSP -> DEBU 233 Returning existing local MSP +2018-01-14 11:45:32.475 UTC [msp] GetDefaultSigningIdentity -> DEBU 234 Obtaining default signing identity +2018-01-14 11:45:32.476 UTC [msp/identity] Sign -> DEBU 235 Sign: plaintext: 0AB7060A1B08011A0608DC85EDD20522...41646D696E7310021A0641646D696E73 +2018-01-14 11:45:32.476 UTC [msp/identity] Sign -> DEBU 236 Sign: digest: 1851F67AFE49F54696152F7AF7DF1F4FA7AE4933EB845698A883F535860A18CB +2018-01-14 11:45:32.476 UTC [common/config] NewStandardValues -> DEBU 237 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.476 UTC [common/config] initializeProtosStruct -> DEBU 238 Processing field: HashingAlgorithm +2018-01-14 11:45:32.476 UTC [common/config] initializeProtosStruct -> DEBU 239 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.476 UTC [common/config] initializeProtosStruct -> DEBU 23a Processing field: OrdererAddresses +2018-01-14 11:45:32.476 UTC [common/config] initializeProtosStruct -> DEBU 23b Processing field: Consortium +2018-01-14 11:45:32.476 UTC [common/configtx] addToMap -> DEBU 23c Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 23d Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 23e Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 23f Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 240 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 241 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 242 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 243 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 244 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 245 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:32.477 UTC [common/configtx] addToMap -> DEBU 246 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:32.478 UTC [common/configtx] addToMap -> DEBU 247 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:32.482 UTC [common/configtx] addToMap -> DEBU 248 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:32.483 UTC [common/configtx] addToMap -> DEBU 249 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:32.483 UTC [common/configtx] addToMap -> DEBU 24a Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24b Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24c Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24e Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 24f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:32.484 UTC [common/configtx] addToMap -> DEBU 250 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 251 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 252 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 253 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 254 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 255 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 256 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 257 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 258 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 259 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 25a Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 25b Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 25c Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:32.485 UTC [common/configtx] addToMap -> DEBU 25d Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:32.485 UTC [common/configtx] processConfig -> DEBU 25e Beginning new config for channel businesschannel +2018-01-14 11:45:32.485 UTC [common/config] NewStandardValues -> DEBU 25f Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.485 UTC [common/config] initializeProtosStruct -> DEBU 260 Processing field: HashingAlgorithm +2018-01-14 11:45:32.485 UTC [common/config] initializeProtosStruct -> DEBU 261 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.485 UTC [common/config] initializeProtosStruct -> DEBU 262 Processing field: OrdererAddresses +2018-01-14 11:45:32.485 UTC [common/config] initializeProtosStruct -> DEBU 263 Processing field: Consortium +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 264 Proposed new policy Writers for Channel +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 265 Proposed new policy Admins for Channel +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 266 Proposed new policy Readers for Channel +2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 267 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 268 Processing field: ConsensusType +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 269 Processing field: BatchSize +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 26a Processing field: BatchTimeout +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 26b Processing field: KafkaBrokers +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 26c Processing field: ChannelRestrictions +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 26d Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 26e Proposed new policy Readers for Orderer +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 26f Proposed new policy Writers for Orderer +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 270 Proposed new policy Admins for Orderer +2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 271 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 272 Processing field: MSP +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 273 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 274 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 275 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 276 Initializing protos for *struct {} +2018-01-14 11:45:32.486 UTC [policies] ProposePolicy -> DEBU 277 Proposed new policy ChannelCreationPolicy for Application +2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 278 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 279 Processing field: MSP +2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 27a Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 27b Processing field: AnchorPeers +2018-01-14 11:45:32.486 UTC [common/config] NewStandardValues -> DEBU 27c Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.486 UTC [common/config] initializeProtosStruct -> DEBU 27d Processing field: MSP +2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 27e Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 27f Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 280 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.487 UTC [common/config] NewStandardValues -> DEBU 281 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.487 UTC [common/config] initializeProtosStruct -> DEBU 282 Processing field: MSP +2018-01-14 11:45:32.487 UTC [common/config] NewStandardValues -> DEBU 283 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.487 UTC [common/config] initializeProtosStruct -> DEBU 284 Processing field: AnchorPeers +2018-01-14 11:45:32.487 UTC [common/config] NewStandardValues -> DEBU 285 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.487 UTC [common/config] initializeProtosStruct -> DEBU 286 Processing field: MSP +2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 287 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 288 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.487 UTC [policies] ProposePolicy -> DEBU 289 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.488 UTC [common/config] validateMSP -> DEBU 28a Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.488 UTC [msp] NewBccspMsp -> DEBU 28b Creating BCCSP-based MSP instance +2018-01-14 11:45:32.488 UTC [msp] Setup -> DEBU 28c Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.488 UTC [msp/identity] newIdentity -> DEBU 28d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:32.489 UTC [msp/identity] newIdentity -> DEBU 28e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.490 UTC [msp/identity] newIdentity -> DEBU 28f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.491 UTC [msp] Validate -> DEBU 290 MSP OrdererMSP validating identity +2018-01-14 11:45:32.491 UTC [common/config] Validate -> DEBU 291 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.491 UTC [common/config] validateMSP -> DEBU 292 Setting up MSP for org Org1MSP +2018-01-14 11:45:32.491 UTC [msp] NewBccspMsp -> DEBU 293 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.491 UTC [msp] Setup -> DEBU 294 Setting up MSP instance Org1MSP +2018-01-14 11:45:32.491 UTC [msp/identity] newIdentity -> DEBU 295 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1111,7 +1175,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.189 UTC [msp/identity] newIdentity -> DEBU 288 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.492 UTC [msp/identity] newIdentity -> DEBU 296 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1125,7 +1189,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.190 UTC [msp/identity] newIdentity -> DEBU 289 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.494 UTC [msp/identity] newIdentity -> DEBU 297 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1139,12 +1203,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.190 UTC [msp] Validate -> DEBU 28a MSP Org1MSP validating identity -2018-01-04 01:50:57.190 UTC [common/config] Validate -> DEBU 28b Anchor peers for org Org2MSP are -2018-01-04 01:50:57.190 UTC [common/config] validateMSP -> DEBU 28c Setting up MSP for org Org2MSP -2018-01-04 01:50:57.190 UTC [msp] NewBccspMsp -> DEBU 28d Creating BCCSP-based MSP instance -2018-01-04 01:50:57.190 UTC [msp] Setup -> DEBU 28e Setting up MSP instance Org2MSP -2018-01-04 01:50:57.190 UTC [msp/identity] newIdentity -> DEBU 28f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.495 UTC [msp] Validate -> DEBU 298 MSP Org1MSP validating identity +2018-01-14 11:45:32.495 UTC [common/config] Validate -> DEBU 299 Anchor peers for org Org2MSP are +2018-01-14 11:45:32.495 UTC [common/config] validateMSP -> DEBU 29a Setting up MSP for org Org2MSP +2018-01-14 11:45:32.495 UTC [msp] NewBccspMsp -> DEBU 29b Creating BCCSP-based MSP instance +2018-01-14 11:45:32.495 UTC [msp] Setup -> DEBU 29c Setting up MSP instance Org2MSP +2018-01-14 11:45:32.495 UTC [msp/identity] newIdentity -> DEBU 29d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1159,7 +1223,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:57.191 UTC [msp/identity] newIdentity -> DEBU 290 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.495 UTC [msp/identity] newIdentity -> DEBU 29e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1173,7 +1237,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.191 UTC [msp/identity] newIdentity -> DEBU 291 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.496 UTC [msp/identity] newIdentity -> DEBU 29f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1187,129 +1251,85 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.191 UTC [msp] Validate -> DEBU 292 MSP Org2MSP validating identity -2018-01-04 01:50:57.192 UTC [common/config] validateMSP -> DEBU 293 Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.192 UTC [msp] NewBccspMsp -> DEBU 294 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.192 UTC [msp] Setup -> DEBU 295 Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.192 UTC [msp/identity] newIdentity -> DEBU 296 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:50:57.192 UTC [msp/identity] newIdentity -> DEBU 297 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.192 UTC [msp/identity] newIdentity -> DEBU 298 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.193 UTC [msp] Validate -> DEBU 299 MSP OrdererMSP validating identity -2018-01-04 01:50:57.193 UTC [msp] Setup -> DEBU 29a Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.193 UTC [msp] Setup -> DEBU 29b MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 29c Returning policy Writers for evaluation -2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 29d In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 29e Returning policy Admins for evaluation -2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 29f In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a0 Returning policy Readers for evaluation -2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2a1 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a2 Returning policy Writers for evaluation -2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2a3 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a4 Returning policy Admins for evaluation -2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2a5 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a6 Returning policy Readers for evaluation -2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2a7 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a8 Returning policy Admins for evaluation -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2a9 Returning policy Admins for evaluation -2018-01-04 01:50:57.193 UTC [policies] GetPolicy -> DEBU 2aa Returning policy Writers for evaluation -2018-01-04 01:50:57.193 UTC [policies] CommitProposals -> DEBU 2ab In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2ac Returning policy Admins for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2ad In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2ae Returning policy Readers for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2af In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b0 Returning policy Admins for evaluation -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b1 Returning policy Writers for evaluation -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b2 Returning policy Readers for evaluation -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b3 Returning policy Writers for evaluation -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b4 Returning policy ChannelCreationPolicy for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2b5 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b6 Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2b7 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2b8 Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2b9 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2ba Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2bb In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2bc Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2bd In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2be Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2bf In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2c0 Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:57.194 UTC [policies] CommitProposals -> DEBU 2c1 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:57.194 UTC [policies] GetPolicy -> DEBU 2c2 Returning policy Admins for evaluation -2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2c3 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2c4 Returning policy BlockValidation for evaluation -2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2c5 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2c6 Returning policy Readers for evaluation -2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2c7 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2c8 Returning policy Writers for evaluation -2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2c9 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2ca Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2cb In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2cc Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2cd In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2ce Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:57.195 UTC [policies] CommitProposals -> DEBU 2cf In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2d0 Returning dummy reject all policy because Admins could not be found in /Application/Admins -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2d1 Returning policy Admins for evaluation -2018-01-04 01:50:57.195 UTC [policies] GetPolicy -> DEBU 2d2 Returning dummy reject all policy because Readers could not be found in /Application/Readers -2018-01-04 01:50:57.196 UTC [policies] GetPolicy -> DEBU 2d3 Returning policy Readers for evaluation -2018-01-04 01:50:57.196 UTC [policies] GetPolicy -> DEBU 2d4 Returning dummy reject all policy because Writers could not be found in /Application/Writers -2018-01-04 01:50:57.196 UTC [policies] GetPolicy -> DEBU 2d5 Returning policy Writers for evaluation -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2d6 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2d7 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2d8 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2d9 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2da Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2db Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2dc Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2dd Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2de Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2df Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.196 UTC [common/configtx] addToMap -> DEBU 2e0 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.197 UTC [common/configtx] addToMap -> DEBU 2e1 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.197 UTC [common/configtx] addToMap -> DEBU 2e2 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.197 UTC [policies] GetPolicy -> DEBU 2e3 Returning policy ChannelCreationPolicy for evaluation -2018-01-04 01:50:57.197 UTC [cauthdsl] func1 -> DEBU 2e4 0xc420026898 gate 1515030657197156100 evaluation starts -2018-01-04 01:50:57.197 UTC [cauthdsl] func2 -> DEBU 2e5 0xc420026898 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.197 UTC [cauthdsl] func2 -> DEBU 2e6 0xc420026898 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.197 UTC [msp/identity] newIdentity -> DEBU 2e7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.496 UTC [msp] Validate -> DEBU 2a0 MSP Org2MSP validating identity +2018-01-14 11:45:32.497 UTC [msp] Setup -> DEBU 2a1 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.497 UTC [msp] Setup -> DEBU 2a2 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2a3 Returning policy Readers for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2a4 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2a5 Returning policy Writers for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2a6 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2a7 Returning policy Admins for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2a8 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2a9 Returning policy Writers for evaluation +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2aa Returning policy Readers for evaluation +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2ab Returning policy Writers for evaluation +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2ac Returning policy Admins for evaluation +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2ad Returning policy Writers for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2ae In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2af Returning policy Admins for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b0 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b1 Returning policy Readers for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b2 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b3 Returning policy Readers for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b4 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b5 Returning policy Writers for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b6 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b7 Returning policy Admins for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2b8 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2b9 Returning policy Admins for evaluation +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2ba Returning policy Admins for evaluation +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2bb Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2bc In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:32.497 UTC [policies] GetPolicy -> DEBU 2bd Returning policy BlockValidation for evaluation +2018-01-14 11:45:32.497 UTC [policies] CommitProposals -> DEBU 2be In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2bf Returning policy Readers for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c0 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c1 Returning policy Writers for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c2 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c3 Returning policy Admins for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c4 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c5 Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c6 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c7 Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2c8 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2c9 Returning policy ChannelCreationPolicy for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2ca In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2cb Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2cc In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2cd Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2ce In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2cf Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2d0 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d1 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2d2 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d3 Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2d4 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d5 Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:32.498 UTC [policies] CommitProposals -> DEBU 2d6 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d7 Returning policy Writers for evaluation +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d8 Returning dummy reject all policy because Writers could not be found in /Application/Writers +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2d9 Returning policy Admins for evaluation +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2da Returning dummy reject all policy because Admins could not be found in /Application/Admins +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2db Returning policy Readers for evaluation +2018-01-14 11:45:32.498 UTC [policies] GetPolicy -> DEBU 2dc Returning dummy reject all policy because Readers could not be found in /Application/Readers +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2dd Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2de Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2df Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e0 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e1 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e2 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e3 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e4 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e5 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e6 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e7 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e8 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.499 UTC [common/configtx] addToMap -> DEBU 2e9 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.500 UTC [policies] GetPolicy -> DEBU 2ea Returning policy ChannelCreationPolicy for evaluation +2018-01-14 11:45:32.500 UTC [cauthdsl] func1 -> DEBU 2eb 0xc420150df8 gate 1515930332500099064 evaluation starts +2018-01-14 11:45:32.500 UTC [cauthdsl] func2 -> DEBU 2ec 0xc420150df8 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.500 UTC [cauthdsl] func2 -> DEBU 2ed 0xc420150df8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.500 UTC [msp/identity] newIdentity -> DEBU 2ee Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1323,87 +1343,135 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.197 UTC [msp] SatisfiesPrincipal -> DEBU 2e8 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:57.197 UTC [cauthdsl] func2 -> DEBU 2e9 0xc420026898 principal matched by identity 0 -2018-01-04 01:50:57.197 UTC [msp/identity] Verify -> DEBU 2ea Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -2018-01-04 01:50:57.197 UTC [msp/identity] Verify -> DEBU 2eb Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -00000040 de 20 dd a7 3b f5 |. ..;.| -2018-01-04 01:50:57.197 UTC [cauthdsl] func2 -> DEBU 2ec 0xc420026898 principal evaluation succeeds for identity 0 -2018-01-04 01:50:57.197 UTC [cauthdsl] func1 -> DEBU 2ed 0xc420026898 gate 1515030657197156100 evaluation succeeds -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2ee Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2ef Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f0 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f1 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f2 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f3 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f4 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f5 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f6 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f7 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f8 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2f9 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fa Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fb Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fc Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fd Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2fe Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.198 UTC [common/configtx] recurseConfigMap -> DEBU 2ff Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.199 UTC [common/configtx] recurseConfigMap -> DEBU 300 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.199 UTC [common/configtx] processConfig -> DEBU 301 Beginning new config for channel businesschannel -2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 302 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 303 Processing field: HashingAlgorithm -2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 304 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 305 Processing field: OrdererAddresses -2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 306 Processing field: Consortium -2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 307 Proposed new policy Readers for Channel -2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 308 Proposed new policy Writers for Channel -2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 309 Proposed new policy Admins for Channel -2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 30a Initializing protos for *struct {} -2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 30b Proposed new policy Admins for Application -2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 30c Proposed new policy Writers for Application -2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 30d Proposed new policy Readers for Application -2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 30e Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 30f Processing field: MSP -2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 310 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 311 Processing field: AnchorPeers -2018-01-04 01:50:57.199 UTC [common/config] NewStandardValues -> DEBU 312 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.199 UTC [common/config] initializeProtosStruct -> DEBU 313 Processing field: MSP -2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 314 Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.199 UTC [policies] ProposePolicy -> DEBU 315 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 316 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 317 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 318 Processing field: MSP -2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 319 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 31a Processing field: AnchorPeers -2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 31b Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 31c Processing field: MSP -2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 31d Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 31e Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 31f Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 320 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 321 Processing field: ConsensusType -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 322 Processing field: BatchSize -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 323 Processing field: BatchTimeout -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 324 Processing field: KafkaBrokers -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 325 Processing field: ChannelRestrictions -2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 326 Proposed new policy Writers for Orderer -2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 327 Proposed new policy Admins for Orderer -2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 328 Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.200 UTC [policies] ProposePolicy -> DEBU 329 Proposed new policy Readers for Orderer -2018-01-04 01:50:57.200 UTC [common/config] NewStandardValues -> DEBU 32a Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.200 UTC [common/config] initializeProtosStruct -> DEBU 32b Processing field: MSP -2018-01-04 01:50:57.201 UTC [policies] ProposePolicy -> DEBU 32c Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.201 UTC [policies] ProposePolicy -> DEBU 32d Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.201 UTC [policies] ProposePolicy -> DEBU 32e Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.201 UTC [common/config] Validate -> DEBU 32f Anchor peers for org Org1MSP are -2018-01-04 01:50:57.201 UTC [common/config] validateMSP -> DEBU 330 Setting up MSP for org Org1MSP -2018-01-04 01:50:57.201 UTC [msp] NewBccspMsp -> DEBU 331 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.201 UTC [msp] Setup -> DEBU 332 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.201 UTC [msp/identity] newIdentity -> DEBU 333 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.500 UTC [msp] SatisfiesPrincipal -> DEBU 2ef Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:32.500 UTC [cauthdsl] func2 -> DEBU 2f0 0xc420150df8 principal matched by identity 0 +2018-01-14 11:45:32.500 UTC [msp/identity] Verify -> DEBU 2f1 Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +2018-01-14 11:45:32.500 UTC [msp/identity] Verify -> DEBU 2f2 Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +00000040 12 a6 8e 7f 16 50 |.....P| +2018-01-14 11:45:32.501 UTC [cauthdsl] func2 -> DEBU 2f3 0xc420150df8 principal evaluation succeeds for identity 0 +2018-01-14 11:45:32.501 UTC [cauthdsl] func1 -> DEBU 2f4 0xc420150df8 gate 1515930332500099064 evaluation succeeds +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f5 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f6 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f7 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f8 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2f9 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fa Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fb Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fc Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fd Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2fe Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 2ff Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.501 UTC [common/configtx] recurseConfigMap -> DEBU 300 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 301 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 302 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 303 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 304 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 305 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 306 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.502 UTC [common/configtx] recurseConfigMap -> DEBU 307 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.502 UTC [common/configtx] processConfig -> DEBU 308 Beginning new config for channel businesschannel +2018-01-14 11:45:32.502 UTC [common/config] NewStandardValues -> DEBU 309 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.502 UTC [common/config] initializeProtosStruct -> DEBU 30a Processing field: HashingAlgorithm +2018-01-14 11:45:32.502 UTC [common/config] initializeProtosStruct -> DEBU 30b Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.502 UTC [common/config] initializeProtosStruct -> DEBU 30c Processing field: OrdererAddresses +2018-01-14 11:45:32.502 UTC [common/config] initializeProtosStruct -> DEBU 30d Processing field: Consortium +2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 30e Proposed new policy Readers for Channel +2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 30f Proposed new policy Writers for Channel +2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 310 Proposed new policy Admins for Channel +2018-01-14 11:45:32.502 UTC [common/config] NewStandardValues -> DEBU 311 Initializing protos for *struct {} +2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 312 Proposed new policy Writers for Application +2018-01-14 11:45:32.502 UTC [policies] ProposePolicy -> DEBU 313 Proposed new policy Readers for Application +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 314 Proposed new policy Admins for Application +2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 315 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 316 Processing field: MSP +2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 317 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 318 Processing field: AnchorPeers +2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 319 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 31a Processing field: MSP +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 31b Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 31c Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 31d Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 31e Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 31f Processing field: MSP +2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 320 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 321 Processing field: AnchorPeers +2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 322 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 323 Processing field: MSP +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 324 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 325 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 326 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 327 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 328 Processing field: ConsensusType +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 329 Processing field: BatchSize +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 32a Processing field: BatchTimeout +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 32b Processing field: KafkaBrokers +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 32c Processing field: ChannelRestrictions +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 32d Proposed new policy Admins for Orderer +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 32e Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 32f Proposed new policy Readers for Orderer +2018-01-14 11:45:32.503 UTC [policies] ProposePolicy -> DEBU 330 Proposed new policy Writers for Orderer +2018-01-14 11:45:32.503 UTC [common/config] NewStandardValues -> DEBU 331 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.503 UTC [common/config] initializeProtosStruct -> DEBU 332 Processing field: MSP +2018-01-14 11:45:32.504 UTC [policies] ProposePolicy -> DEBU 333 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.504 UTC [policies] ProposePolicy -> DEBU 334 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.504 UTC [policies] ProposePolicy -> DEBU 335 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.504 UTC [common/config] Validate -> DEBU 336 Anchor peers for org Org2MSP are +2018-01-14 11:45:32.504 UTC [common/config] validateMSP -> DEBU 337 Setting up MSP for org Org2MSP +2018-01-14 11:45:32.504 UTC [msp] NewBccspMsp -> DEBU 338 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.504 UTC [msp] Setup -> DEBU 339 Setting up MSP instance Org2MSP +2018-01-14 11:45:32.504 UTC [msp/identity] newIdentity -> DEBU 33a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-14 11:45:32.505 UTC [msp/identity] newIdentity -> DEBU 33b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.505 UTC [msp/identity] newIdentity -> DEBU 33c Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.506 UTC [msp] Validate -> DEBU 33d MSP Org2MSP validating identity +2018-01-14 11:45:32.506 UTC [common/config] Validate -> DEBU 33e Anchor peers for org Org1MSP are +2018-01-14 11:45:32.506 UTC [common/config] validateMSP -> DEBU 33f Setting up MSP for org Org1MSP +2018-01-14 11:45:32.506 UTC [msp] NewBccspMsp -> DEBU 340 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.506 UTC [msp] Setup -> DEBU 341 Setting up MSP instance Org1MSP +2018-01-14 11:45:32.506 UTC [msp/identity] newIdentity -> DEBU 342 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1418,7 +1486,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.201 UTC [msp/identity] newIdentity -> DEBU 334 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.507 UTC [msp/identity] newIdentity -> DEBU 343 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1432,7 +1500,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.202 UTC [msp/identity] newIdentity -> DEBU 335 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.508 UTC [msp/identity] newIdentity -> DEBU 344 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1446,59 +1514,11 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.202 UTC [msp] Validate -> DEBU 336 MSP Org1MSP validating identity -2018-01-04 01:50:57.202 UTC [common/config] Validate -> DEBU 337 Anchor peers for org Org2MSP are -2018-01-04 01:50:57.202 UTC [common/config] validateMSP -> DEBU 338 Setting up MSP for org Org2MSP -2018-01-04 01:50:57.202 UTC [msp] NewBccspMsp -> DEBU 339 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.202 UTC [msp] Setup -> DEBU 33a Setting up MSP instance Org2MSP -2018-01-04 01:50:57.202 UTC [msp/identity] newIdentity -> DEBU 33b Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-04 01:50:57.203 UTC [msp/identity] newIdentity -> DEBU 33c Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.203 UTC [msp/identity] newIdentity -> DEBU 33d Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.203 UTC [msp] Validate -> DEBU 33e MSP Org2MSP validating identity -2018-01-04 01:50:57.204 UTC [common/config] validateMSP -> DEBU 33f Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.204 UTC [msp] NewBccspMsp -> DEBU 340 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.204 UTC [msp] Setup -> DEBU 341 Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.204 UTC [msp/identity] newIdentity -> DEBU 342 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.509 UTC [msp] Validate -> DEBU 345 MSP Org1MSP validating identity +2018-01-14 11:45:32.509 UTC [common/config] validateMSP -> DEBU 346 Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.509 UTC [msp] NewBccspMsp -> DEBU 347 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.509 UTC [msp] Setup -> DEBU 348 Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.510 UTC [msp/identity] newIdentity -> DEBU 349 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1512,7 +1532,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:57.204 UTC [msp/identity] newIdentity -> DEBU 343 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.510 UTC [msp/identity] newIdentity -> DEBU 34a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1525,7 +1545,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.204 UTC [msp/identity] newIdentity -> DEBU 344 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.511 UTC [msp/identity] newIdentity -> DEBU 34b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1538,63 +1558,63 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.205 UTC [msp] Validate -> DEBU 345 MSP OrdererMSP validating identity -2018-01-04 01:50:57.205 UTC [msp] Setup -> DEBU 346 Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.205 UTC [msp] Setup -> DEBU 347 MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 348 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 349 Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34a Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34b Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:57.205 UTC [common/configtx] addToMap -> DEBU 34e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 34f Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 350 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 351 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 352 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 353 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 354 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 355 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 356 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 357 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 358 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 359 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35a Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35b Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35c Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35d Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:57.206 UTC [common/configtx] addToMap -> DEBU 35f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 360 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 361 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 362 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 363 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 364 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 365 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 366 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 367 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 368 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 369 Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36a Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36b Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36c Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36d Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36e Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 36f Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 370 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 371 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.207 UTC [common/configtx] addToMap -> DEBU 372 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 373 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 374 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 375 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 376 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 377 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.208 UTC [common/configtx] addToMap -> DEBU 378 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.208 UTC [policies] GetPolicy -> DEBU 379 Returning policy ChannelCreationPolicy for evaluation -2018-01-04 01:50:57.208 UTC [cauthdsl] func1 -> DEBU 37a 0xc420026fe8 gate 1515030657208420300 evaluation starts -2018-01-04 01:50:57.208 UTC [cauthdsl] func2 -> DEBU 37b 0xc420026fe8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.208 UTC [cauthdsl] func2 -> DEBU 37c 0xc420026fe8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.208 UTC [msp/identity] newIdentity -> DEBU 37d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.512 UTC [msp] Validate -> DEBU 34c MSP OrdererMSP validating identity +2018-01-14 11:45:32.512 UTC [msp] Setup -> DEBU 34d Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.512 UTC [msp] Setup -> DEBU 34e MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 34f Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 350 Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 351 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 352 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 353 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 354 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 355 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:32.512 UTC [common/configtx] addToMap -> DEBU 356 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 357 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 358 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 359 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35a Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35b Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35c Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35d Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35e Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 35f Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 360 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 361 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 362 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:32.513 UTC [common/configtx] addToMap -> DEBU 363 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 364 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 365 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 366 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 367 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 368 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 369 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.514 UTC [common/configtx] addToMap -> DEBU 36a Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36b Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36c Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36d Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36e Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 36f Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 370 Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 371 Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 372 Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 373 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 374 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 375 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.515 UTC [common/configtx] addToMap -> DEBU 376 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.516 UTC [common/configtx] addToMap -> DEBU 377 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.516 UTC [common/configtx] addToMap -> DEBU 378 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.516 UTC [common/configtx] addToMap -> DEBU 379 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.520 UTC [common/configtx] addToMap -> DEBU 37a Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37b Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37c Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37d Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37e Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.522 UTC [common/configtx] addToMap -> DEBU 37f Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.523 UTC [policies] GetPolicy -> DEBU 380 Returning policy ChannelCreationPolicy for evaluation +2018-01-14 11:45:32.523 UTC [cauthdsl] func1 -> DEBU 381 0xc420150670 gate 1515930332523068164 evaluation starts +2018-01-14 11:45:32.523 UTC [cauthdsl] func2 -> DEBU 382 0xc420150670 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.523 UTC [cauthdsl] func2 -> DEBU 383 0xc420150670 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.523 UTC [msp/identity] newIdentity -> DEBU 384 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1608,86 +1628,86 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.208 UTC [msp] SatisfiesPrincipal -> DEBU 37e Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:57.208 UTC [cauthdsl] func2 -> DEBU 37f 0xc420026fe8 principal matched by identity 0 -2018-01-04 01:50:57.208 UTC [msp/identity] Verify -> DEBU 380 Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -2018-01-04 01:50:57.208 UTC [msp/identity] Verify -> DEBU 381 Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -00000040 de 20 dd a7 3b f5 |. ..;.| -2018-01-04 01:50:57.209 UTC [cauthdsl] func2 -> DEBU 382 0xc420026fe8 principal evaluation succeeds for identity 0 -2018-01-04 01:50:57.209 UTC [cauthdsl] func1 -> DEBU 383 0xc420026fe8 gate 1515030657208420300 evaluation succeeds -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 384 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 385 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 386 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 387 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 388 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 389 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 38a Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 38b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 38c Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.209 UTC [common/configtx] recurseConfigMap -> DEBU 38d Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 38e Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 38f Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 390 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 391 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 392 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 393 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 394 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 395 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] recurseConfigMap -> DEBU 396 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.210 UTC [common/configtx] processConfig -> DEBU 397 Beginning new config for channel businesschannel -2018-01-04 01:50:57.210 UTC [common/config] NewStandardValues -> DEBU 398 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.210 UTC [common/config] initializeProtosStruct -> DEBU 399 Processing field: HashingAlgorithm -2018-01-04 01:50:57.210 UTC [common/config] initializeProtosStruct -> DEBU 39a Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.210 UTC [common/config] initializeProtosStruct -> DEBU 39b Processing field: OrdererAddresses -2018-01-04 01:50:57.210 UTC [common/config] initializeProtosStruct -> DEBU 39c Processing field: Consortium -2018-01-04 01:50:57.210 UTC [policies] ProposePolicy -> DEBU 39d Proposed new policy Readers for Channel -2018-01-04 01:50:57.210 UTC [policies] ProposePolicy -> DEBU 39e Proposed new policy Writers for Channel -2018-01-04 01:50:57.210 UTC [policies] ProposePolicy -> DEBU 39f Proposed new policy Admins for Channel -2018-01-04 01:50:57.210 UTC [common/config] NewStandardValues -> DEBU 3a0 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a1 Processing field: ConsensusType -2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a2 Processing field: BatchSize -2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a3 Processing field: BatchTimeout -2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a4 Processing field: KafkaBrokers -2018-01-04 01:50:57.211 UTC [common/config] initializeProtosStruct -> DEBU 3a5 Processing field: ChannelRestrictions -2018-01-04 01:50:57.211 UTC [policies] ProposePolicy -> DEBU 3a6 Proposed new policy Writers for Orderer -2018-01-04 01:50:57.211 UTC [policies] ProposePolicy -> DEBU 3a7 Proposed new policy Admins for Orderer -2018-01-04 01:50:57.211 UTC [policies] ProposePolicy -> DEBU 3a8 Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.211 UTC [policies] ProposePolicy -> DEBU 3a9 Proposed new policy Readers for Orderer -2018-01-04 01:50:57.212 UTC [common/config] NewStandardValues -> DEBU 3aa Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.212 UTC [common/config] initializeProtosStruct -> DEBU 3ab Processing field: MSP -2018-01-04 01:50:57.212 UTC [policies] ProposePolicy -> DEBU 3ac Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.212 UTC [policies] ProposePolicy -> DEBU 3ad Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.212 UTC [policies] ProposePolicy -> DEBU 3ae Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.212 UTC [common/config] NewStandardValues -> DEBU 3af Initializing protos for *struct {} -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3b0 Proposed new policy Admins for Application -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3b1 Proposed new policy Writers for Application -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3b2 Proposed new policy Readers for Application -2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3b3 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3b4 Processing field: MSP -2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3b5 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3b6 Processing field: AnchorPeers -2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3b7 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3b8 Processing field: MSP -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3b9 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3ba Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3bb Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3bc Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3bd Processing field: MSP -2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3be Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3bf Processing field: AnchorPeers -2018-01-04 01:50:57.213 UTC [common/config] NewStandardValues -> DEBU 3c0 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.213 UTC [common/config] initializeProtosStruct -> DEBU 3c1 Processing field: MSP -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3c2 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3c3 Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.213 UTC [policies] ProposePolicy -> DEBU 3c4 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.213 UTC [common/config] validateMSP -> DEBU 3c5 Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.213 UTC [msp] NewBccspMsp -> DEBU 3c6 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.213 UTC [msp] Setup -> DEBU 3c7 Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.214 UTC [msp/identity] newIdentity -> DEBU 3c8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.523 UTC [msp] SatisfiesPrincipal -> DEBU 385 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:32.523 UTC [cauthdsl] func2 -> DEBU 386 0xc420150670 principal matched by identity 0 +2018-01-14 11:45:32.523 UTC [msp/identity] Verify -> DEBU 387 Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +2018-01-14 11:45:32.523 UTC [msp/identity] Verify -> DEBU 388 Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +00000040 12 a6 8e 7f 16 50 |.....P| +2018-01-14 11:45:32.524 UTC [cauthdsl] func2 -> DEBU 389 0xc420150670 principal evaluation succeeds for identity 0 +2018-01-14 11:45:32.524 UTC [cauthdsl] func1 -> DEBU 38a 0xc420150670 gate 1515930332523068164 evaluation succeeds +2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38b Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38c Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38d Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 38f Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 390 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:32.524 UTC [common/configtx] recurseConfigMap -> DEBU 391 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 392 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 393 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 394 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 395 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 396 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 397 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 398 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 399 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 39a Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 39b Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 39c Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.525 UTC [common/configtx] recurseConfigMap -> DEBU 39d Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.526 UTC [common/configtx] processConfig -> DEBU 39e Beginning new config for channel businesschannel +2018-01-14 11:45:32.526 UTC [common/config] NewStandardValues -> DEBU 39f Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a0 Processing field: HashingAlgorithm +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a1 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a2 Processing field: OrdererAddresses +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a3 Processing field: Consortium +2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3a4 Proposed new policy Readers for Channel +2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3a5 Proposed new policy Writers for Channel +2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3a6 Proposed new policy Admins for Channel +2018-01-14 11:45:32.526 UTC [common/config] NewStandardValues -> DEBU 3a7 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a8 Processing field: ConsensusType +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3a9 Processing field: BatchSize +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3aa Processing field: BatchTimeout +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3ab Processing field: KafkaBrokers +2018-01-14 11:45:32.526 UTC [common/config] initializeProtosStruct -> DEBU 3ac Processing field: ChannelRestrictions +2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3ad Proposed new policy Admins for Orderer +2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3ae Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.526 UTC [policies] ProposePolicy -> DEBU 3af Proposed new policy Readers for Orderer +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b0 Proposed new policy Writers for Orderer +2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3b1 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3b2 Processing field: MSP +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b3 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b4 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b5 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3b6 Initializing protos for *struct {} +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b7 Proposed new policy Readers for Application +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b8 Proposed new policy Admins for Application +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3b9 Proposed new policy Writers for Application +2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3ba Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3bb Processing field: MSP +2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3bc Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3bd Processing field: AnchorPeers +2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3be Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3bf Processing field: MSP +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3c0 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3c1 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3c2 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3c3 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3c4 Processing field: MSP +2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3c5 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3c6 Processing field: AnchorPeers +2018-01-14 11:45:32.527 UTC [common/config] NewStandardValues -> DEBU 3c7 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.527 UTC [common/config] initializeProtosStruct -> DEBU 3c8 Processing field: MSP +2018-01-14 11:45:32.527 UTC [policies] ProposePolicy -> DEBU 3c9 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.528 UTC [policies] ProposePolicy -> DEBU 3ca Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.528 UTC [policies] ProposePolicy -> DEBU 3cb Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.528 UTC [common/config] validateMSP -> DEBU 3cc Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.528 UTC [msp] NewBccspMsp -> DEBU 3cd Creating BCCSP-based MSP instance +2018-01-14 11:45:32.528 UTC [msp] Setup -> DEBU 3ce Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.528 UTC [msp/identity] newIdentity -> DEBU 3cf Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -1701,7 +1721,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:57.214 UTC [msp/identity] newIdentity -> DEBU 3c9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.529 UTC [msp/identity] newIdentity -> DEBU 3d0 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1714,7 +1734,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.215 UTC [msp/identity] newIdentity -> DEBU 3ca Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.529 UTC [msp/identity] newIdentity -> DEBU 3d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1727,60 +1747,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.215 UTC [msp] Validate -> DEBU 3cb MSP OrdererMSP validating identity -2018-01-04 01:50:57.216 UTC [common/config] Validate -> DEBU 3cc Anchor peers for org Org2MSP are -2018-01-04 01:50:57.216 UTC [common/config] validateMSP -> DEBU 3cd Setting up MSP for org Org2MSP -2018-01-04 01:50:57.216 UTC [msp] NewBccspMsp -> DEBU 3ce Creating BCCSP-based MSP instance -2018-01-04 01:50:57.216 UTC [msp] Setup -> DEBU 3cf Setting up MSP instance Org2MSP -2018-01-04 01:50:57.216 UTC [msp/identity] newIdentity -> DEBU 3d0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-04 01:50:57.216 UTC [msp/identity] newIdentity -> DEBU 3d1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.217 UTC [msp/identity] newIdentity -> DEBU 3d2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.217 UTC [msp] Validate -> DEBU 3d3 MSP Org2MSP validating identity -2018-01-04 01:50:57.217 UTC [common/config] Validate -> DEBU 3d4 Anchor peers for org Org1MSP are -2018-01-04 01:50:57.217 UTC [common/config] validateMSP -> DEBU 3d5 Setting up MSP for org Org1MSP -2018-01-04 01:50:57.217 UTC [msp] NewBccspMsp -> DEBU 3d6 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.217 UTC [msp] Setup -> DEBU 3d7 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.217 UTC [msp/identity] newIdentity -> DEBU 3d8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.529 UTC [msp] Validate -> DEBU 3d2 MSP OrdererMSP validating identity +2018-01-14 11:45:32.530 UTC [common/config] Validate -> DEBU 3d3 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.530 UTC [common/config] validateMSP -> DEBU 3d4 Setting up MSP for org Org1MSP +2018-01-14 11:45:32.530 UTC [msp] NewBccspMsp -> DEBU 3d5 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.530 UTC [msp] Setup -> DEBU 3d6 Setting up MSP instance Org1MSP +2018-01-14 11:45:32.530 UTC [msp/identity] newIdentity -> DEBU 3d7 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1795,7 +1767,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.218 UTC [msp/identity] newIdentity -> DEBU 3d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.530 UTC [msp/identity] newIdentity -> DEBU 3d8 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1809,7 +1781,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.218 UTC [msp/identity] newIdentity -> DEBU 3da Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.531 UTC [msp/identity] newIdentity -> DEBU 3d9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1823,271 +1795,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.218 UTC [msp] Validate -> DEBU 3db MSP Org1MSP validating identity -2018-01-04 01:50:57.218 UTC [msp] Setup -> DEBU 3dc Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.218 UTC [msp] Setup -> DEBU 3dd MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3de Returning policy Writers for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3df In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e0 Returning policy Admins for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3e1 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e2 Returning policy Readers for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3e3 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e4 Returning policy Writers for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e5 Returning policy Admins for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e6 Returning policy Writers for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e7 Returning policy Readers for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3e8 Returning policy Readers for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3e9 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3ea Returning policy Writers for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3eb In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3ec Returning policy Admins for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3ed In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3ee Returning policy Admins for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3ef In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f0 Returning policy Readers for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3f1 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f2 Returning policy Writers for evaluation -2018-01-04 01:50:57.219 UTC [policies] CommitProposals -> DEBU 3f3 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f4 Returning policy Admins for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f5 Returning policy Admins for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f6 Returning policy Writers for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f7 Returning policy Writers for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f8 Returning policy Readers for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3f9 Returning policy Readers for evaluation -2018-01-04 01:50:57.219 UTC [policies] GetPolicy -> DEBU 3fa Returning policy Writers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 3fb In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 3fc Returning policy Admins for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 3fd In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 3fe Returning policy BlockValidation for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 3ff In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 400 Returning policy Readers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 401 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 402 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 403 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 404 Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 405 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 406 Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 407 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 408 Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 409 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 40a Returning policy Admins for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 40b In commit adding relative sub-policy Application/Admins to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 40c Returning policy Writers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 40d In commit adding relative sub-policy Application/Writers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 40e Returning policy Readers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 40f In commit adding relative sub-policy Application/Readers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 410 Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 411 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 412 Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 413 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 414 Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 415 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:57.220 UTC [policies] GetPolicy -> DEBU 416 Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:57.220 UTC [policies] CommitProposals -> DEBU 417 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 418 Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 419 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41a Returning policy Readers for evaluation -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41b Returning policy Readers for evaluation -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41c Returning policy Writers for evaluation -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41d Returning policy Writers for evaluation -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41e Returning policy Admins for evaluation -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 41f Returning policy Admins for evaluation -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 420 Returning policy Readers for evaluation -2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 421 As expected, current configuration has policy '/Channel/Readers' -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 422 Returning policy Writers for evaluation -2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 423 As expected, current configuration has policy '/Channel/Writers' -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 424 Returning policy Application/Readers for evaluation -2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 425 As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 426 Returning policy Application/Writers for evaluation -2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 427 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 428 Returning policy Application/Admins for evaluation -2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 429 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-04 01:50:57.221 UTC [policies] GetPolicy -> DEBU 42a Returning policy Orderer/BlockValidation for evaluation -2018-01-04 01:50:57.221 UTC [policies] CommitProposals -> DEBU 42b As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-04 01:50:57.221 UTC [common/config] NewStandardValues -> DEBU 42c Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.221 UTC [common/config] initializeProtosStruct -> DEBU 42d Processing field: HashingAlgorithm -2018-01-04 01:50:57.221 UTC [common/config] initializeProtosStruct -> DEBU 42e Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.221 UTC [common/config] initializeProtosStruct -> DEBU 42f Processing field: OrdererAddresses -2018-01-04 01:50:57.221 UTC [common/config] initializeProtosStruct -> DEBU 430 Processing field: Consortium -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 431 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 432 Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 433 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 434 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 435 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 436 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 437 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 438 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 439 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43a Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43b Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43c Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43d Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43e Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 43f Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 440 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 441 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 442 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:57.222 UTC [common/configtx] addToMap -> DEBU 443 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 444 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 445 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 446 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 447 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 448 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 449 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44a Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44b Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44c Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44d Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44e Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 44f Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 450 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 451 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 452 Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 453 Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:57.223 UTC [common/configtx] addToMap -> DEBU 454 Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:57.223 UTC [common/configtx] processConfig -> DEBU 455 Beginning new config for channel businesschannel -2018-01-04 01:50:57.224 UTC [common/config] NewStandardValues -> DEBU 456 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 457 Processing field: HashingAlgorithm -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 458 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 459 Processing field: OrdererAddresses -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 45a Processing field: Consortium -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 45b Proposed new policy Readers for Channel -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 45c Proposed new policy Writers for Channel -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 45d Proposed new policy Admins for Channel -2018-01-04 01:50:57.224 UTC [common/config] NewStandardValues -> DEBU 45e Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 45f Processing field: ConsensusType -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 460 Processing field: BatchSize -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 461 Processing field: BatchTimeout -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 462 Processing field: KafkaBrokers -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 463 Processing field: ChannelRestrictions -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 464 Proposed new policy Admins for Orderer -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 465 Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 466 Proposed new policy Readers for Orderer -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 467 Proposed new policy Writers for Orderer -2018-01-04 01:50:57.224 UTC [common/config] NewStandardValues -> DEBU 468 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.224 UTC [common/config] initializeProtosStruct -> DEBU 469 Processing field: MSP -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46a Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46b Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46c Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.224 UTC [common/config] NewStandardValues -> DEBU 46d Initializing protos for *struct {} -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46e Proposed new policy Admins for Application -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 46f Proposed new policy Writers for Application -2018-01-04 01:50:57.224 UTC [policies] ProposePolicy -> DEBU 470 Proposed new policy Readers for Application -2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 471 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 472 Processing field: MSP -2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 473 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 474 Processing field: AnchorPeers -2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 475 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 476 Processing field: MSP -2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 477 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 478 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 479 Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 47a Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 47b Processing field: MSP -2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 47c Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 47d Processing field: AnchorPeers -2018-01-04 01:50:57.225 UTC [common/config] NewStandardValues -> DEBU 47e Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.225 UTC [common/config] initializeProtosStruct -> DEBU 47f Processing field: MSP -2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 480 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 481 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.225 UTC [policies] ProposePolicy -> DEBU 482 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.225 UTC [common/config] validateMSP -> DEBU 483 Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.225 UTC [msp] NewBccspMsp -> DEBU 484 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.225 UTC [msp] Setup -> DEBU 485 Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.226 UTC [msp/identity] newIdentity -> DEBU 486 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:50:57.226 UTC [msp/identity] newIdentity -> DEBU 487 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.226 UTC [msp/identity] newIdentity -> DEBU 488 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.227 UTC [msp] Validate -> DEBU 489 MSP OrdererMSP validating identity -2018-01-04 01:50:57.227 UTC [common/config] Validate -> DEBU 48a Anchor peers for org Org1MSP are -2018-01-04 01:50:57.227 UTC [common/config] validateMSP -> DEBU 48b Setting up MSP for org Org1MSP -2018-01-04 01:50:57.227 UTC [msp] NewBccspMsp -> DEBU 48c Creating BCCSP-based MSP instance -2018-01-04 01:50:57.227 UTC [msp] Setup -> DEBU 48d Setting up MSP instance Org1MSP -2018-01-04 01:50:57.227 UTC [msp/identity] newIdentity -> DEBU 48e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-04 01:50:57.228 UTC [msp/identity] newIdentity -> DEBU 48f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:50:57.228 UTC [msp/identity] newIdentity -> DEBU 490 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:50:57.228 UTC [msp] Validate -> DEBU 491 MSP Org1MSP validating identity -2018-01-04 01:50:57.228 UTC [common/config] Validate -> DEBU 492 Anchor peers for org Org2MSP are -2018-01-04 01:50:57.228 UTC [common/config] validateMSP -> DEBU 493 Setting up MSP for org Org2MSP -2018-01-04 01:50:57.228 UTC [msp] NewBccspMsp -> DEBU 494 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.228 UTC [msp] Setup -> DEBU 495 Setting up MSP instance Org2MSP -2018-01-04 01:50:57.229 UTC [msp/identity] newIdentity -> DEBU 496 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.531 UTC [msp] Validate -> DEBU 3da MSP Org1MSP validating identity +2018-01-14 11:45:32.531 UTC [common/config] Validate -> DEBU 3db Anchor peers for org Org2MSP are +2018-01-14 11:45:32.531 UTC [common/config] validateMSP -> DEBU 3dc Setting up MSP for org Org2MSP +2018-01-14 11:45:32.531 UTC [msp] NewBccspMsp -> DEBU 3dd Creating BCCSP-based MSP instance +2018-01-14 11:45:32.531 UTC [msp] Setup -> DEBU 3de Setting up MSP instance Org2MSP +2018-01-14 11:45:32.532 UTC [msp/identity] newIdentity -> DEBU 3df Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2102,7 +1815,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:57.229 UTC [msp/identity] newIdentity -> DEBU 497 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.532 UTC [msp/identity] newIdentity -> DEBU 3e0 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2116,7 +1829,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.229 UTC [msp/identity] newIdentity -> DEBU 498 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.532 UTC [msp/identity] newIdentity -> DEBU 3e1 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2130,93 +1843,400 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.230 UTC [msp] Validate -> DEBU 499 MSP Org2MSP validating identity -2018-01-04 01:50:57.230 UTC [msp] Setup -> DEBU 49a Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.230 UTC [msp] Setup -> DEBU 49b MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 49c Returning policy Writers for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 49d In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 49e Returning policy Admins for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 49f In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a0 Returning policy Readers for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4a1 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a2 Returning policy Admins for evaluation -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a3 Returning policy Writers for evaluation -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a4 Returning policy Readers for evaluation -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a5 Returning policy Writers for evaluation -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a6 Returning policy Writers for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4a7 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4a8 Returning policy Admins for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4a9 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4aa Returning policy Readers for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4ab In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4ac Returning policy Admins for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4ad In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4ae Returning policy Readers for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4af In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4b0 Returning policy Writers for evaluation -2018-01-04 01:50:57.230 UTC [policies] CommitProposals -> DEBU 4b1 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:57.230 UTC [policies] GetPolicy -> DEBU 4b2 Returning policy Admins for evaluation -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b3 Returning policy Admins for evaluation -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b4 Returning policy Writers for evaluation -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b5 Returning policy Writers for evaluation -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b6 Returning policy Readers for evaluation -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b7 Returning policy Readers for evaluation -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4b8 Returning policy Admins for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4b9 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4ba Returning policy BlockValidation for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4bb In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4bc Returning policy Readers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4bd In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4be Returning policy Writers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4bf In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c0 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c1 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c2 Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c3 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c4 Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c5 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c6 Returning policy Writers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c7 In commit adding relative sub-policy Application/Writers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4c8 Returning policy Readers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4c9 In commit adding relative sub-policy Application/Readers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4ca Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4cb In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4cc Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4cd In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4ce Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4cf In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4d0 Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:57.231 UTC [policies] CommitProposals -> DEBU 4d1 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:57.231 UTC [policies] GetPolicy -> DEBU 4d2 Returning policy Admins for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4d3 In commit adding relative sub-policy Application/Admins to Channel -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4d4 Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4d5 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4d6 Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4d7 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4d8 Returning policy Readers for evaluation -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4d9 Returning policy Readers for evaluation -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4da Returning policy Writers for evaluation -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4db Returning policy Writers for evaluation -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4dc Returning policy Admins for evaluation -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4dd Returning policy Admins for evaluation -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4de Returning policy Readers for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4df As expected, current configuration has policy '/Channel/Readers' -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e0 Returning policy Writers for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e1 As expected, current configuration has policy '/Channel/Writers' -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e2 Returning policy Application/Readers for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e3 As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e4 Returning policy Application/Writers for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e5 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e6 Returning policy Application/Admins for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e7 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-04 01:50:57.232 UTC [policies] GetPolicy -> DEBU 4e8 Returning policy Orderer/BlockValidation for evaluation -2018-01-04 01:50:57.232 UTC [policies] CommitProposals -> DEBU 4e9 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-04 01:50:57.232 UTC [orderer/common/broadcast] Handle -> DEBU 4ea [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION -2018-01-04 01:50:57.233 UTC [policies] GetPolicy -> DEBU 4eb Returning policy Writers for evaluation -2018-01-04 01:50:57.233 UTC [cauthdsl] func1 -> DEBU 4ec 0xc420026fb8 gate 1515030657233435400 evaluation starts -2018-01-04 01:50:57.233 UTC [cauthdsl] func2 -> DEBU 4ed 0xc420026fb8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.233 UTC [cauthdsl] func2 -> DEBU 4ee 0xc420026fb8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.233 UTC [msp/identity] newIdentity -> DEBU 4ef Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.533 UTC [msp] Validate -> DEBU 3e2 MSP Org2MSP validating identity +2018-01-14 11:45:32.533 UTC [msp] Setup -> DEBU 3e3 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.533 UTC [msp] Setup -> DEBU 3e4 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.533 UTC [policies] GetPolicy -> DEBU 3e5 Returning policy Readers for evaluation +2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3e6 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3e7 Returning policy Writers for evaluation +2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3e8 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3e9 Returning policy Admins for evaluation +2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3ea In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3eb Returning policy Admins for evaluation +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3ec Returning policy Writers for evaluation +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3ed Returning policy Readers for evaluation +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3ee Returning policy Writers for evaluation +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3ef Returning policy Admins for evaluation +2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3f0 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3f1 Returning policy Readers for evaluation +2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3f2 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3f3 Returning policy Writers for evaluation +2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3f4 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:32.534 UTC [policies] GetPolicy -> DEBU 3f5 Returning policy Admins for evaluation +2018-01-14 11:45:32.534 UTC [policies] CommitProposals -> DEBU 3f6 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3f7 Returning policy Readers for evaluation +2018-01-14 11:45:32.535 UTC [policies] CommitProposals -> DEBU 3f8 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3f9 Returning policy Writers for evaluation +2018-01-14 11:45:32.535 UTC [policies] CommitProposals -> DEBU 3fa In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3fb Returning policy Readers for evaluation +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3fc Returning policy Readers for evaluation +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3fd Returning policy Admins for evaluation +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3fe Returning policy Admins for evaluation +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 3ff Returning policy Writers for evaluation +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 400 Returning policy Writers for evaluation +2018-01-14 11:45:32.535 UTC [policies] GetPolicy -> DEBU 401 Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:32.535 UTC [policies] CommitProposals -> DEBU 402 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 403 Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 404 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 405 Returning policy Admins for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 406 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 407 Returning policy BlockValidation for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 408 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 409 Returning policy Readers for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 40a In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 40b Returning policy Writers for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 40c In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 40d Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 40e In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 40f Returning policy Readers for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 410 In commit adding relative sub-policy Application/Readers to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 411 Returning policy Admins for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 412 In commit adding relative sub-policy Application/Admins to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 413 Returning policy Writers for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 414 In commit adding relative sub-policy Application/Writers to Channel +2018-01-14 11:45:32.536 UTC [policies] GetPolicy -> DEBU 415 Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:32.536 UTC [policies] CommitProposals -> DEBU 416 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 417 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 418 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 419 Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 41a In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 41b Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 41c In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 41d Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 41e In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 41f Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 420 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 421 Returning policy Readers for evaluation +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 422 Returning policy Readers for evaluation +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 423 Returning policy Writers for evaluation +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 424 Returning policy Writers for evaluation +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 425 Returning policy Admins for evaluation +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 426 Returning policy Admins for evaluation +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 427 Returning policy Readers for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 428 As expected, current configuration has policy '/Channel/Readers' +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 429 Returning policy Writers for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 42a As expected, current configuration has policy '/Channel/Writers' +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 42b Returning policy Application/Readers for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 42c As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 42d Returning policy Application/Writers for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 42e As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 42f Returning policy Application/Admins for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 430 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-14 11:45:32.537 UTC [policies] GetPolicy -> DEBU 431 Returning policy Orderer/BlockValidation for evaluation +2018-01-14 11:45:32.537 UTC [policies] CommitProposals -> DEBU 432 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-14 11:45:32.537 UTC [common/config] NewStandardValues -> DEBU 433 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.537 UTC [common/config] initializeProtosStruct -> DEBU 434 Processing field: HashingAlgorithm +2018-01-14 11:45:32.538 UTC [common/config] initializeProtosStruct -> DEBU 435 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.538 UTC [common/config] initializeProtosStruct -> DEBU 436 Processing field: OrdererAddresses +2018-01-14 11:45:32.538 UTC [common/config] initializeProtosStruct -> DEBU 437 Processing field: Consortium +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 438 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 439 Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43a Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43b Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 43f Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 440 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 441 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:32.538 UTC [common/configtx] addToMap -> DEBU 442 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 443 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 444 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 445 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 446 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 447 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 448 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 449 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44a Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44d Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.539 UTC [common/configtx] addToMap -> DEBU 44e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 44f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 450 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 451 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 452 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 453 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 454 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 455 Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 456 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 457 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 458 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:32.540 UTC [common/configtx] addToMap -> DEBU 459 Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:32.541 UTC [common/configtx] addToMap -> DEBU 45a Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:32.541 UTC [common/configtx] addToMap -> DEBU 45b Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:32.541 UTC [common/configtx] processConfig -> DEBU 45c Beginning new config for channel businesschannel +2018-01-14 11:45:32.541 UTC [common/config] NewStandardValues -> DEBU 45d Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.541 UTC [common/config] initializeProtosStruct -> DEBU 45e Processing field: HashingAlgorithm +2018-01-14 11:45:32.541 UTC [common/config] initializeProtosStruct -> DEBU 45f Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.541 UTC [common/config] initializeProtosStruct -> DEBU 460 Processing field: OrdererAddresses +2018-01-14 11:45:32.541 UTC [common/config] initializeProtosStruct -> DEBU 461 Processing field: Consortium +2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 462 Proposed new policy Readers for Channel +2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 463 Proposed new policy Writers for Channel +2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 464 Proposed new policy Admins for Channel +2018-01-14 11:45:32.541 UTC [common/config] NewStandardValues -> DEBU 465 Initializing protos for *struct {} +2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 466 Proposed new policy Writers for Application +2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 467 Proposed new policy Readers for Application +2018-01-14 11:45:32.541 UTC [policies] ProposePolicy -> DEBU 468 Proposed new policy Admins for Application +2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 469 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 46a Processing field: MSP +2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 46b Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 46c Processing field: AnchorPeers +2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 46d Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 46e Processing field: MSP +2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 46f Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 470 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 471 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 472 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 473 Processing field: MSP +2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 474 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 475 Processing field: AnchorPeers +2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 476 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.542 UTC [common/config] initializeProtosStruct -> DEBU 477 Processing field: MSP +2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 478 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 479 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.542 UTC [policies] ProposePolicy -> DEBU 47a Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.542 UTC [common/config] NewStandardValues -> DEBU 47b Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 47c Processing field: ConsensusType +2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 47d Processing field: BatchSize +2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 47e Processing field: BatchTimeout +2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 47f Processing field: KafkaBrokers +2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 480 Processing field: ChannelRestrictions +2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 481 Proposed new policy Readers for Orderer +2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 482 Proposed new policy Writers for Orderer +2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 483 Proposed new policy Admins for Orderer +2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 484 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.543 UTC [common/config] NewStandardValues -> DEBU 485 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.543 UTC [common/config] initializeProtosStruct -> DEBU 486 Processing field: MSP +2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 487 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 488 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.543 UTC [policies] ProposePolicy -> DEBU 489 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.543 UTC [common/config] Validate -> DEBU 48a Anchor peers for org Org1MSP are +2018-01-14 11:45:32.543 UTC [common/config] validateMSP -> DEBU 48b Setting up MSP for org Org1MSP +2018-01-14 11:45:32.543 UTC [msp] NewBccspMsp -> DEBU 48c Creating BCCSP-based MSP instance +2018-01-14 11:45:32.543 UTC [msp] Setup -> DEBU 48d Setting up MSP instance Org1MSP +2018-01-14 11:45:32.544 UTC [msp/identity] newIdentity -> DEBU 48e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-14 11:45:32.544 UTC [msp/identity] newIdentity -> DEBU 48f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.545 UTC [msp/identity] newIdentity -> DEBU 490 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.546 UTC [msp] Validate -> DEBU 491 MSP Org1MSP validating identity +2018-01-14 11:45:32.546 UTC [common/config] Validate -> DEBU 492 Anchor peers for org Org2MSP are +2018-01-14 11:45:32.546 UTC [common/config] validateMSP -> DEBU 493 Setting up MSP for org Org2MSP +2018-01-14 11:45:32.546 UTC [msp] NewBccspMsp -> DEBU 494 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.546 UTC [msp] Setup -> DEBU 495 Setting up MSP instance Org2MSP +2018-01-14 11:45:32.546 UTC [msp/identity] newIdentity -> DEBU 496 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-14 11:45:32.546 UTC [msp/identity] newIdentity -> DEBU 497 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.547 UTC [msp/identity] newIdentity -> DEBU 498 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.547 UTC [msp] Validate -> DEBU 499 MSP Org2MSP validating identity +2018-01-14 11:45:32.548 UTC [common/config] validateMSP -> DEBU 49a Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.548 UTC [msp] NewBccspMsp -> DEBU 49b Creating BCCSP-based MSP instance +2018-01-14 11:45:32.548 UTC [msp] Setup -> DEBU 49c Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.548 UTC [msp/identity] newIdentity -> DEBU 49d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:32.548 UTC [msp/identity] newIdentity -> DEBU 49e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.549 UTC [msp/identity] newIdentity -> DEBU 49f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.549 UTC [msp] Validate -> DEBU 4a0 MSP OrdererMSP validating identity +2018-01-14 11:45:32.549 UTC [msp] Setup -> DEBU 4a1 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.549 UTC [msp] Setup -> DEBU 4a2 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.549 UTC [policies] GetPolicy -> DEBU 4a3 Returning policy Writers for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4a4 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4a5 Returning policy Admins for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4a6 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4a7 Returning policy Readers for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4a8 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4a9 Returning policy Readers for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4aa In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4ab Returning policy Writers for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4ac In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4ad Returning policy Admins for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4ae In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4af Returning policy Writers for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b0 Returning policy Writers for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b1 Returning policy Readers for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b2 Returning policy Readers for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b3 Returning policy Admins for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b4 Returning policy Admins for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b5 Returning policy Readers for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4b6 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b7 Returning policy Writers for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4b8 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4b9 Returning policy Admins for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4ba In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4bb Returning policy Readers for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4bc Returning policy Writers for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4bd Returning policy Admins for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4be Returning policy Writers for evaluation +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4bf Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4c0 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4c1 Returning policy Readers for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4c2 In commit adding relative sub-policy Application/Readers to Channel +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4c3 Returning policy Admins for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4c4 In commit adding relative sub-policy Application/Admins to Channel +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4c5 Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:32.550 UTC [policies] CommitProposals -> DEBU 4c6 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:32.550 UTC [policies] GetPolicy -> DEBU 4c7 Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4c8 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4c9 Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4ca In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4cb Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4cc In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4cd Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4ce In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4cf Returning policy Writers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d0 In commit adding relative sub-policy Application/Writers to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d1 Returning policy Readers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d2 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d3 Returning policy Writers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d4 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d5 Returning policy Admins for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d6 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d7 Returning policy BlockValidation for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4d8 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4d9 Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4da In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4db Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4dc In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4dd Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4de In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4df Returning policy Readers for evaluation +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e0 Returning policy Readers for evaluation +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e1 Returning policy Writers for evaluation +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e2 Returning policy Writers for evaluation +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e3 Returning policy Admins for evaluation +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e4 Returning policy Admins for evaluation +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e5 Returning policy Readers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4e6 As expected, current configuration has policy '/Channel/Readers' +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e7 Returning policy Writers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4e8 As expected, current configuration has policy '/Channel/Writers' +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4e9 Returning policy Application/Readers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4ea As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4eb Returning policy Application/Writers for evaluation +2018-01-14 11:45:32.551 UTC [policies] CommitProposals -> DEBU 4ec As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-14 11:45:32.551 UTC [policies] GetPolicy -> DEBU 4ed Returning policy Application/Admins for evaluation +2018-01-14 11:45:32.552 UTC [policies] CommitProposals -> DEBU 4ee As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-14 11:45:32.552 UTC [policies] GetPolicy -> DEBU 4ef Returning policy Orderer/BlockValidation for evaluation +2018-01-14 11:45:32.552 UTC [policies] CommitProposals -> DEBU 4f0 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-14 11:45:32.552 UTC [orderer/common/broadcast] Handle -> DEBU 4f1 [channel: testchainid] Broadcast has successfully enqueued message of type ORDERER_TRANSACTION +2018-01-14 11:45:32.552 UTC [policies] GetPolicy -> DEBU 4f2 Returning policy Writers for evaluation +2018-01-14 11:45:32.552 UTC [cauthdsl] func1 -> DEBU 4f3 0xc420026028 gate 1515930332552514564 evaluation starts +2018-01-14 11:45:32.552 UTC [cauthdsl] func2 -> DEBU 4f4 0xc420026028 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.552 UTC [cauthdsl] func2 -> DEBU 4f5 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.552 UTC [msp/identity] newIdentity -> DEBU 4f6 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2229,117 +2249,161 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-04 01:50:57.233 UTC [orderer/common/broadcast] Handle -> WARN 4f0 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:50:57.234 UTC [orderer/main] func1 -> DEBU 4f1 Closing Broadcast stream -2018-01-04 01:50:57.234 UTC [msp] SatisfiesPrincipal -> DEBU 4f2 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-04 01:50:57.234 UTC [msp] Validate -> DEBU 4f3 MSP OrdererMSP validating identity -2018-01-04 01:50:57.234 UTC [orderer/common/deliver] Handle -> DEBU 4f4 Rejecting deliver because channel businesschannel not found -2018-01-04 01:50:57.234 UTC [orderer/main] func1 -> DEBU 4f5 Closing Deliver stream -2018-01-04 01:50:57.234 UTC [cauthdsl] func2 -> DEBU 4f6 0xc420026fb8 principal matched by identity 0 -2018-01-04 01:50:57.235 UTC [msp/identity] Verify -> DEBU 4f7 Verify: digest = 00000000 e9 bb 79 c8 67 09 78 a6 f9 9a 21 cf 62 d2 6a 9f |..y.g.x...!.b.j.| -00000010 a2 61 1d 8a 73 24 14 63 42 b8 1f 86 be 8f 39 48 |.a..s$.cB.....9H| -2018-01-04 01:50:57.235 UTC [msp/identity] Verify -> DEBU 4f8 Verify: sig = 00000000 30 44 02 20 5f 02 7c 3d e8 74 c3 bf d1 25 0f 5f |0D. _.|=.t...%._| -00000010 b6 7d 7e e9 68 a6 33 80 fb 14 46 9a 5d f9 5f 68 |.}~.h.3...F.]._h| -00000020 46 29 b4 76 02 20 50 52 83 8d 44 e7 86 b7 4c 2f |F).v. PR..D...L/| -00000030 6b e1 d5 27 02 df 89 de cb c7 5d 11 8b 5b a7 96 |k..'......]..[..| -00000040 4d 2e fe b4 07 2b |M....+| -2018-01-04 01:50:57.236 UTC [cauthdsl] func2 -> DEBU 4f9 0xc420026fb8 principal evaluation succeeds for identity 0 -2018-01-04 01:50:57.236 UTC [cauthdsl] func1 -> DEBU 4fa 0xc420026fb8 gate 1515030657233435400 evaluation succeeds -2018-01-04 01:50:57.236 UTC [orderer/common/sigfilter] Apply -> DEBU 4fb Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420367520 1 [0xc42010e410]}) Writers]} -2018-01-04 01:50:57.236 UTC [msp] GetLocalMSP -> DEBU 4fc Returning existing local MSP -2018-01-04 01:50:57.236 UTC [msp] GetDefaultSigningIdentity -> DEBU 4fd Obtaining default signing identity -2018-01-04 01:50:57.237 UTC [msp] GetLocalMSP -> DEBU 4fe Returning existing local MSP -2018-01-04 01:50:57.237 UTC [msp] GetDefaultSigningIdentity -> DEBU 4ff Obtaining default signing identity -2018-01-04 01:50:57.237 UTC [msp/identity] Sign -> DEBU 500 Sign: plaintext: 0AB7060A1B08011A06088191B6D20522...41646D696E7310021A0641646D696E73 -2018-01-04 01:50:57.237 UTC [msp/identity] Sign -> DEBU 501 Sign: digest: C1135109A4480FC9751165F324B34761BE239EC3C319D9765D88B6160FB8481F -2018-01-04 01:50:57.238 UTC [common/config] NewStandardValues -> DEBU 502 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.238 UTC [common/config] initializeProtosStruct -> DEBU 503 Processing field: HashingAlgorithm -2018-01-04 01:50:57.238 UTC [common/config] initializeProtosStruct -> DEBU 504 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.238 UTC [common/config] initializeProtosStruct -> DEBU 505 Processing field: OrdererAddresses -2018-01-04 01:50:57.238 UTC [common/config] initializeProtosStruct -> DEBU 506 Processing field: Consortium -2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 507 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 508 Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 509 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 50a Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 50b Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 50c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:57.239 UTC [common/configtx] addToMap -> DEBU 50d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:57.240 UTC [common/configtx] addToMap -> DEBU 50e Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:57.240 UTC [common/configtx] addToMap -> DEBU 50f Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:57.240 UTC [common/configtx] addToMap -> DEBU 510 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:57.240 UTC [common/configtx] addToMap -> DEBU 511 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:57.241 UTC [common/configtx] addToMap -> DEBU 512 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:57.241 UTC [common/configtx] addToMap -> DEBU 513 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 514 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 515 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 516 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 517 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 518 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 519 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51a Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51b Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51c Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51e Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 51f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:57.242 UTC [common/configtx] addToMap -> DEBU 520 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 521 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 522 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 523 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 524 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 525 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 526 Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 527 Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:57.243 UTC [common/configtx] addToMap -> DEBU 528 Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:57.244 UTC [common/configtx] processConfig -> DEBU 529 Beginning new config for channel businesschannel -2018-01-04 01:50:57.244 UTC [common/config] NewStandardValues -> DEBU 52a Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.244 UTC [common/config] initializeProtosStruct -> DEBU 52b Processing field: HashingAlgorithm -2018-01-04 01:50:57.244 UTC [common/config] initializeProtosStruct -> DEBU 52c Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.244 UTC [common/config] initializeProtosStruct -> DEBU 52d Processing field: OrdererAddresses -2018-01-04 01:50:57.244 UTC [common/config] initializeProtosStruct -> DEBU 52e Processing field: Consortium -2018-01-04 01:50:57.244 UTC [policies] ProposePolicy -> DEBU 52f Proposed new policy Writers for Channel -2018-01-04 01:50:57.244 UTC [policies] ProposePolicy -> DEBU 530 Proposed new policy Admins for Channel -2018-01-04 01:50:57.244 UTC [policies] ProposePolicy -> DEBU 531 Proposed new policy Readers for Channel -2018-01-04 01:50:57.245 UTC [common/config] NewStandardValues -> DEBU 532 Initializing protos for *struct {} -2018-01-04 01:50:57.245 UTC [policies] ProposePolicy -> DEBU 533 Proposed new policy ChannelCreationPolicy for Application -2018-01-04 01:50:57.245 UTC [common/config] NewStandardValues -> DEBU 534 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.245 UTC [common/config] initializeProtosStruct -> DEBU 535 Processing field: MSP -2018-01-04 01:50:57.245 UTC [common/config] NewStandardValues -> DEBU 536 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.245 UTC [common/config] initializeProtosStruct -> DEBU 537 Processing field: AnchorPeers -2018-01-04 01:50:57.245 UTC [common/config] NewStandardValues -> DEBU 538 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.245 UTC [common/config] initializeProtosStruct -> DEBU 539 Processing field: MSP -2018-01-04 01:50:57.245 UTC [policies] ProposePolicy -> DEBU 53a Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.245 UTC [policies] ProposePolicy -> DEBU 53b Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.245 UTC [policies] ProposePolicy -> DEBU 53c Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.246 UTC [common/config] NewStandardValues -> DEBU 53d Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.246 UTC [common/config] initializeProtosStruct -> DEBU 53e Processing field: MSP -2018-01-04 01:50:57.246 UTC [common/config] NewStandardValues -> DEBU 53f Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.246 UTC [common/config] initializeProtosStruct -> DEBU 540 Processing field: AnchorPeers -2018-01-04 01:50:57.246 UTC [common/config] NewStandardValues -> DEBU 541 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.246 UTC [common/config] initializeProtosStruct -> DEBU 542 Processing field: MSP -2018-01-04 01:50:57.246 UTC [policies] ProposePolicy -> DEBU 543 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.246 UTC [policies] ProposePolicy -> DEBU 544 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 545 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.247 UTC [common/config] NewStandardValues -> DEBU 546 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 547 Processing field: ConsensusType -2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 548 Processing field: BatchSize -2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 549 Processing field: BatchTimeout -2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 54a Processing field: KafkaBrokers -2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 54b Processing field: ChannelRestrictions -2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 54c Proposed new policy Admins for Orderer -2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 54d Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 54e Proposed new policy Readers for Orderer -2018-01-04 01:50:57.247 UTC [policies] ProposePolicy -> DEBU 54f Proposed new policy Writers for Orderer -2018-01-04 01:50:57.247 UTC [common/config] NewStandardValues -> DEBU 550 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.247 UTC [common/config] initializeProtosStruct -> DEBU 551 Processing field: MSP -2018-01-04 01:50:57.248 UTC [policies] ProposePolicy -> DEBU 552 Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.248 UTC [policies] ProposePolicy -> DEBU 553 Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.248 UTC [policies] ProposePolicy -> DEBU 554 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.248 UTC [common/config] Validate -> DEBU 555 Anchor peers for org Org1MSP are -2018-01-04 01:50:57.248 UTC [common/config] validateMSP -> DEBU 556 Setting up MSP for org Org1MSP -2018-01-04 01:50:57.248 UTC [msp] NewBccspMsp -> DEBU 557 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.248 UTC [msp] Setup -> DEBU 558 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.256 UTC [msp/identity] newIdentity -> DEBU 559 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.553 UTC [msp] SatisfiesPrincipal -> DEBU 4f7 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:45:32.553 UTC [msp] Validate -> DEBU 4f8 MSP OrdererMSP validating identity +2018-01-14 11:45:32.553 UTC [cauthdsl] func2 -> DEBU 4f9 0xc420026028 principal matched by identity 0 +2018-01-14 11:45:32.553 UTC [msp/identity] Verify -> DEBU 4fa Verify: digest = 00000000 71 d9 68 a3 ec 69 9f 09 03 ea ae 32 1c 1d fa 88 |q.h..i.....2....| +00000010 11 1f cb 02 b9 34 51 ef 2a fb 35 34 1c a2 ea 3a |.....4Q.*.54...:| +2018-01-14 11:45:32.553 UTC [msp/identity] Verify -> DEBU 4fb Verify: sig = 00000000 30 45 02 21 00 95 b5 76 17 9a 3d 5d c0 1c 6b 7f |0E.!...v..=]..k.| +00000010 f9 6b 96 b2 f7 1e 6e da f2 3c 79 a3 ea b3 28 d7 |.k....n.. DEBU 4fc 0xc420026028 principal evaluation succeeds for identity 0 +2018-01-14 11:45:32.553 UTC [cauthdsl] func1 -> DEBU 4fd 0xc420026028 gate 1515930332552514564 evaluation succeeds +2018-01-14 11:45:32.553 UTC [orderer/common/sigfilter] Apply -> DEBU 4fe Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380c20 1 [0xc420150650]}) Writers]} +2018-01-14 11:45:32.553 UTC [msp] GetLocalMSP -> DEBU 4ff Returning existing local MSP +2018-01-14 11:45:32.553 UTC [msp] GetDefaultSigningIdentity -> DEBU 500 Obtaining default signing identity +2018-01-14 11:45:32.553 UTC [msp] GetLocalMSP -> DEBU 501 Returning existing local MSP +2018-01-14 11:45:32.553 UTC [msp] GetDefaultSigningIdentity -> DEBU 502 Obtaining default signing identity +2018-01-14 11:45:32.554 UTC [msp/identity] Sign -> DEBU 503 Sign: plaintext: 0AB7060A1B08011A0608DC85EDD20522...41646D696E7310021A0641646D696E73 +2018-01-14 11:45:32.554 UTC [msp/identity] Sign -> DEBU 504 Sign: digest: 7524B569061E5C0C0A391E7ADCB28A7C3FAFD24E830B11AE46D118265F84EA55 +2018-01-14 11:45:32.554 UTC [common/config] NewStandardValues -> DEBU 505 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.554 UTC [common/config] initializeProtosStruct -> DEBU 506 Processing field: HashingAlgorithm +2018-01-14 11:45:32.554 UTC [common/config] initializeProtosStruct -> DEBU 507 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.554 UTC [common/config] initializeProtosStruct -> DEBU 508 Processing field: OrdererAddresses +2018-01-14 11:45:32.554 UTC [common/config] initializeProtosStruct -> DEBU 509 Processing field: Consortium +2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50a Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50b Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50c Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50d Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 50f Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 510 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:32.554 UTC [common/configtx] addToMap -> DEBU 511 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 512 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 513 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 514 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 515 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 516 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 517 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 518 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 519 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 51a Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 51b Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 51c Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:32.555 UTC [common/configtx] addToMap -> DEBU 51d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:32.556 UTC [common/configtx] addToMap -> DEBU 51e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:32.556 UTC [common/configtx] addToMap -> DEBU 51f Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.556 UTC [common/configtx] addToMap -> DEBU 520 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:32.557 UTC [common/configtx] addToMap -> DEBU 521 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:32.557 UTC [common/configtx] addToMap -> DEBU 522 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:32.558 UTC [common/configtx] addToMap -> DEBU 523 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:32.558 UTC [common/configtx] addToMap -> DEBU 524 Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +2018-01-14 11:45:32.559 UTC [orderer/common/broadcast] Handle -> WARN 525 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:45:32.560 UTC [orderer/main] func1 -> DEBU 526 Closing Broadcast stream +2018-01-14 11:45:32.560 UTC [common/configtx] addToMap -> DEBU 527 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.560 UTC [common/configtx] addToMap -> DEBU 528 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:32.560 UTC [common/configtx] addToMap -> DEBU 529 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:32.561 UTC [common/configtx] addToMap -> DEBU 52a Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:32.561 UTC [common/configtx] addToMap -> DEBU 52b Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:32.561 UTC [common/configtx] addToMap -> DEBU 52c Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:32.561 UTC [common/configtx] addToMap -> DEBU 52d Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:32.561 UTC [common/configtx] processConfig -> DEBU 52e Beginning new config for channel businesschannel +2018-01-14 11:45:32.561 UTC [common/config] NewStandardValues -> DEBU 52f Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 530 Processing field: HashingAlgorithm +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 531 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 532 Processing field: OrdererAddresses +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 533 Processing field: Consortium +2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 534 Proposed new policy Admins for Channel +2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 535 Proposed new policy Readers for Channel +2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 536 Proposed new policy Writers for Channel +2018-01-14 11:45:32.561 UTC [common/config] NewStandardValues -> DEBU 537 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 538 Processing field: ConsensusType +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 539 Processing field: BatchSize +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 53a Processing field: BatchTimeout +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 53b Processing field: KafkaBrokers +2018-01-14 11:45:32.561 UTC [common/config] initializeProtosStruct -> DEBU 53c Processing field: ChannelRestrictions +2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 53d Proposed new policy Writers for Orderer +2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 53e Proposed new policy Admins for Orderer +2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 53f Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.561 UTC [policies] ProposePolicy -> DEBU 540 Proposed new policy Readers for Orderer +2018-01-14 11:45:32.561 UTC [common/config] NewStandardValues -> DEBU 541 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.563 UTC [common/config] initializeProtosStruct -> DEBU 543 Processing field: MSP +2018-01-14 11:45:32.563 UTC [policies] ProposePolicy -> DEBU 544 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.563 UTC [policies] ProposePolicy -> DEBU 545 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.563 UTC [policies] ProposePolicy -> DEBU 546 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.564 UTC [common/config] NewStandardValues -> DEBU 547 Initializing protos for *struct {} +2018-01-14 11:45:32.564 UTC [policies] ProposePolicy -> DEBU 548 Proposed new policy ChannelCreationPolicy for Application +2018-01-14 11:45:32.564 UTC [common/config] NewStandardValues -> DEBU 549 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.564 UTC [common/config] initializeProtosStruct -> DEBU 54a Processing field: MSP +2018-01-14 11:45:32.564 UTC [common/config] NewStandardValues -> DEBU 54b Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.564 UTC [common/config] initializeProtosStruct -> DEBU 54c Processing field: AnchorPeers +2018-01-14 11:45:32.564 UTC [common/config] NewStandardValues -> DEBU 54d Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.565 UTC [common/config] initializeProtosStruct -> DEBU 54e Processing field: MSP +2018-01-14 11:45:32.565 UTC [policies] ProposePolicy -> DEBU 54f Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.565 UTC [policies] ProposePolicy -> DEBU 550 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.565 UTC [policies] ProposePolicy -> DEBU 551 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.566 UTC [common/config] NewStandardValues -> DEBU 552 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.566 UTC [common/config] initializeProtosStruct -> DEBU 553 Processing field: MSP +2018-01-14 11:45:32.566 UTC [common/config] NewStandardValues -> DEBU 554 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.566 UTC [common/config] initializeProtosStruct -> DEBU 555 Processing field: AnchorPeers +2018-01-14 11:45:32.566 UTC [common/config] NewStandardValues -> DEBU 556 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.566 UTC [common/config] initializeProtosStruct -> DEBU 557 Processing field: MSP +2018-01-14 11:45:32.566 UTC [policies] ProposePolicy -> DEBU 558 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.567 UTC [policies] ProposePolicy -> DEBU 559 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.567 UTC [policies] ProposePolicy -> DEBU 55a Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.567 UTC [common/config] validateMSP -> DEBU 55b Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.567 UTC [msp] NewBccspMsp -> DEBU 55c Creating BCCSP-based MSP instance +2018-01-14 11:45:32.567 UTC [msp] Setup -> DEBU 55d Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.567 UTC [msp/identity] newIdentity -> DEBU 55e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:32.568 UTC [msp/identity] newIdentity -> DEBU 55f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.568 UTC [msp/identity] newIdentity -> DEBU 560 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.569 UTC [msp] Validate -> DEBU 561 MSP OrdererMSP validating identity +2018-01-14 11:45:32.563 UTC [orderer/common/deliver] Handle -> DEBU 542 Rejecting deliver because channel businesschannel not found +2018-01-14 11:45:32.570 UTC [orderer/main] func1 -> DEBU 562 Closing Deliver stream +2018-01-14 11:45:32.570 UTC [common/config] Validate -> DEBU 563 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.570 UTC [common/config] validateMSP -> DEBU 564 Setting up MSP for org Org1MSP +2018-01-14 11:45:32.570 UTC [msp] NewBccspMsp -> DEBU 565 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.570 UTC [msp] Setup -> DEBU 566 Setting up MSP instance Org1MSP +2018-01-14 11:45:32.571 UTC [msp/identity] newIdentity -> DEBU 567 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2354,10 +2418,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.256 UTC [orderer/main] Deliver -> DEBU 55a Starting new Deliver handler -2018-01-04 01:50:57.256 UTC [orderer/common/deliver] Handle -> DEBU 55b Starting new deliver loop -2018-01-04 01:50:57.256 UTC [orderer/common/deliver] Handle -> DEBU 55c Attempting to read seek info message -2018-01-04 01:50:57.257 UTC [msp/identity] newIdentity -> DEBU 55d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.572 UTC [msp/identity] newIdentity -> DEBU 568 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2371,7 +2432,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.258 UTC [msp/identity] newIdentity -> DEBU 55e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.573 UTC [msp/identity] newIdentity -> DEBU 569 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2385,12 +2446,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.259 UTC [msp] Validate -> DEBU 55f MSP Org1MSP validating identity -2018-01-04 01:50:57.259 UTC [common/config] Validate -> DEBU 560 Anchor peers for org Org2MSP are -2018-01-04 01:50:57.259 UTC [common/config] validateMSP -> DEBU 561 Setting up MSP for org Org2MSP -2018-01-04 01:50:57.259 UTC [msp] NewBccspMsp -> DEBU 562 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.259 UTC [msp] Setup -> DEBU 563 Setting up MSP instance Org2MSP -2018-01-04 01:50:57.260 UTC [msp/identity] newIdentity -> DEBU 564 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.574 UTC [msp] Validate -> DEBU 56a MSP Org1MSP validating identity +2018-01-14 11:45:32.575 UTC [common/config] Validate -> DEBU 56b Anchor peers for org Org2MSP are +2018-01-14 11:45:32.575 UTC [common/config] validateMSP -> DEBU 56c Setting up MSP for org Org2MSP +2018-01-14 11:45:32.576 UTC [msp] NewBccspMsp -> DEBU 56d Creating BCCSP-based MSP instance +2018-01-14 11:45:32.576 UTC [msp] Setup -> DEBU 56e Setting up MSP instance Org2MSP +2018-01-14 11:45:32.578 UTC [msp/identity] newIdentity -> DEBU 56f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2405,7 +2466,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:57.260 UTC [msp/identity] newIdentity -> DEBU 565 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.580 UTC [msp/identity] newIdentity -> DEBU 570 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2419,7 +2480,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.261 UTC [msp/identity] newIdentity -> DEBU 566 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.580 UTC [msp/identity] newIdentity -> DEBU 571 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2433,129 +2494,88 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.262 UTC [msp] Validate -> DEBU 567 MSP Org2MSP validating identity -2018-01-04 01:50:57.262 UTC [common/config] validateMSP -> DEBU 568 Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.262 UTC [msp] NewBccspMsp -> DEBU 569 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.262 UTC [msp] Setup -> DEBU 56a Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.263 UTC [msp/identity] newIdentity -> DEBU 56b Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:50:57.263 UTC [msp/identity] newIdentity -> DEBU 56c Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.264 UTC [msp/identity] newIdentity -> DEBU 56d Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.264 UTC [msp] Validate -> DEBU 56e MSP OrdererMSP validating identity -2018-01-04 01:50:57.265 UTC [msp] Setup -> DEBU 56f Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.265 UTC [msp] Setup -> DEBU 570 MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.265 UTC [policies] GetPolicy -> DEBU 571 Returning policy Readers for evaluation -2018-01-04 01:50:57.265 UTC [policies] CommitProposals -> DEBU 572 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:57.265 UTC [policies] GetPolicy -> DEBU 573 Returning policy Writers for evaluation -2018-01-04 01:50:57.265 UTC [policies] CommitProposals -> DEBU 574 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:57.265 UTC [policies] GetPolicy -> DEBU 575 Returning policy Admins for evaluation -2018-01-04 01:50:57.265 UTC [policies] CommitProposals -> DEBU 576 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:57.265 UTC [policies] GetPolicy -> DEBU 577 Returning policy Writers for evaluation -2018-01-04 01:50:57.265 UTC [policies] CommitProposals -> DEBU 578 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 579 Returning policy Admins for evaluation -2018-01-04 01:50:57.266 UTC [policies] CommitProposals -> DEBU 57a In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 57b Returning policy Readers for evaluation -2018-01-04 01:50:57.266 UTC [policies] CommitProposals -> DEBU 57c In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 57d Returning policy Admins for evaluation -2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 57e Returning policy Admins for evaluation -2018-01-04 01:50:57.266 UTC [policies] GetPolicy -> DEBU 57f Returning policy Writers for evaluation -2018-01-04 01:50:57.266 UTC [policies] CommitProposals -> DEBU 580 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 581 Returning policy Admins for evaluation -2018-01-04 01:50:57.267 UTC [policies] CommitProposals -> DEBU 582 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 583 Returning policy Readers for evaluation -2018-01-04 01:50:57.267 UTC [policies] CommitProposals -> DEBU 584 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 585 Returning policy Admins for evaluation -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 586 Returning policy Writers for evaluation -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 587 Returning policy Readers for evaluation -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 588 Returning policy Writers for evaluation -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 589 Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:57.267 UTC [policies] CommitProposals -> DEBU 58a In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 58b Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:57.267 UTC [policies] CommitProposals -> DEBU 58c In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:57.267 UTC [policies] GetPolicy -> DEBU 58d Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 58e In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 58f Returning policy ChannelCreationPolicy for evaluation -2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 590 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel -2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 591 Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 592 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 593 Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 594 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 595 Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:57.268 UTC [policies] CommitProposals -> DEBU 596 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:57.268 UTC [policies] GetPolicy -> DEBU 597 Returning policy BlockValidation for evaluation -2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 598 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 599 Returning policy Readers for evaluation -2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 59a In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 59b Returning policy Writers for evaluation -2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 59c In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 59d Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 59e In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 59f Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:57.269 UTC [policies] CommitProposals -> DEBU 5a0 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:57.269 UTC [policies] GetPolicy -> DEBU 5a1 Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:57.270 UTC [policies] CommitProposals -> DEBU 5a2 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a3 Returning policy Admins for evaluation -2018-01-04 01:50:57.270 UTC [policies] CommitProposals -> DEBU 5a4 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a5 Returning dummy reject all policy because Writers could not be found in /Application/Writers -2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a6 Returning policy Writers for evaluation -2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a7 Returning dummy reject all policy because Admins could not be found in /Application/Admins -2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a8 Returning policy Admins for evaluation -2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5a9 Returning dummy reject all policy because Readers could not be found in /Application/Readers -2018-01-04 01:50:57.270 UTC [policies] GetPolicy -> DEBU 5aa Returning policy Readers for evaluation -2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5ab Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5ac Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5ad Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5ae Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5af Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5b0 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5b1 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.271 UTC [common/configtx] addToMap -> DEBU 5b2 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b3 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b4 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b5 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b6 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.272 UTC [common/configtx] addToMap -> DEBU 5b7 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.272 UTC [policies] GetPolicy -> DEBU 5b8 Returning policy ChannelCreationPolicy for evaluation -2018-01-04 01:50:57.272 UTC [cauthdsl] func1 -> DEBU 5b9 0xc420026648 gate 1515030657272820100 evaluation starts -2018-01-04 01:50:57.272 UTC [cauthdsl] func2 -> DEBU 5ba 0xc420026648 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.273 UTC [cauthdsl] func2 -> DEBU 5bb 0xc420026648 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.273 UTC [msp/identity] newIdentity -> DEBU 5bc Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.581 UTC [msp] Validate -> DEBU 572 MSP Org2MSP validating identity +2018-01-14 11:45:32.581 UTC [orderer/main] Deliver -> DEBU 573 Starting new Deliver handler +2018-01-14 11:45:32.581 UTC [orderer/common/deliver] Handle -> DEBU 574 Starting new deliver loop +2018-01-14 11:45:32.582 UTC [orderer/common/deliver] Handle -> DEBU 575 Attempting to read seek info message +2018-01-14 11:45:32.582 UTC [msp] Setup -> DEBU 576 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.582 UTC [msp] Setup -> DEBU 577 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.582 UTC [policies] GetPolicy -> DEBU 578 Returning policy Writers for evaluation +2018-01-14 11:45:32.582 UTC [policies] CommitProposals -> DEBU 579 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:32.582 UTC [policies] GetPolicy -> DEBU 57a Returning policy Admins for evaluation +2018-01-14 11:45:32.583 UTC [policies] CommitProposals -> DEBU 57b In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 57c Returning policy Readers for evaluation +2018-01-14 11:45:32.583 UTC [policies] CommitProposals -> DEBU 57d In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 57e Returning policy Writers for evaluation +2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 57f Returning policy Admins for evaluation +2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 580 Returning policy Writers for evaluation +2018-01-14 11:45:32.583 UTC [policies] GetPolicy -> DEBU 581 Returning policy Readers for evaluation +2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 582 Returning policy Readers for evaluation +2018-01-14 11:45:32.584 UTC [policies] CommitProposals -> DEBU 583 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 584 Returning policy Writers for evaluation +2018-01-14 11:45:32.584 UTC [policies] CommitProposals -> DEBU 585 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 586 Returning policy Admins for evaluation +2018-01-14 11:45:32.584 UTC [policies] CommitProposals -> DEBU 587 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 588 Returning policy Writers for evaluation +2018-01-14 11:45:32.584 UTC [policies] CommitProposals -> DEBU 589 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:32.584 UTC [policies] GetPolicy -> DEBU 58a Returning policy Admins for evaluation +2018-01-14 11:45:32.585 UTC [policies] CommitProposals -> DEBU 58b In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 58c Returning policy Readers for evaluation +2018-01-14 11:45:32.585 UTC [policies] CommitProposals -> DEBU 58d In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 58e Returning policy Admins for evaluation +2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 58f Returning policy Admins for evaluation +2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 590 Returning policy Admins for evaluation +2018-01-14 11:45:32.585 UTC [policies] CommitProposals -> DEBU 591 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:32.585 UTC [policies] GetPolicy -> DEBU 592 Returning policy BlockValidation for evaluation +2018-01-14 11:45:32.586 UTC [policies] CommitProposals -> DEBU 593 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:32.586 UTC [policies] GetPolicy -> DEBU 594 Returning policy Readers for evaluation +2018-01-14 11:45:32.586 UTC [policies] CommitProposals -> DEBU 595 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:32.586 UTC [policies] GetPolicy -> DEBU 596 Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:32.586 UTC [policies] CommitProposals -> DEBU 597 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:32.586 UTC [policies] GetPolicy -> DEBU 598 Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:32.586 UTC [policies] CommitProposals -> DEBU 599 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:32.586 UTC [policies] GetPolicy -> DEBU 59a Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:32.587 UTC [policies] CommitProposals -> DEBU 59b In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:32.587 UTC [policies] GetPolicy -> DEBU 59c Returning policy Writers for evaluation +2018-01-14 11:45:32.587 UTC [policies] CommitProposals -> DEBU 59d In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:32.587 UTC [policies] GetPolicy -> DEBU 59e Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:32.587 UTC [policies] CommitProposals -> DEBU 59f In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:32.587 UTC [policies] GetPolicy -> DEBU 5a0 Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:32.587 UTC [policies] CommitProposals -> DEBU 5a1 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:32.587 UTC [policies] GetPolicy -> DEBU 5a2 Returning policy ChannelCreationPolicy for evaluation +2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5a3 In commit adding relative sub-policy Application/ChannelCreationPolicy to Channel +2018-01-14 11:45:32.588 UTC [policies] GetPolicy -> DEBU 5a4 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5a5 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:32.588 UTC [policies] GetPolicy -> DEBU 5a6 Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5a7 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:32.588 UTC [policies] GetPolicy -> DEBU 5a8 Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5a9 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:32.588 UTC [policies] GetPolicy -> DEBU 5aa Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:32.588 UTC [policies] CommitProposals -> DEBU 5ab In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5ac Returning policy Admins for evaluation +2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5ad Returning dummy reject all policy because Admins could not be found in /Application/Admins +2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5ae Returning policy Readers for evaluation +2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5af Returning dummy reject all policy because Readers could not be found in /Application/Readers +2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5b0 Returning policy Writers for evaluation +2018-01-14 11:45:32.589 UTC [policies] GetPolicy -> DEBU 5b1 Returning dummy reject all policy because Writers could not be found in /Application/Writers +2018-01-14 11:45:32.589 UTC [common/configtx] addToMap -> DEBU 5b2 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.590 UTC [common/configtx] addToMap -> DEBU 5b3 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.590 UTC [common/configtx] addToMap -> DEBU 5b4 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.590 UTC [common/configtx] addToMap -> DEBU 5b5 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.590 UTC [common/configtx] addToMap -> DEBU 5b6 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5b7 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5b8 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5b9 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5ba Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5bb Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.591 UTC [common/configtx] addToMap -> DEBU 5bc Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.592 UTC [common/configtx] addToMap -> DEBU 5bd Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.592 UTC [common/configtx] addToMap -> DEBU 5be Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.592 UTC [policies] GetPolicy -> DEBU 5bf Returning policy ChannelCreationPolicy for evaluation +2018-01-14 11:45:32.592 UTC [cauthdsl] func1 -> DEBU 5c0 0xc4200265a8 gate 1515930332592908164 evaluation starts +2018-01-14 11:45:32.593 UTC [cauthdsl] func2 -> DEBU 5c1 0xc4200265a8 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.593 UTC [cauthdsl] func2 -> DEBU 5c2 0xc4200265a8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.593 UTC [msp/identity] newIdentity -> DEBU 5c3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2569,86 +2589,86 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.273 UTC [msp] SatisfiesPrincipal -> DEBU 5bd Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:57.273 UTC [cauthdsl] func2 -> DEBU 5be 0xc420026648 principal matched by identity 0 -2018-01-04 01:50:57.273 UTC [msp/identity] Verify -> DEBU 5bf Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -2018-01-04 01:50:57.274 UTC [msp/identity] Verify -> DEBU 5c0 Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -00000040 de 20 dd a7 3b f5 |. ..;.| -2018-01-04 01:50:57.274 UTC [cauthdsl] func2 -> DEBU 5c1 0xc420026648 principal evaluation succeeds for identity 0 -2018-01-04 01:50:57.274 UTC [cauthdsl] func1 -> DEBU 5c2 0xc420026648 gate 1515030657272820100 evaluation succeeds -2018-01-04 01:50:57.274 UTC [common/configtx] recurseConfigMap -> DEBU 5c3 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.274 UTC [common/configtx] recurseConfigMap -> DEBU 5c4 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.274 UTC [common/configtx] recurseConfigMap -> DEBU 5c5 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.274 UTC [common/configtx] recurseConfigMap -> DEBU 5c6 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5c7 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5c8 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5c9 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5ca Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5cb Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5cc Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5cd Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5ce Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5cf Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.275 UTC [common/configtx] recurseConfigMap -> DEBU 5d0 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d1 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d2 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d3 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d4 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.276 UTC [common/configtx] recurseConfigMap -> DEBU 5d5 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.276 UTC [common/configtx] processConfig -> DEBU 5d6 Beginning new config for channel businesschannel -2018-01-04 01:50:57.276 UTC [common/config] NewStandardValues -> DEBU 5d7 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.276 UTC [common/config] initializeProtosStruct -> DEBU 5d8 Processing field: HashingAlgorithm -2018-01-04 01:50:57.276 UTC [common/config] initializeProtosStruct -> DEBU 5d9 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5da Processing field: OrdererAddresses -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5db Processing field: Consortium -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5dc Proposed new policy Writers for Channel -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5dd Proposed new policy Admins for Channel -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5de Proposed new policy Readers for Channel -2018-01-04 01:50:57.277 UTC [common/config] NewStandardValues -> DEBU 5df Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e0 Processing field: ConsensusType -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e1 Processing field: BatchSize -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e2 Processing field: BatchTimeout -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e3 Processing field: KafkaBrokers -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5e4 Processing field: ChannelRestrictions -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5e5 Proposed new policy Admins for Orderer -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5e6 Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5e7 Proposed new policy Readers for Orderer -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5e8 Proposed new policy Writers for Orderer -2018-01-04 01:50:57.277 UTC [common/config] NewStandardValues -> DEBU 5e9 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5ea Processing field: MSP -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5eb Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5ec Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5ed Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.277 UTC [common/config] NewStandardValues -> DEBU 5ee Initializing protos for *struct {} -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5ef Proposed new policy Admins for Application -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5f0 Proposed new policy Writers for Application -2018-01-04 01:50:57.277 UTC [policies] ProposePolicy -> DEBU 5f1 Proposed new policy Readers for Application -2018-01-04 01:50:57.277 UTC [common/config] NewStandardValues -> DEBU 5f2 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.277 UTC [common/config] initializeProtosStruct -> DEBU 5f3 Processing field: MSP -2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5f4 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 5f5 Processing field: AnchorPeers -2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5f6 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 5f7 Processing field: MSP -2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 5f8 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 5f9 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 5fa Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5fb Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 5fc Processing field: MSP -2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5fd Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 5fe Processing field: AnchorPeers -2018-01-04 01:50:57.278 UTC [common/config] NewStandardValues -> DEBU 5ff Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.278 UTC [common/config] initializeProtosStruct -> DEBU 600 Processing field: MSP -2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 601 Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 602 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.278 UTC [policies] ProposePolicy -> DEBU 603 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.278 UTC [common/config] validateMSP -> DEBU 604 Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.278 UTC [msp] NewBccspMsp -> DEBU 605 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.278 UTC [msp] Setup -> DEBU 606 Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.278 UTC [msp/identity] newIdentity -> DEBU 607 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.594 UTC [msp] SatisfiesPrincipal -> DEBU 5c4 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:32.594 UTC [cauthdsl] func2 -> DEBU 5c5 0xc4200265a8 principal matched by identity 0 +2018-01-14 11:45:32.594 UTC [msp/identity] Verify -> DEBU 5c6 Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +2018-01-14 11:45:32.594 UTC [msp/identity] Verify -> DEBU 5c7 Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +00000040 12 a6 8e 7f 16 50 |.....P| +2018-01-14 11:45:32.594 UTC [cauthdsl] func2 -> DEBU 5c8 0xc4200265a8 principal evaluation succeeds for identity 0 +2018-01-14 11:45:32.594 UTC [cauthdsl] func1 -> DEBU 5c9 0xc4200265a8 gate 1515930332592908164 evaluation succeeds +2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5ca Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5cb Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5cc Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5cd Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.595 UTC [common/configtx] recurseConfigMap -> DEBU 5ce Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5cf Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5d0 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5d1 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5d2 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.596 UTC [common/configtx] recurseConfigMap -> DEBU 5d3 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d4 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d5 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d6 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d7 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d8 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.597 UTC [common/configtx] recurseConfigMap -> DEBU 5d9 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.598 UTC [common/configtx] recurseConfigMap -> DEBU 5da Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.598 UTC [common/configtx] recurseConfigMap -> DEBU 5db Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.598 UTC [common/configtx] recurseConfigMap -> DEBU 5dc Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.598 UTC [common/configtx] processConfig -> DEBU 5dd Beginning new config for channel businesschannel +2018-01-14 11:45:32.598 UTC [common/config] NewStandardValues -> DEBU 5de Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.598 UTC [common/config] initializeProtosStruct -> DEBU 5df Processing field: HashingAlgorithm +2018-01-14 11:45:32.598 UTC [common/config] initializeProtosStruct -> DEBU 5e0 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.598 UTC [common/config] initializeProtosStruct -> DEBU 5e1 Processing field: OrdererAddresses +2018-01-14 11:45:32.599 UTC [common/config] initializeProtosStruct -> DEBU 5e2 Processing field: Consortium +2018-01-14 11:45:32.599 UTC [policies] ProposePolicy -> DEBU 5e3 Proposed new policy Admins for Channel +2018-01-14 11:45:32.599 UTC [policies] ProposePolicy -> DEBU 5e4 Proposed new policy Readers for Channel +2018-01-14 11:45:32.599 UTC [policies] ProposePolicy -> DEBU 5e5 Proposed new policy Writers for Channel +2018-01-14 11:45:32.599 UTC [common/config] NewStandardValues -> DEBU 5e6 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.599 UTC [common/config] initializeProtosStruct -> DEBU 5e7 Processing field: ConsensusType +2018-01-14 11:45:32.599 UTC [common/config] initializeProtosStruct -> DEBU 5e8 Processing field: BatchSize +2018-01-14 11:45:32.599 UTC [common/config] initializeProtosStruct -> DEBU 5e9 Processing field: BatchTimeout +2018-01-14 11:45:32.600 UTC [common/config] initializeProtosStruct -> DEBU 5ea Processing field: KafkaBrokers +2018-01-14 11:45:32.600 UTC [common/config] initializeProtosStruct -> DEBU 5eb Processing field: ChannelRestrictions +2018-01-14 11:45:32.600 UTC [policies] ProposePolicy -> DEBU 5ec Proposed new policy Admins for Orderer +2018-01-14 11:45:32.600 UTC [policies] ProposePolicy -> DEBU 5ed Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.600 UTC [policies] ProposePolicy -> DEBU 5ee Proposed new policy Readers for Orderer +2018-01-14 11:45:32.600 UTC [policies] ProposePolicy -> DEBU 5ef Proposed new policy Writers for Orderer +2018-01-14 11:45:32.600 UTC [common/config] NewStandardValues -> DEBU 5f0 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.600 UTC [common/config] initializeProtosStruct -> DEBU 5f1 Processing field: MSP +2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f2 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f3 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f4 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.601 UTC [common/config] NewStandardValues -> DEBU 5f5 Initializing protos for *struct {} +2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f6 Proposed new policy Writers for Application +2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f7 Proposed new policy Readers for Application +2018-01-14 11:45:32.601 UTC [policies] ProposePolicy -> DEBU 5f8 Proposed new policy Admins for Application +2018-01-14 11:45:32.601 UTC [common/config] NewStandardValues -> DEBU 5f9 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.602 UTC [common/config] initializeProtosStruct -> DEBU 5fa Processing field: MSP +2018-01-14 11:45:32.602 UTC [common/config] NewStandardValues -> DEBU 5fb Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.602 UTC [common/config] initializeProtosStruct -> DEBU 5fc Processing field: AnchorPeers +2018-01-14 11:45:32.602 UTC [common/config] NewStandardValues -> DEBU 5fd Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.602 UTC [common/config] initializeProtosStruct -> DEBU 5fe Processing field: MSP +2018-01-14 11:45:32.602 UTC [policies] ProposePolicy -> DEBU 5ff Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.602 UTC [policies] ProposePolicy -> DEBU 600 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.602 UTC [policies] ProposePolicy -> DEBU 601 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.603 UTC [common/config] NewStandardValues -> DEBU 602 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.603 UTC [common/config] initializeProtosStruct -> DEBU 603 Processing field: MSP +2018-01-14 11:45:32.603 UTC [common/config] NewStandardValues -> DEBU 604 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.603 UTC [common/config] initializeProtosStruct -> DEBU 605 Processing field: AnchorPeers +2018-01-14 11:45:32.603 UTC [common/config] NewStandardValues -> DEBU 606 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.603 UTC [common/config] initializeProtosStruct -> DEBU 607 Processing field: MSP +2018-01-14 11:45:32.603 UTC [policies] ProposePolicy -> DEBU 608 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.603 UTC [policies] ProposePolicy -> DEBU 609 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.603 UTC [policies] ProposePolicy -> DEBU 60a Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.603 UTC [common/config] validateMSP -> DEBU 60b Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.604 UTC [msp] NewBccspMsp -> DEBU 60c Creating BCCSP-based MSP instance +2018-01-14 11:45:32.604 UTC [msp] Setup -> DEBU 60d Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.604 UTC [msp/identity] newIdentity -> DEBU 60e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2662,7 +2682,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:57.278 UTC [msp/identity] newIdentity -> DEBU 608 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.604 UTC [msp/identity] newIdentity -> DEBU 60f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2675,7 +2695,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.278 UTC [msp/identity] newIdentity -> DEBU 609 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.605 UTC [msp/identity] newIdentity -> DEBU 610 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2688,60 +2708,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.280 UTC [msp] Validate -> DEBU 60a MSP OrdererMSP validating identity -2018-01-04 01:50:57.280 UTC [common/config] Validate -> DEBU 60b Anchor peers for org Org2MSP are -2018-01-04 01:50:57.280 UTC [common/config] validateMSP -> DEBU 60c Setting up MSP for org Org2MSP -2018-01-04 01:50:57.280 UTC [msp] NewBccspMsp -> DEBU 60d Creating BCCSP-based MSP instance -2018-01-04 01:50:57.280 UTC [msp] Setup -> DEBU 60e Setting up MSP instance Org2MSP -2018-01-04 01:50:57.280 UTC [msp/identity] newIdentity -> DEBU 60f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-04 01:50:57.281 UTC [msp/identity] newIdentity -> DEBU 610 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.281 UTC [msp/identity] newIdentity -> DEBU 611 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.282 UTC [msp] Validate -> DEBU 612 MSP Org2MSP validating identity -2018-01-04 01:50:57.282 UTC [common/config] Validate -> DEBU 613 Anchor peers for org Org1MSP are -2018-01-04 01:50:57.282 UTC [common/config] validateMSP -> DEBU 614 Setting up MSP for org Org1MSP -2018-01-04 01:50:57.282 UTC [msp] NewBccspMsp -> DEBU 615 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.282 UTC [msp] Setup -> DEBU 616 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.282 UTC [msp/identity] newIdentity -> DEBU 617 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.605 UTC [msp] Validate -> DEBU 611 MSP OrdererMSP validating identity +2018-01-14 11:45:32.606 UTC [common/config] Validate -> DEBU 612 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.606 UTC [common/config] validateMSP -> DEBU 613 Setting up MSP for org Org1MSP +2018-01-14 11:45:32.606 UTC [msp] NewBccspMsp -> DEBU 614 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.606 UTC [msp] Setup -> DEBU 615 Setting up MSP instance Org1MSP +2018-01-14 11:45:32.607 UTC [msp/identity] newIdentity -> DEBU 616 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2756,7 +2728,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.283 UTC [msp/identity] newIdentity -> DEBU 618 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.607 UTC [msp/identity] newIdentity -> DEBU 617 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2770,7 +2742,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.283 UTC [msp/identity] newIdentity -> DEBU 619 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.607 UTC [msp/identity] newIdentity -> DEBU 618 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2784,249 +2756,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.284 UTC [msp] Validate -> DEBU 61a MSP Org1MSP validating identity -2018-01-04 01:50:57.284 UTC [msp] Setup -> DEBU 61b Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.284 UTC [msp] Setup -> DEBU 61c MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.284 UTC [common/configtx] addToMap -> DEBU 61d Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.284 UTC [common/configtx] addToMap -> DEBU 61e Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:57.284 UTC [common/configtx] addToMap -> DEBU 61f Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 620 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 621 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 622 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 623 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 624 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 625 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 626 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 627 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 628 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:57.285 UTC [common/configtx] addToMap -> DEBU 629 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62a Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62b Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62c Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62d Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 62f Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 630 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 631 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 632 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 633 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:57.286 UTC [common/configtx] addToMap -> DEBU 634 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 635 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 636 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 637 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 638 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 639 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 63a Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 63b Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 63c Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.287 UTC [common/configtx] addToMap -> DEBU 63d Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 63e Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 63f Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 640 Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 641 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 642 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 643 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 644 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 645 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 646 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.288 UTC [common/configtx] addToMap -> DEBU 647 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 648 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 649 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 64a Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 64b Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 64c Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.289 UTC [common/configtx] addToMap -> DEBU 64d Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.289 UTC [policies] GetPolicy -> DEBU 64e Returning policy ChannelCreationPolicy for evaluation -2018-01-04 01:50:57.289 UTC [cauthdsl] func1 -> DEBU 64f 0xc420026d90 gate 1515030657289641600 evaluation starts -2018-01-04 01:50:57.289 UTC [cauthdsl] func2 -> DEBU 650 0xc420026d90 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.289 UTC [cauthdsl] func2 -> DEBU 651 0xc420026d90 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.290 UTC [msp/identity] newIdentity -> DEBU 652 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:50:57.290 UTC [msp] SatisfiesPrincipal -> DEBU 653 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:57.290 UTC [cauthdsl] func2 -> DEBU 654 0xc420026d90 principal matched by identity 0 -2018-01-04 01:50:57.290 UTC [msp/identity] Verify -> DEBU 655 Verify: digest = 00000000 16 1d 3a 54 aa cd 75 75 82 e7 2d d2 52 8b 11 2f |..:T..uu..-.R../| -00000010 ed 52 5d 9a e6 ba b0 01 c7 8b d6 4a f8 db e9 0d |.R]........J....| -2018-01-04 01:50:57.290 UTC [msp/identity] Verify -> DEBU 656 Verify: sig = 00000000 30 44 02 20 22 1b c2 2a b1 f5 cf d2 e1 c8 53 cb |0D. "..*......S.| -00000010 97 40 1c 08 b0 8a 5e da 63 df 2c 30 9e 6a 25 1c |.@....^.c.,0.j%.| -00000020 f3 87 6c 29 02 20 0e d3 7c ec 3e 5f 67 76 6a 06 |..l). ..|.>_gvj.| -00000030 e2 64 43 9c de 3f a5 cc 09 48 64 02 72 1b 63 67 |.dC..?...Hd.r.cg| -00000040 de 20 dd a7 3b f5 |. ..;.| -2018-01-04 01:50:57.290 UTC [cauthdsl] func2 -> DEBU 657 0xc420026d90 principal evaluation succeeds for identity 0 -2018-01-04 01:50:57.290 UTC [cauthdsl] func1 -> DEBU 658 0xc420026d90 gate 1515030657289641600 evaluation succeeds -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 659 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65a Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65b Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65c Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65d Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65e Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 65f Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 660 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 661 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.291 UTC [common/configtx] recurseConfigMap -> DEBU 662 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 663 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 664 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 665 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 666 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 667 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 668 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 669 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.292 UTC [common/configtx] recurseConfigMap -> DEBU 66a Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:57.293 UTC [common/configtx] recurseConfigMap -> DEBU 66b Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:57.293 UTC [common/configtx] processConfig -> DEBU 66c Beginning new config for channel businesschannel -2018-01-04 01:50:57.293 UTC [common/config] NewStandardValues -> DEBU 66d Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 66e Processing field: HashingAlgorithm -2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 66f Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 670 Processing field: OrdererAddresses -2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 671 Processing field: Consortium -2018-01-04 01:50:57.293 UTC [policies] ProposePolicy -> DEBU 672 Proposed new policy Readers for Channel -2018-01-04 01:50:57.293 UTC [policies] ProposePolicy -> DEBU 673 Proposed new policy Writers for Channel -2018-01-04 01:50:57.293 UTC [policies] ProposePolicy -> DEBU 674 Proposed new policy Admins for Channel -2018-01-04 01:50:57.293 UTC [common/config] NewStandardValues -> DEBU 675 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.293 UTC [common/config] initializeProtosStruct -> DEBU 676 Processing field: ConsensusType -2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 677 Processing field: BatchSize -2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 678 Processing field: BatchTimeout -2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 679 Processing field: KafkaBrokers -2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 67a Processing field: ChannelRestrictions -2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 67b Proposed new policy Readers for Orderer -2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 67c Proposed new policy Writers for Orderer -2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 67d Proposed new policy Admins for Orderer -2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 67e Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.294 UTC [common/config] NewStandardValues -> DEBU 67f Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.294 UTC [common/config] initializeProtosStruct -> DEBU 680 Processing field: MSP -2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 681 Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 682 Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.294 UTC [policies] ProposePolicy -> DEBU 683 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 684 Initializing protos for *struct {} -2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 685 Proposed new policy Readers for Application -2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 686 Proposed new policy Admins for Application -2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 687 Proposed new policy Writers for Application -2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 688 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 689 Processing field: MSP -2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 68a Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 68b Processing field: AnchorPeers -2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 68c Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 68d Processing field: MSP -2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 68e Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 68f Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.295 UTC [policies] ProposePolicy -> DEBU 690 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 691 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 692 Processing field: MSP -2018-01-04 01:50:57.295 UTC [common/config] NewStandardValues -> DEBU 693 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.295 UTC [common/config] initializeProtosStruct -> DEBU 694 Processing field: AnchorPeers -2018-01-04 01:50:57.296 UTC [common/config] NewStandardValues -> DEBU 695 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.296 UTC [common/config] initializeProtosStruct -> DEBU 696 Processing field: MSP -2018-01-04 01:50:57.296 UTC [policies] ProposePolicy -> DEBU 697 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.296 UTC [policies] ProposePolicy -> DEBU 698 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.296 UTC [policies] ProposePolicy -> DEBU 699 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.296 UTC [common/config] validateMSP -> DEBU 69a Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.296 UTC [msp] NewBccspMsp -> DEBU 69b Creating BCCSP-based MSP instance -2018-01-04 01:50:57.296 UTC [msp] Setup -> DEBU 69c Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.296 UTC [msp/identity] newIdentity -> DEBU 69d Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:50:57.297 UTC [msp/identity] newIdentity -> DEBU 69e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.297 UTC [msp/identity] newIdentity -> DEBU 69f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:57.298 UTC [msp] Validate -> DEBU 6a0 MSP OrdererMSP validating identity -2018-01-04 01:50:57.298 UTC [common/config] Validate -> DEBU 6a1 Anchor peers for org Org1MSP are -2018-01-04 01:50:57.298 UTC [common/config] validateMSP -> DEBU 6a2 Setting up MSP for org Org1MSP -2018-01-04 01:50:57.298 UTC [msp] NewBccspMsp -> DEBU 6a3 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.298 UTC [msp] Setup -> DEBU 6a4 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.299 UTC [msp/identity] newIdentity -> DEBU 6a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-04 01:50:57.299 UTC [msp/identity] newIdentity -> DEBU 6a6 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:50:57.300 UTC [msp/identity] newIdentity -> DEBU 6a7 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:50:57.300 UTC [msp] Validate -> DEBU 6a8 MSP Org1MSP validating identity -2018-01-04 01:50:57.300 UTC [common/config] Validate -> DEBU 6a9 Anchor peers for org Org2MSP are -2018-01-04 01:50:57.300 UTC [common/config] validateMSP -> DEBU 6aa Setting up MSP for org Org2MSP -2018-01-04 01:50:57.300 UTC [msp] NewBccspMsp -> DEBU 6ab Creating BCCSP-based MSP instance -2018-01-04 01:50:57.301 UTC [msp] Setup -> DEBU 6ac Setting up MSP instance Org2MSP -2018-01-04 01:50:57.301 UTC [msp/identity] newIdentity -> DEBU 6ad Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.608 UTC [msp] Validate -> DEBU 619 MSP Org1MSP validating identity +2018-01-14 11:45:32.608 UTC [common/config] Validate -> DEBU 61a Anchor peers for org Org2MSP are +2018-01-14 11:45:32.608 UTC [common/config] validateMSP -> DEBU 61b Setting up MSP for org Org2MSP +2018-01-14 11:45:32.608 UTC [msp] NewBccspMsp -> DEBU 61c Creating BCCSP-based MSP instance +2018-01-14 11:45:32.609 UTC [msp] Setup -> DEBU 61d Setting up MSP instance Org2MSP +2018-01-14 11:45:32.609 UTC [msp/identity] newIdentity -> DEBU 61e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3041,7 +2776,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:57.301 UTC [msp/identity] newIdentity -> DEBU 6ae Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.609 UTC [msp/identity] newIdentity -> DEBU 61f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3055,7 +2790,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.302 UTC [msp/identity] newIdentity -> DEBU 6af Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.610 UTC [msp/identity] newIdentity -> DEBU 620 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3069,178 +2804,156 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.302 UTC [msp] Validate -> DEBU 6b0 MSP Org2MSP validating identity -2018-01-04 01:50:57.302 UTC [msp] Setup -> DEBU 6b1 Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.303 UTC [msp] Setup -> DEBU 6b2 MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6b3 Returning policy Writers for evaluation -2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6b4 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6b5 Returning policy Admins for evaluation -2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6b6 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6b7 Returning policy Readers for evaluation -2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6b8 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6b9 Returning policy Readers for evaluation -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6ba Returning policy Writers for evaluation -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6bb Returning policy Admins for evaluation -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6bc Returning policy Writers for evaluation -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6bd Returning policy Readers for evaluation -2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6be In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6bf Returning policy Writers for evaluation -2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6c0 In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6c1 Returning policy Admins for evaluation -2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6c2 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6c3 Returning policy Writers for evaluation -2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6c4 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:57.303 UTC [policies] GetPolicy -> DEBU 6c5 Returning policy Admins for evaluation -2018-01-04 01:50:57.303 UTC [policies] CommitProposals -> DEBU 6c6 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6c7 Returning policy Readers for evaluation -2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6c8 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6c9 Returning policy Readers for evaluation -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6ca Returning policy Readers for evaluation -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6cb Returning policy Admins for evaluation -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6cc Returning policy Admins for evaluation -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6cd Returning policy Writers for evaluation -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6ce Returning policy Writers for evaluation -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6cf Returning policy Readers for evaluation -2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6d0 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6d1 Returning policy Writers for evaluation -2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6d2 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6d3 Returning policy Admins for evaluation -2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6d4 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6d5 Returning policy BlockValidation for evaluation -2018-01-04 01:50:57.304 UTC [policies] CommitProposals -> DEBU 6d6 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:57.304 UTC [policies] GetPolicy -> DEBU 6d7 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6d8 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6d9 Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6da In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6db Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6dc In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6dd Returning policy Admins for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6de In commit adding relative sub-policy Application/Admins to Channel -2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6df Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e0 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6e1 Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e2 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6e3 Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e4 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6e5 Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e6 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:57.305 UTC [policies] GetPolicy -> DEBU 6e7 Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:57.305 UTC [policies] CommitProposals -> DEBU 6e8 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6e9 Returning policy Readers for evaluation -2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6ea In commit adding relative sub-policy Application/Readers to Channel -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6eb Returning policy Writers for evaluation -2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6ec In commit adding relative sub-policy Application/Writers to Channel -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6ed Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6ee In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6ef Returning policy Readers for evaluation -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f0 Returning policy Readers for evaluation -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f1 Returning policy Writers for evaluation -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f2 Returning policy Writers for evaluation -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f3 Returning policy Admins for evaluation -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f4 Returning policy Admins for evaluation -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f5 Returning policy Readers for evaluation -2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6f6 As expected, current configuration has policy '/Channel/Readers' -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f7 Returning policy Writers for evaluation -2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6f8 As expected, current configuration has policy '/Channel/Writers' -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6f9 Returning policy Application/Readers for evaluation -2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6fa As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-04 01:50:57.306 UTC [policies] GetPolicy -> DEBU 6fb Returning policy Application/Writers for evaluation -2018-01-04 01:50:57.306 UTC [policies] CommitProposals -> DEBU 6fc As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-04 01:50:57.307 UTC [policies] GetPolicy -> DEBU 6fd Returning policy Application/Admins for evaluation -2018-01-04 01:50:57.307 UTC [policies] CommitProposals -> DEBU 6fe As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-04 01:50:57.307 UTC [policies] GetPolicy -> DEBU 6ff Returning policy Orderer/BlockValidation for evaluation -2018-01-04 01:50:57.307 UTC [policies] CommitProposals -> DEBU 700 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-04 01:50:57.307 UTC [common/config] NewStandardValues -> DEBU 701 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.307 UTC [common/config] initializeProtosStruct -> DEBU 702 Processing field: HashingAlgorithm -2018-01-04 01:50:57.307 UTC [common/config] initializeProtosStruct -> DEBU 703 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.307 UTC [common/config] initializeProtosStruct -> DEBU 704 Processing field: OrdererAddresses -2018-01-04 01:50:57.307 UTC [common/config] initializeProtosStruct -> DEBU 705 Processing field: Consortium -2018-01-04 01:50:57.309 UTC [common/configtx] addToMap -> DEBU 706 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.309 UTC [common/configtx] addToMap -> DEBU 707 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 708 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 709 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70a Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70b Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70c Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70d Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 70f Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:57.310 UTC [common/configtx] addToMap -> DEBU 710 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 711 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 712 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 713 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 714 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 715 Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 716 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 717 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 718 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 719 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71b Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71c Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71d Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71e Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:57.311 UTC [common/configtx] addToMap -> DEBU 71f Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 720 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 721 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 722 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 723 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 724 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 725 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 726 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 727 Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 728 Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:57.312 UTC [common/configtx] addToMap -> DEBU 729 Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:57.312 UTC [common/configtx] processConfig -> DEBU 72a Beginning new config for channel businesschannel -2018-01-04 01:50:57.313 UTC [common/config] NewStandardValues -> DEBU 72b Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.313 UTC [common/config] initializeProtosStruct -> DEBU 72c Processing field: HashingAlgorithm -2018-01-04 01:50:57.313 UTC [common/config] initializeProtosStruct -> DEBU 72d Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.313 UTC [common/config] initializeProtosStruct -> DEBU 72e Processing field: OrdererAddresses -2018-01-04 01:50:57.313 UTC [common/config] initializeProtosStruct -> DEBU 72f Processing field: Consortium -2018-01-04 01:50:57.313 UTC [policies] ProposePolicy -> DEBU 730 Proposed new policy Readers for Channel -2018-01-04 01:50:57.313 UTC [policies] ProposePolicy -> DEBU 731 Proposed new policy Writers for Channel -2018-01-04 01:50:57.313 UTC [policies] ProposePolicy -> DEBU 732 Proposed new policy Admins for Channel -2018-01-04 01:50:57.314 UTC [common/config] NewStandardValues -> DEBU 733 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 734 Processing field: ConsensusType -2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 735 Processing field: BatchSize -2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 736 Processing field: BatchTimeout -2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 737 Processing field: KafkaBrokers -2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 738 Processing field: ChannelRestrictions -2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 739 Proposed new policy Admins for Orderer -2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 73a Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 73b Proposed new policy Readers for Orderer -2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 73c Proposed new policy Writers for Orderer -2018-01-04 01:50:57.314 UTC [common/config] NewStandardValues -> DEBU 73d Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.314 UTC [common/config] initializeProtosStruct -> DEBU 73e Processing field: MSP -2018-01-04 01:50:57.314 UTC [policies] ProposePolicy -> DEBU 73f Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 740 Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 741 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 742 Initializing protos for *struct {} -2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 743 Proposed new policy Admins for Application -2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 744 Proposed new policy Writers for Application -2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 745 Proposed new policy Readers for Application -2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 746 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 747 Processing field: MSP -2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 748 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 749 Processing field: AnchorPeers -2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 74a Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 74b Processing field: MSP -2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 74c Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 74d Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.315 UTC [policies] ProposePolicy -> DEBU 74e Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 74f Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 750 Processing field: MSP -2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 751 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 752 Processing field: AnchorPeers -2018-01-04 01:50:57.315 UTC [common/config] NewStandardValues -> DEBU 753 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.315 UTC [common/config] initializeProtosStruct -> DEBU 754 Processing field: MSP -2018-01-04 01:50:57.316 UTC [policies] ProposePolicy -> DEBU 755 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.316 UTC [policies] ProposePolicy -> DEBU 756 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.316 UTC [policies] ProposePolicy -> DEBU 757 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.316 UTC [common/config] validateMSP -> DEBU 758 Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.316 UTC [msp] NewBccspMsp -> DEBU 759 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.316 UTC [msp] Setup -> DEBU 75a Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.316 UTC [msp/identity] newIdentity -> DEBU 75b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.611 UTC [msp] Validate -> DEBU 621 MSP Org2MSP validating identity +2018-01-14 11:45:32.611 UTC [msp] Setup -> DEBU 622 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.611 UTC [msp] Setup -> DEBU 623 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.611 UTC [common/configtx] addToMap -> DEBU 624 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.611 UTC [common/configtx] addToMap -> DEBU 625 Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:32.611 UTC [common/configtx] addToMap -> DEBU 626 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 627 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 628 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 629 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 62a Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 62b Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 62c Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:32.612 UTC [common/configtx] addToMap -> DEBU 62d Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 62e Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 62f Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 630 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 631 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 632 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 633 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 634 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 635 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:32.613 UTC [common/configtx] addToMap -> DEBU 636 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 637 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 638 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 639 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63a Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63d Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:32.614 UTC [common/configtx] addToMap -> DEBU 63e Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 63f Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 640 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 641 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 642 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 643 Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 644 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 645 Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 646 Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:32.615 UTC [common/configtx] addToMap -> DEBU 647 Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 648 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 649 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64a Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64b Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64c Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64d Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64e Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.616 UTC [common/configtx] addToMap -> DEBU 64f Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 650 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 651 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 652 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 653 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.617 UTC [common/configtx] addToMap -> DEBU 654 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.617 UTC [policies] GetPolicy -> DEBU 655 Returning policy ChannelCreationPolicy for evaluation +2018-01-14 11:45:32.618 UTC [cauthdsl] func1 -> DEBU 656 0xc420026cf0 gate 1515930332618073264 evaluation starts +2018-01-14 11:45:32.618 UTC [cauthdsl] func2 -> DEBU 657 0xc420026cf0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.618 UTC [cauthdsl] func2 -> DEBU 658 0xc420026cf0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.618 UTC [msp/identity] newIdentity -> DEBU 659 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.618 UTC [msp] SatisfiesPrincipal -> DEBU 65a Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:32.619 UTC [cauthdsl] func2 -> DEBU 65b 0xc420026cf0 principal matched by identity 0 +2018-01-14 11:45:32.619 UTC [msp/identity] Verify -> DEBU 65c Verify: digest = 00000000 86 38 9e 8d 91 97 7b 56 53 98 80 04 26 0b 21 38 |.8....{VS...&.!8| +00000010 7b 4d e9 90 de 3c d5 ca 9a aa 5c c0 52 20 af 3b |{M...<....\.R .;| +2018-01-14 11:45:32.619 UTC [msp/identity] Verify -> DEBU 65d Verify: sig = 00000000 30 44 02 20 4b 1a 32 c9 59 4b 7f 38 da b0 d7 0b |0D. K.2.YK.8....| +00000010 e0 06 1a 8e f7 31 97 fc 9f e1 65 2f 34 63 70 96 |.....1....e/4cp.| +00000020 23 b0 fc da 02 20 33 fc 7d 08 7d 18 a9 b0 d7 a8 |#.... 3.}.}.....| +00000030 db dd 80 fb de 0a 21 df f1 4d d6 bc b5 18 c0 dd |......!..M......| +00000040 12 a6 8e 7f 16 50 |.....P| +2018-01-14 11:45:32.619 UTC [cauthdsl] func2 -> DEBU 65e 0xc420026cf0 principal evaluation succeeds for identity 0 +2018-01-14 11:45:32.619 UTC [cauthdsl] func1 -> DEBU 65f 0xc420026cf0 gate 1515930332618073264 evaluation succeeds +2018-01-14 11:45:32.619 UTC [common/configtx] recurseConfigMap -> DEBU 660 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.619 UTC [common/configtx] recurseConfigMap -> DEBU 661 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.619 UTC [common/configtx] recurseConfigMap -> DEBU 662 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 663 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 664 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 665 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 666 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 667 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 668 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.620 UTC [common/configtx] recurseConfigMap -> DEBU 669 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66a Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66b Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66c Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66d Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.621 UTC [common/configtx] recurseConfigMap -> DEBU 66e Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:32.622 UTC [common/configtx] recurseConfigMap -> DEBU 66f Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.622 UTC [common/configtx] recurseConfigMap -> DEBU 670 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.622 UTC [common/configtx] recurseConfigMap -> DEBU 671 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:32.622 UTC [common/configtx] recurseConfigMap -> DEBU 672 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:32.622 UTC [common/configtx] processConfig -> DEBU 673 Beginning new config for channel businesschannel +2018-01-14 11:45:32.622 UTC [common/config] NewStandardValues -> DEBU 674 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.623 UTC [common/config] initializeProtosStruct -> DEBU 675 Processing field: HashingAlgorithm +2018-01-14 11:45:32.623 UTC [common/config] initializeProtosStruct -> DEBU 676 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.623 UTC [common/config] initializeProtosStruct -> DEBU 677 Processing field: OrdererAddresses +2018-01-14 11:45:32.623 UTC [common/config] initializeProtosStruct -> DEBU 678 Processing field: Consortium +2018-01-14 11:45:32.623 UTC [policies] ProposePolicy -> DEBU 679 Proposed new policy Readers for Channel +2018-01-14 11:45:32.623 UTC [policies] ProposePolicy -> DEBU 67a Proposed new policy Writers for Channel +2018-01-14 11:45:32.623 UTC [policies] ProposePolicy -> DEBU 67b Proposed new policy Admins for Channel +2018-01-14 11:45:32.624 UTC [common/config] NewStandardValues -> DEBU 67c Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 67d Processing field: ConsensusType +2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 67e Processing field: BatchSize +2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 67f Processing field: BatchTimeout +2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 680 Processing field: KafkaBrokers +2018-01-14 11:45:32.624 UTC [common/config] initializeProtosStruct -> DEBU 681 Processing field: ChannelRestrictions +2018-01-14 11:45:32.624 UTC [policies] ProposePolicy -> DEBU 682 Proposed new policy Readers for Orderer +2018-01-14 11:45:32.624 UTC [policies] ProposePolicy -> DEBU 683 Proposed new policy Writers for Orderer +2018-01-14 11:45:32.624 UTC [policies] ProposePolicy -> DEBU 684 Proposed new policy Admins for Orderer +2018-01-14 11:45:32.624 UTC [policies] ProposePolicy -> DEBU 685 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.624 UTC [common/config] NewStandardValues -> DEBU 686 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.625 UTC [common/config] initializeProtosStruct -> DEBU 687 Processing field: MSP +2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 688 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 689 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 68a Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.625 UTC [common/config] NewStandardValues -> DEBU 68b Initializing protos for *struct {} +2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 68c Proposed new policy Readers for Application +2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 68d Proposed new policy Admins for Application +2018-01-14 11:45:32.625 UTC [policies] ProposePolicy -> DEBU 68e Proposed new policy Writers for Application +2018-01-14 11:45:32.625 UTC [common/config] NewStandardValues -> DEBU 68f Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.625 UTC [common/config] initializeProtosStruct -> DEBU 690 Processing field: MSP +2018-01-14 11:45:32.626 UTC [common/config] NewStandardValues -> DEBU 691 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.626 UTC [common/config] initializeProtosStruct -> DEBU 692 Processing field: AnchorPeers +2018-01-14 11:45:32.626 UTC [common/config] NewStandardValues -> DEBU 693 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.626 UTC [common/config] initializeProtosStruct -> DEBU 694 Processing field: MSP +2018-01-14 11:45:32.626 UTC [policies] ProposePolicy -> DEBU 695 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.626 UTC [policies] ProposePolicy -> DEBU 696 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.626 UTC [policies] ProposePolicy -> DEBU 697 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.627 UTC [common/config] NewStandardValues -> DEBU 698 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.627 UTC [common/config] initializeProtosStruct -> DEBU 699 Processing field: MSP +2018-01-14 11:45:32.627 UTC [common/config] NewStandardValues -> DEBU 69a Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.627 UTC [common/config] initializeProtosStruct -> DEBU 69b Processing field: AnchorPeers +2018-01-14 11:45:32.627 UTC [common/config] NewStandardValues -> DEBU 69c Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.627 UTC [common/config] initializeProtosStruct -> DEBU 69d Processing field: MSP +2018-01-14 11:45:32.627 UTC [policies] ProposePolicy -> DEBU 69e Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.628 UTC [policies] ProposePolicy -> DEBU 69f Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.628 UTC [policies] ProposePolicy -> DEBU 6a0 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.628 UTC [common/config] validateMSP -> DEBU 6a1 Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.628 UTC [msp] NewBccspMsp -> DEBU 6a2 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.628 UTC [msp] Setup -> DEBU 6a3 Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.628 UTC [msp/identity] newIdentity -> DEBU 6a4 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -3254,7 +2967,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:57.317 UTC [msp/identity] newIdentity -> DEBU 75c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.629 UTC [msp/identity] newIdentity -> DEBU 6a5 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3267,7 +2980,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.317 UTC [msp/identity] newIdentity -> DEBU 75d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.629 UTC [msp/identity] newIdentity -> DEBU 6a6 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3280,12 +2993,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.318 UTC [msp] Validate -> DEBU 75e MSP OrdererMSP validating identity -2018-01-04 01:50:57.318 UTC [common/config] Validate -> DEBU 75f Anchor peers for org Org1MSP are -2018-01-04 01:50:57.318 UTC [common/config] validateMSP -> DEBU 760 Setting up MSP for org Org1MSP -2018-01-04 01:50:57.318 UTC [msp] NewBccspMsp -> DEBU 761 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.318 UTC [msp] Setup -> DEBU 762 Setting up MSP instance Org1MSP -2018-01-04 01:50:57.318 UTC [msp/identity] newIdentity -> DEBU 763 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.630 UTC [msp] Validate -> DEBU 6a7 MSP OrdererMSP validating identity +2018-01-14 11:45:32.634 UTC [common/config] Validate -> DEBU 6a8 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.636 UTC [common/config] validateMSP -> DEBU 6a9 Setting up MSP for org Org1MSP +2018-01-14 11:45:32.636 UTC [msp] NewBccspMsp -> DEBU 6aa Creating BCCSP-based MSP instance +2018-01-14 11:45:32.636 UTC [msp] Setup -> DEBU 6ab Setting up MSP instance Org1MSP +2018-01-14 11:45:32.637 UTC [msp/identity] newIdentity -> DEBU 6ac Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3300,7 +3013,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.319 UTC [msp/identity] newIdentity -> DEBU 764 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.637 UTC [msp/identity] newIdentity -> DEBU 6ad Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3314,7 +3027,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.319 UTC [msp/identity] newIdentity -> DEBU 765 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.638 UTC [msp/identity] newIdentity -> DEBU 6ae Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3328,12 +3041,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.320 UTC [msp] Validate -> DEBU 766 MSP Org1MSP validating identity -2018-01-04 01:50:57.320 UTC [common/config] Validate -> DEBU 767 Anchor peers for org Org2MSP are -2018-01-04 01:50:57.320 UTC [common/config] validateMSP -> DEBU 768 Setting up MSP for org Org2MSP -2018-01-04 01:50:57.320 UTC [msp] NewBccspMsp -> DEBU 769 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.320 UTC [msp] Setup -> DEBU 76a Setting up MSP instance Org2MSP -2018-01-04 01:50:57.320 UTC [msp/identity] newIdentity -> DEBU 76b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.638 UTC [msp] Validate -> DEBU 6af MSP Org1MSP validating identity +2018-01-14 11:45:32.639 UTC [common/config] Validate -> DEBU 6b0 Anchor peers for org Org2MSP are +2018-01-14 11:45:32.639 UTC [common/config] validateMSP -> DEBU 6b1 Setting up MSP for org Org2MSP +2018-01-14 11:45:32.639 UTC [msp] NewBccspMsp -> DEBU 6b2 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.639 UTC [msp] Setup -> DEBU 6b3 Setting up MSP instance Org2MSP +2018-01-14 11:45:32.640 UTC [msp/identity] newIdentity -> DEBU 6b4 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3348,7 +3061,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:57.321 UTC [msp/identity] newIdentity -> DEBU 76c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.640 UTC [msp/identity] newIdentity -> DEBU 6b5 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3362,7 +3075,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.321 UTC [msp/identity] newIdentity -> DEBU 76d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.641 UTC [msp/identity] newIdentity -> DEBU 6b6 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3376,183 +3089,178 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:57.322 UTC [msp] Validate -> DEBU 76e MSP Org2MSP validating identity -2018-01-04 01:50:57.322 UTC [msp] Setup -> DEBU 76f Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.322 UTC [msp] Setup -> DEBU 770 MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.322 UTC [policies] GetPolicy -> DEBU 771 Returning policy Writers for evaluation -2018-01-04 01:50:57.322 UTC [policies] CommitProposals -> DEBU 772 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:57.322 UTC [policies] GetPolicy -> DEBU 773 Returning policy Admins for evaluation -2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 774 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 775 Returning policy Readers for evaluation -2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 776 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 777 Returning policy Admins for evaluation -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 778 Returning policy Writers for evaluation -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 779 Returning policy Readers for evaluation -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 77a Returning policy Writers for evaluation -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 77b Returning policy Writers for evaluation -2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 77c In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 77d Returning policy Admins for evaluation -2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 77e In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 77f Returning policy Readers for evaluation -2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 780 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 781 Returning policy Readers for evaluation -2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 782 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 783 Returning policy Writers for evaluation -2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 784 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:57.323 UTC [policies] GetPolicy -> DEBU 785 Returning policy Admins for evaluation -2018-01-04 01:50:57.323 UTC [policies] CommitProposals -> DEBU 786 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 787 Returning policy Admins for evaluation -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 788 Returning policy Admins for evaluation -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 789 Returning policy Writers for evaluation -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78a Returning policy Writers for evaluation -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78b Returning policy Readers for evaluation -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78c Returning policy Readers for evaluation -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78d Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 78e In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 78f Returning policy Admins for evaluation -2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 790 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 791 Returning policy BlockValidation for evaluation -2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 792 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 793 Returning policy Readers for evaluation -2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 794 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:57.324 UTC [policies] GetPolicy -> DEBU 795 Returning policy Writers for evaluation -2018-01-04 01:50:57.324 UTC [policies] CommitProposals -> DEBU 796 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 797 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 798 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 799 Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 79a In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 79b Returning policy Readers for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 79c In commit adding relative sub-policy Application/Readers to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 79d Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 79e In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 79f Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a0 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a1 Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a2 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a3 Returning policy Admins for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a4 In commit adding relative sub-policy Application/Admins to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a5 Returning policy Writers for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a6 In commit adding relative sub-policy Application/Writers to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a7 Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:57.325 UTC [policies] CommitProposals -> DEBU 7a8 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:57.325 UTC [policies] GetPolicy -> DEBU 7a9 Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7aa In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7ab Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7ac In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7ad Returning policy Readers for evaluation -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7ae Returning policy Readers for evaluation -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7af Returning policy Writers for evaluation -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b0 Returning policy Writers for evaluation -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b1 Returning policy Admins for evaluation -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b2 Returning policy Admins for evaluation -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b3 Returning policy Readers for evaluation -2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7b4 As expected, current configuration has policy '/Channel/Readers' -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b5 Returning policy Writers for evaluation -2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7b6 As expected, current configuration has policy '/Channel/Writers' -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b7 Returning policy Application/Readers for evaluation -2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7b8 As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-04 01:50:57.326 UTC [policies] GetPolicy -> DEBU 7b9 Returning policy Application/Writers for evaluation -2018-01-04 01:50:57.326 UTC [policies] CommitProposals -> DEBU 7ba As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-04 01:50:57.327 UTC [policies] GetPolicy -> DEBU 7bb Returning policy Application/Admins for evaluation -2018-01-04 01:50:57.327 UTC [policies] CommitProposals -> DEBU 7bc As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-04 01:50:57.327 UTC [policies] GetPolicy -> DEBU 7bd Returning policy Orderer/BlockValidation for evaluation -2018-01-04 01:50:57.327 UTC [policies] CommitProposals -> DEBU 7be As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-04 01:50:57.327 UTC [orderer/common/blockcutter] Ordered -> DEBU 7bf Found message which requested to be isolated, cutting into its own batch -2018-01-04 01:50:57.327 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 7c0 retrieveBlockByNumber() - blockNum = [0] -2018-01-04 01:50:57.327 UTC [fsblkstorage] newBlockfileStream -> DEBU 7c1 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -2018-01-04 01:50:57.327 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7c2 Remaining bytes=[9082], Going to peek [8] bytes -2018-01-04 01:50:57.327 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7c3 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-04 01:50:57.328 UTC [common/config] NewStandardValues -> DEBU 7c4 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.328 UTC [common/config] initializeProtosStruct -> DEBU 7c5 Processing field: HashingAlgorithm -2018-01-04 01:50:57.328 UTC [common/config] initializeProtosStruct -> DEBU 7c6 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.328 UTC [common/config] initializeProtosStruct -> DEBU 7c7 Processing field: OrdererAddresses -2018-01-04 01:50:57.328 UTC [common/config] initializeProtosStruct -> DEBU 7c8 Processing field: Consortium -2018-01-04 01:50:57.328 UTC [common/configtx] addToMap -> DEBU 7c9 Adding to config map: [Groups] /Channel -2018-01-04 01:50:57.328 UTC [common/configtx] addToMap -> DEBU 7ca Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:57.328 UTC [common/configtx] addToMap -> DEBU 7cb Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:57.328 UTC [common/configtx] addToMap -> DEBU 7cc Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7cd Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7ce Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7cf Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d0 Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d1 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d2 Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d3 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d4 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d5 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d6 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d7 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d8 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:57.329 UTC [common/configtx] addToMap -> DEBU 7d9 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7da Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7db Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7dc Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7dd Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7de Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7df Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e0 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e1 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e2 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e3 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e4 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e5 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:57.330 UTC [common/configtx] addToMap -> DEBU 7e6 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7e7 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7e8 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7e9 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7ea Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7eb Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:57.331 UTC [common/configtx] addToMap -> DEBU 7ec Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:57.331 UTC [common/configtx] processConfig -> DEBU 7ed Beginning new config for channel businesschannel -2018-01-04 01:50:57.331 UTC [common/config] NewStandardValues -> DEBU 7ee Initializing protos for *config.ChannelProtos -2018-01-04 01:50:57.331 UTC [common/config] initializeProtosStruct -> DEBU 7ef Processing field: HashingAlgorithm -2018-01-04 01:50:57.331 UTC [common/config] initializeProtosStruct -> DEBU 7f0 Processing field: BlockDataHashingStructure -2018-01-04 01:50:57.331 UTC [common/config] initializeProtosStruct -> DEBU 7f1 Processing field: OrdererAddresses -2018-01-04 01:50:57.331 UTC [common/config] initializeProtosStruct -> DEBU 7f2 Processing field: Consortium -2018-01-04 01:50:57.331 UTC [policies] ProposePolicy -> DEBU 7f3 Proposed new policy Readers for Channel -2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7f4 Proposed new policy Writers for Channel -2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7f5 Proposed new policy Admins for Channel -2018-01-04 01:50:57.332 UTC [common/config] NewStandardValues -> DEBU 7f6 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7f7 Processing field: ConsensusType -2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7f8 Processing field: BatchSize -2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7f9 Processing field: BatchTimeout -2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7fa Processing field: KafkaBrokers -2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 7fb Processing field: ChannelRestrictions -2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7fc Proposed new policy Readers for Orderer -2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7fd Proposed new policy Writers for Orderer -2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7fe Proposed new policy Admins for Orderer -2018-01-04 01:50:57.332 UTC [policies] ProposePolicy -> DEBU 7ff Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:57.332 UTC [common/config] NewStandardValues -> DEBU 800 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.332 UTC [common/config] initializeProtosStruct -> DEBU 801 Processing field: MSP -2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 802 Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 803 Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 804 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:57.333 UTC [common/config] NewStandardValues -> DEBU 805 Initializing protos for *struct {} -2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 806 Proposed new policy Admins for Application -2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 807 Proposed new policy Writers for Application -2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 808 Proposed new policy Readers for Application -2018-01-04 01:50:57.333 UTC [common/config] NewStandardValues -> DEBU 809 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.333 UTC [common/config] initializeProtosStruct -> DEBU 80a Processing field: MSP -2018-01-04 01:50:57.333 UTC [common/config] NewStandardValues -> DEBU 80b Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.333 UTC [common/config] initializeProtosStruct -> DEBU 80c Processing field: AnchorPeers -2018-01-04 01:50:57.333 UTC [common/config] NewStandardValues -> DEBU 80d Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.333 UTC [common/config] initializeProtosStruct -> DEBU 80e Processing field: MSP -2018-01-04 01:50:57.333 UTC [policies] ProposePolicy -> DEBU 80f Proposed new policy Admins for Org2MSP -2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 810 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 811 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:57.334 UTC [common/config] NewStandardValues -> DEBU 812 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.334 UTC [common/config] initializeProtosStruct -> DEBU 813 Processing field: MSP -2018-01-04 01:50:57.334 UTC [common/config] NewStandardValues -> DEBU 814 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:57.334 UTC [common/config] initializeProtosStruct -> DEBU 815 Processing field: AnchorPeers -2018-01-04 01:50:57.334 UTC [common/config] NewStandardValues -> DEBU 816 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:57.334 UTC [common/config] initializeProtosStruct -> DEBU 817 Processing field: MSP -2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 818 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 819 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:57.334 UTC [policies] ProposePolicy -> DEBU 81a Proposed new policy Readers for Org1MSP -2018-01-04 01:50:57.334 UTC [common/config] validateMSP -> DEBU 81b Setting up MSP for org OrdererOrg -2018-01-04 01:50:57.334 UTC [msp] NewBccspMsp -> DEBU 81c Creating BCCSP-based MSP instance -2018-01-04 01:50:57.334 UTC [msp] Setup -> DEBU 81d Setting up MSP instance OrdererMSP -2018-01-04 01:50:57.335 UTC [msp/identity] newIdentity -> DEBU 81e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.641 UTC [msp] Validate -> DEBU 6b7 MSP Org2MSP validating identity +2018-01-14 11:45:32.641 UTC [msp] Setup -> DEBU 6b8 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.641 UTC [msp] Setup -> DEBU 6b9 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6ba Returning policy Readers for evaluation +2018-01-14 11:45:32.642 UTC [policies] CommitProposals -> DEBU 6bb In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6bc Returning policy Writers for evaluation +2018-01-14 11:45:32.642 UTC [policies] CommitProposals -> DEBU 6bd In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6be Returning policy Admins for evaluation +2018-01-14 11:45:32.642 UTC [policies] CommitProposals -> DEBU 6bf In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c0 Returning policy Readers for evaluation +2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c1 Returning policy Writers for evaluation +2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c2 Returning policy Admins for evaluation +2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c3 Returning policy Writers for evaluation +2018-01-14 11:45:32.642 UTC [policies] GetPolicy -> DEBU 6c4 Returning policy Readers for evaluation +2018-01-14 11:45:32.643 UTC [policies] CommitProposals -> DEBU 6c5 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:32.643 UTC [policies] GetPolicy -> DEBU 6c6 Returning policy Writers for evaluation +2018-01-14 11:45:32.643 UTC [policies] CommitProposals -> DEBU 6c7 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:32.643 UTC [policies] GetPolicy -> DEBU 6c8 Returning policy Admins for evaluation +2018-01-14 11:45:32.643 UTC [policies] CommitProposals -> DEBU 6c9 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:32.643 UTC [policies] GetPolicy -> DEBU 6ca Returning policy Writers for evaluation +2018-01-14 11:45:32.644 UTC [policies] CommitProposals -> DEBU 6cb In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6cc Returning policy Admins for evaluation +2018-01-14 11:45:32.644 UTC [policies] CommitProposals -> DEBU 6cd In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6ce Returning policy Readers for evaluation +2018-01-14 11:45:32.644 UTC [policies] CommitProposals -> DEBU 6cf In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6d0 Returning policy Readers for evaluation +2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6d1 Returning policy Readers for evaluation +2018-01-14 11:45:32.644 UTC [policies] GetPolicy -> DEBU 6d2 Returning policy Admins for evaluation +2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d3 Returning policy Admins for evaluation +2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d4 Returning policy Writers for evaluation +2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d5 Returning policy Writers for evaluation +2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d6 Returning policy Writers for evaluation +2018-01-14 11:45:32.645 UTC [policies] CommitProposals -> DEBU 6d7 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6d8 Returning policy Admins for evaluation +2018-01-14 11:45:32.645 UTC [policies] CommitProposals -> DEBU 6d9 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:32.645 UTC [policies] GetPolicy -> DEBU 6da Returning policy BlockValidation for evaluation +2018-01-14 11:45:32.646 UTC [policies] CommitProposals -> DEBU 6db In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:32.646 UTC [policies] GetPolicy -> DEBU 6dc Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:32.646 UTC [policies] CommitProposals -> DEBU 6dd In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:32.646 UTC [policies] GetPolicy -> DEBU 6de Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:32.647 UTC [policies] CommitProposals -> DEBU 6df In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:32.647 UTC [policies] GetPolicy -> DEBU 6e0 Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:32.647 UTC [policies] CommitProposals -> DEBU 6e1 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:32.647 UTC [policies] GetPolicy -> DEBU 6e2 Returning policy Readers for evaluation +2018-01-14 11:45:32.647 UTC [policies] CommitProposals -> DEBU 6e3 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:32.647 UTC [policies] GetPolicy -> DEBU 6e4 Returning policy Admins for evaluation +2018-01-14 11:45:32.647 UTC [policies] CommitProposals -> DEBU 6e5 In commit adding relative sub-policy Application/Admins to Channel +2018-01-14 11:45:32.647 UTC [policies] GetPolicy -> DEBU 6e6 Returning policy Writers for evaluation +2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6e7 In commit adding relative sub-policy Application/Writers to Channel +2018-01-14 11:45:32.648 UTC [policies] GetPolicy -> DEBU 6e8 Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6e9 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:32.648 UTC [policies] GetPolicy -> DEBU 6ea Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6eb In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:32.648 UTC [policies] GetPolicy -> DEBU 6ec Returning policy Readers for evaluation +2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6ed In commit adding relative sub-policy Application/Readers to Channel +2018-01-14 11:45:32.648 UTC [policies] GetPolicy -> DEBU 6ee Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:32.648 UTC [policies] CommitProposals -> DEBU 6ef In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f0 Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:32.649 UTC [policies] CommitProposals -> DEBU 6f1 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f2 Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:32.649 UTC [policies] CommitProposals -> DEBU 6f3 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f4 Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:32.649 UTC [policies] CommitProposals -> DEBU 6f5 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f6 Returning policy Readers for evaluation +2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f7 Returning policy Readers for evaluation +2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f8 Returning policy Writers for evaluation +2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6f9 Returning policy Writers for evaluation +2018-01-14 11:45:32.649 UTC [policies] GetPolicy -> DEBU 6fa Returning policy Admins for evaluation +2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 6fb Returning policy Admins for evaluation +2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 6fc Returning policy Readers for evaluation +2018-01-14 11:45:32.650 UTC [policies] CommitProposals -> DEBU 6fd As expected, current configuration has policy '/Channel/Readers' +2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 6fe Returning policy Writers for evaluation +2018-01-14 11:45:32.650 UTC [policies] CommitProposals -> DEBU 6ff As expected, current configuration has policy '/Channel/Writers' +2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 700 Returning policy Application/Readers for evaluation +2018-01-14 11:45:32.650 UTC [policies] CommitProposals -> DEBU 701 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 702 Returning policy Application/Writers for evaluation +2018-01-14 11:45:32.650 UTC [policies] CommitProposals -> DEBU 703 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-14 11:45:32.650 UTC [policies] GetPolicy -> DEBU 704 Returning policy Application/Admins for evaluation +2018-01-14 11:45:32.651 UTC [policies] CommitProposals -> DEBU 705 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-14 11:45:32.651 UTC [policies] GetPolicy -> DEBU 706 Returning policy Orderer/BlockValidation for evaluation +2018-01-14 11:45:32.651 UTC [policies] CommitProposals -> DEBU 707 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-14 11:45:32.651 UTC [common/config] NewStandardValues -> DEBU 708 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.651 UTC [common/config] initializeProtosStruct -> DEBU 709 Processing field: HashingAlgorithm +2018-01-14 11:45:32.651 UTC [common/config] initializeProtosStruct -> DEBU 70a Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.651 UTC [common/config] initializeProtosStruct -> DEBU 70b Processing field: OrdererAddresses +2018-01-14 11:45:32.651 UTC [common/config] initializeProtosStruct -> DEBU 70c Processing field: Consortium +2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 70d Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 70e Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 70f Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 710 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 711 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 712 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:32.652 UTC [common/configtx] addToMap -> DEBU 713 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 714 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 715 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 716 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 717 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 718 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 719 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:32.653 UTC [common/configtx] addToMap -> DEBU 71a Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71b Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71c Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71d Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 71f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 720 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 721 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:32.654 UTC [common/configtx] addToMap -> DEBU 722 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 723 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 724 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 725 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 726 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 727 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 728 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.655 UTC [common/configtx] addToMap -> DEBU 729 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72a Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72b Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72c Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72d Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72e Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 72f Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:32.656 UTC [common/configtx] addToMap -> DEBU 730 Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:32.656 UTC [common/configtx] processConfig -> DEBU 731 Beginning new config for channel businesschannel +2018-01-14 11:45:32.657 UTC [common/config] NewStandardValues -> DEBU 732 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 733 Processing field: HashingAlgorithm +2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 734 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 735 Processing field: OrdererAddresses +2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 736 Processing field: Consortium +2018-01-14 11:45:32.657 UTC [policies] ProposePolicy -> DEBU 737 Proposed new policy Readers for Channel +2018-01-14 11:45:32.657 UTC [policies] ProposePolicy -> DEBU 738 Proposed new policy Writers for Channel +2018-01-14 11:45:32.657 UTC [policies] ProposePolicy -> DEBU 739 Proposed new policy Admins for Channel +2018-01-14 11:45:32.657 UTC [common/config] NewStandardValues -> DEBU 73a Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.657 UTC [common/config] initializeProtosStruct -> DEBU 73b Processing field: ConsensusType +2018-01-14 11:45:32.658 UTC [common/config] initializeProtosStruct -> DEBU 73c Processing field: BatchSize +2018-01-14 11:45:32.658 UTC [common/config] initializeProtosStruct -> DEBU 73d Processing field: BatchTimeout +2018-01-14 11:45:32.658 UTC [common/config] initializeProtosStruct -> DEBU 73e Processing field: KafkaBrokers +2018-01-14 11:45:32.658 UTC [common/config] initializeProtosStruct -> DEBU 73f Processing field: ChannelRestrictions +2018-01-14 11:45:32.658 UTC [policies] ProposePolicy -> DEBU 740 Proposed new policy Readers for Orderer +2018-01-14 11:45:32.658 UTC [policies] ProposePolicy -> DEBU 741 Proposed new policy Writers for Orderer +2018-01-14 11:45:32.658 UTC [policies] ProposePolicy -> DEBU 742 Proposed new policy Admins for Orderer +2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 743 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.659 UTC [common/config] NewStandardValues -> DEBU 744 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.659 UTC [common/config] initializeProtosStruct -> DEBU 745 Processing field: MSP +2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 746 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 747 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 748 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.659 UTC [common/config] NewStandardValues -> DEBU 749 Initializing protos for *struct {} +2018-01-14 11:45:32.659 UTC [policies] ProposePolicy -> DEBU 74a Proposed new policy Admins for Application +2018-01-14 11:45:32.660 UTC [policies] ProposePolicy -> DEBU 74b Proposed new policy Writers for Application +2018-01-14 11:45:32.660 UTC [policies] ProposePolicy -> DEBU 74c Proposed new policy Readers for Application +2018-01-14 11:45:32.660 UTC [common/config] NewStandardValues -> DEBU 74d Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.660 UTC [common/config] initializeProtosStruct -> DEBU 74e Processing field: MSP +2018-01-14 11:45:32.660 UTC [common/config] NewStandardValues -> DEBU 74f Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.660 UTC [common/config] initializeProtosStruct -> DEBU 750 Processing field: AnchorPeers +2018-01-14 11:45:32.660 UTC [common/config] NewStandardValues -> DEBU 751 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.660 UTC [common/config] initializeProtosStruct -> DEBU 752 Processing field: MSP +2018-01-14 11:45:32.660 UTC [policies] ProposePolicy -> DEBU 753 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.661 UTC [policies] ProposePolicy -> DEBU 754 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.661 UTC [policies] ProposePolicy -> DEBU 755 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.661 UTC [common/config] NewStandardValues -> DEBU 756 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.661 UTC [common/config] initializeProtosStruct -> DEBU 757 Processing field: MSP +2018-01-14 11:45:32.661 UTC [common/config] NewStandardValues -> DEBU 758 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.661 UTC [common/config] initializeProtosStruct -> DEBU 759 Processing field: AnchorPeers +2018-01-14 11:45:32.662 UTC [common/config] NewStandardValues -> DEBU 75a Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.662 UTC [common/config] initializeProtosStruct -> DEBU 75b Processing field: MSP +2018-01-14 11:45:32.662 UTC [policies] ProposePolicy -> DEBU 75c Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.662 UTC [policies] ProposePolicy -> DEBU 75d Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.662 UTC [policies] ProposePolicy -> DEBU 75e Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.663 UTC [common/config] validateMSP -> DEBU 75f Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.663 UTC [msp] NewBccspMsp -> DEBU 760 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.663 UTC [msp] Setup -> DEBU 761 Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.663 UTC [msp/identity] newIdentity -> DEBU 762 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -3566,7 +3274,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:57.336 UTC [msp/identity] newIdentity -> DEBU 81f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.664 UTC [msp/identity] newIdentity -> DEBU 763 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3579,7 +3287,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.336 UTC [msp/identity] newIdentity -> DEBU 820 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.664 UTC [msp/identity] newIdentity -> DEBU 764 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3592,60 +3300,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:57.337 UTC [msp] Validate -> DEBU 821 MSP OrdererMSP validating identity -2018-01-04 01:50:57.337 UTC [common/config] Validate -> DEBU 822 Anchor peers for org Org2MSP are -2018-01-04 01:50:57.337 UTC [common/config] validateMSP -> DEBU 823 Setting up MSP for org Org2MSP -2018-01-04 01:50:57.337 UTC [msp] NewBccspMsp -> DEBU 824 Creating BCCSP-based MSP instance -2018-01-04 01:50:57.337 UTC [msp] Setup -> DEBU 825 Setting up MSP instance Org2MSP -2018-01-04 01:50:57.337 UTC [msp/identity] newIdentity -> DEBU 826 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 -sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ -xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv -WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk -SCjyRdD3aQ== ------END CERTIFICATE----- -2018-01-04 01:50:57.338 UTC [msp/identity] newIdentity -> DEBU 827 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.338 UTC [msp/identity] newIdentity -> DEBU 828 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:50:57.339 UTC [msp] Validate -> DEBU 829 MSP Org2MSP validating identity -2018-01-04 01:50:57.339 UTC [common/config] Validate -> DEBU 82a Anchor peers for org Org1MSP are -2018-01-04 01:50:57.339 UTC [common/config] validateMSP -> DEBU 82b Setting up MSP for org Org1MSP -2018-01-04 01:50:57.339 UTC [msp] NewBccspMsp -> DEBU 82c Creating BCCSP-based MSP instance -2018-01-04 01:50:57.339 UTC [msp] Setup -> DEBU 82d Setting up MSP instance Org1MSP -2018-01-04 01:50:57.340 UTC [msp/identity] newIdentity -> DEBU 82e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.665 UTC [msp] Validate -> DEBU 765 MSP OrdererMSP validating identity +2018-01-14 11:45:32.665 UTC [common/config] Validate -> DEBU 766 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.665 UTC [common/config] validateMSP -> DEBU 767 Setting up MSP for org Org1MSP +2018-01-14 11:45:32.666 UTC [msp] NewBccspMsp -> DEBU 768 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.666 UTC [msp] Setup -> DEBU 769 Setting up MSP instance Org1MSP +2018-01-14 11:45:32.666 UTC [msp/identity] newIdentity -> DEBU 76a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3660,7 +3320,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:57.340 UTC [msp/identity] newIdentity -> DEBU 82f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.667 UTC [msp/identity] newIdentity -> DEBU 76b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3674,7 +3334,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.340 UTC [msp/identity] newIdentity -> DEBU 830 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.667 UTC [msp/identity] newIdentity -> DEBU 76c Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3688,132 +3348,492 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.341 UTC [msp] Validate -> DEBU 831 MSP Org1MSP validating identity -2018-01-04 01:50:57.341 UTC [msp] Setup -> DEBU 832 Setting up the MSP manager (3 msps) -2018-01-04 01:50:57.341 UTC [msp] Setup -> DEBU 833 MSP manager setup complete, setup 3 msps -2018-01-04 01:50:57.341 UTC [policies] GetPolicy -> DEBU 834 Returning policy Writers for evaluation -2018-01-04 01:50:57.341 UTC [policies] CommitProposals -> DEBU 835 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:57.341 UTC [policies] GetPolicy -> DEBU 836 Returning policy Admins for evaluation -2018-01-04 01:50:57.341 UTC [policies] CommitProposals -> DEBU 837 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:57.341 UTC [policies] GetPolicy -> DEBU 838 Returning policy Readers for evaluation -2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 839 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83a Returning policy Readers for evaluation -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83b Returning policy Writers for evaluation -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83c Returning policy Admins for evaluation -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83d Returning policy Writers for evaluation -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 83e Returning policy Writers for evaluation -2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 83f In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 840 Returning policy Admins for evaluation -2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 841 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 842 Returning policy Readers for evaluation -2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 843 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 844 Returning policy Readers for evaluation -2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 845 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 846 Returning policy Writers for evaluation -2018-01-04 01:50:57.342 UTC [policies] CommitProposals -> DEBU 847 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:57.342 UTC [policies] GetPolicy -> DEBU 848 Returning policy Admins for evaluation -2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 849 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84a Returning policy Admins for evaluation -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84b Returning policy Admins for evaluation -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84c Returning policy Writers for evaluation -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84d Returning policy Writers for evaluation -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84e Returning policy Readers for evaluation -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 84f Returning policy Readers for evaluation -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 850 Returning policy Admins for evaluation -2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 851 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 852 Returning policy BlockValidation for evaluation -2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 853 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 854 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 855 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 856 Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 857 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:57.343 UTC [policies] GetPolicy -> DEBU 858 Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:57.343 UTC [policies] CommitProposals -> DEBU 859 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 85a Returning policy Readers for evaluation -2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 85b In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 85c Returning policy Writers for evaluation -2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 85d In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 85e Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 85f In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 860 Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 861 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 862 Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 863 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 864 Returning policy Admins for evaluation -2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 865 In commit adding relative sub-policy Application/Admins to Channel -2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 866 Returning policy Writers for evaluation -2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 867 In commit adding relative sub-policy Application/Writers to Channel -2018-01-04 01:50:57.344 UTC [policies] GetPolicy -> DEBU 868 Returning policy Readers for evaluation -2018-01-04 01:50:57.344 UTC [policies] CommitProposals -> DEBU 869 In commit adding relative sub-policy Application/Readers to Channel -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 86a Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 86b In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 86c Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 86d In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 86e Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 86f In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 870 Returning policy Readers for evaluation -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 871 Returning policy Readers for evaluation -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 872 Returning policy Writers for evaluation -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 873 Returning policy Writers for evaluation -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 874 Returning policy Admins for evaluation -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 875 Returning policy Admins for evaluation -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 876 Returning policy Readers for evaluation -2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 877 As expected, current configuration has policy '/Channel/Readers' -2018-01-04 01:50:57.345 UTC [policies] GetPolicy -> DEBU 878 Returning policy Writers for evaluation -2018-01-04 01:50:57.345 UTC [policies] CommitProposals -> DEBU 879 As expected, current configuration has policy '/Channel/Writers' -2018-01-04 01:50:57.346 UTC [policies] GetPolicy -> DEBU 87a Returning policy Application/Readers for evaluation -2018-01-04 01:50:57.346 UTC [policies] CommitProposals -> DEBU 87b As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-04 01:50:57.346 UTC [policies] GetPolicy -> DEBU 87c Returning policy Application/Writers for evaluation -2018-01-04 01:50:57.346 UTC [policies] CommitProposals -> DEBU 87d As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-04 01:50:57.346 UTC [policies] GetPolicy -> DEBU 87e Returning policy Application/Admins for evaluation -2018-01-04 01:50:57.346 UTC [policies] CommitProposals -> DEBU 87f As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-04 01:50:57.346 UTC [policies] GetPolicy -> DEBU 880 Returning policy Orderer/BlockValidation for evaluation -2018-01-04 01:50:57.346 UTC [policies] CommitProposals -> DEBU 881 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-04 01:50:57.346 UTC [fsblkstorage] newBlockfileMgr -> DEBU 882 newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -2018-01-04 01:50:57.346 UTC [kvledger.util] CreateDirIfMissing -> DEBU 883 CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -2018-01-04 01:50:57.346 UTC [kvledger.util] logDirStatus -> DEBU 884 Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -2018-01-04 01:50:57.347 UTC [kvledger.util] logDirStatus -> DEBU 885 After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -2018-01-04 01:50:57.349 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 886 Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -2018-01-04 01:50:57.349 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 887 status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -2018-01-04 01:50:57.349 UTC [fsblkstorage] newBlockIndex -> DEBU 888 newBlockIndex() - indexItems:[[BlockNum]] -2018-01-04 01:50:57.349 UTC [fsblkstorage] newBlockfileStream -> DEBU 889 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-04 01:50:57.349 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 88a Finished reading file number [0] -2018-01-04 01:50:57.349 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 88b blockbytes [0] read from file [0] -2018-01-04 01:50:57.351 UTC [fsblkstorage] indexBlock -> DEBU 88c Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0x61, 0xe4, 0x69, 0xf1, 0xee, 0xa5, 0x26, 0xf8, 0x82, 0xb2, 0x7f, 0xf9, 0x50, 0x2d, 0xfb, 0x67, 0xc4, 0xd7, 0xc4, 0x2b, 0xd6, 0x9c, 0x67, 0x53, 0x48, 0x11, 0x32, 0xbd, 0xf, 0xe6, 0x98} txOffsets= +2018-01-14 11:45:32.669 UTC [msp] Validate -> DEBU 76d MSP Org1MSP validating identity +2018-01-14 11:45:32.669 UTC [common/config] Validate -> DEBU 76e Anchor peers for org Org2MSP are +2018-01-14 11:45:32.669 UTC [common/config] validateMSP -> DEBU 76f Setting up MSP for org Org2MSP +2018-01-14 11:45:32.669 UTC [msp] NewBccspMsp -> DEBU 770 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.669 UTC [msp] Setup -> DEBU 771 Setting up MSP instance Org2MSP +2018-01-14 11:45:32.670 UTC [msp/identity] newIdentity -> DEBU 772 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-14 11:45:32.670 UTC [msp/identity] newIdentity -> DEBU 773 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.671 UTC [msp/identity] newIdentity -> DEBU 774 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.672 UTC [msp] Validate -> DEBU 775 MSP Org2MSP validating identity +2018-01-14 11:45:32.672 UTC [msp] Setup -> DEBU 776 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.672 UTC [msp] Setup -> DEBU 777 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 778 Returning policy Writers for evaluation +2018-01-14 11:45:32.673 UTC [policies] CommitProposals -> DEBU 779 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 77a Returning policy Admins for evaluation +2018-01-14 11:45:32.673 UTC [policies] CommitProposals -> DEBU 77b In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 77c Returning policy Readers for evaluation +2018-01-14 11:45:32.673 UTC [policies] CommitProposals -> DEBU 77d In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 77e Returning policy Readers for evaluation +2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 77f Returning policy Writers for evaluation +2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 780 Returning policy Admins for evaluation +2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 781 Returning policy Writers for evaluation +2018-01-14 11:45:32.673 UTC [policies] GetPolicy -> DEBU 782 Returning policy Readers for evaluation +2018-01-14 11:45:32.673 UTC [policies] CommitProposals -> DEBU 783 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 784 Returning policy Writers for evaluation +2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 785 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 786 Returning policy Admins for evaluation +2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 787 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 788 Returning policy Admins for evaluation +2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 789 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 78a Returning policy Readers for evaluation +2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 78b In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 78c Returning policy Writers for evaluation +2018-01-14 11:45:32.674 UTC [policies] CommitProposals -> DEBU 78d In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 78e Returning policy Admins for evaluation +2018-01-14 11:45:32.674 UTC [policies] GetPolicy -> DEBU 78f Returning policy Admins for evaluation +2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 790 Returning policy Writers for evaluation +2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 791 Returning policy Writers for evaluation +2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 792 Returning policy Readers for evaluation +2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 793 Returning policy Readers for evaluation +2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 794 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:32.675 UTC [policies] CommitProposals -> DEBU 795 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 796 Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:32.675 UTC [policies] CommitProposals -> DEBU 797 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:32.675 UTC [policies] GetPolicy -> DEBU 798 Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:32.675 UTC [policies] CommitProposals -> DEBU 799 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 79a Returning policy Readers for evaluation +2018-01-14 11:45:32.676 UTC [policies] CommitProposals -> DEBU 79b In commit adding relative sub-policy Application/Readers to Channel +2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 79c Returning policy Writers for evaluation +2018-01-14 11:45:32.676 UTC [policies] CommitProposals -> DEBU 79d In commit adding relative sub-policy Application/Writers to Channel +2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 79e Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:32.676 UTC [policies] CommitProposals -> DEBU 79f In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 7a0 Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:32.676 UTC [policies] CommitProposals -> DEBU 7a1 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:32.676 UTC [policies] GetPolicy -> DEBU 7a2 Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7a3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7a4 Returning policy Admins for evaluation +2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7a5 In commit adding relative sub-policy Application/Admins to Channel +2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7a6 Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7a7 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7a8 Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7a9 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7aa Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7ab In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:32.677 UTC [policies] GetPolicy -> DEBU 7ac Returning policy Readers for evaluation +2018-01-14 11:45:32.677 UTC [policies] CommitProposals -> DEBU 7ad In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:32.679 UTC [policies] GetPolicy -> DEBU 7ae Returning policy Writers for evaluation +2018-01-14 11:45:32.680 UTC [policies] CommitProposals -> DEBU 7af In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b0 Returning policy Admins for evaluation +2018-01-14 11:45:32.680 UTC [policies] CommitProposals -> DEBU 7b1 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b2 Returning policy BlockValidation for evaluation +2018-01-14 11:45:32.680 UTC [policies] CommitProposals -> DEBU 7b3 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b4 Returning policy Readers for evaluation +2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b5 Returning policy Readers for evaluation +2018-01-14 11:45:32.680 UTC [policies] GetPolicy -> DEBU 7b6 Returning policy Writers for evaluation +2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7b7 Returning policy Writers for evaluation +2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7b8 Returning policy Admins for evaluation +2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7b9 Returning policy Admins for evaluation +2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7ba Returning policy Readers for evaluation +2018-01-14 11:45:32.681 UTC [policies] CommitProposals -> DEBU 7bb As expected, current configuration has policy '/Channel/Readers' +2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7bc Returning policy Writers for evaluation +2018-01-14 11:45:32.681 UTC [policies] CommitProposals -> DEBU 7bd As expected, current configuration has policy '/Channel/Writers' +2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7be Returning policy Application/Readers for evaluation +2018-01-14 11:45:32.681 UTC [policies] CommitProposals -> DEBU 7bf As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-14 11:45:32.681 UTC [policies] GetPolicy -> DEBU 7c0 Returning policy Application/Writers for evaluation +2018-01-14 11:45:32.681 UTC [policies] CommitProposals -> DEBU 7c1 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-14 11:45:32.682 UTC [policies] GetPolicy -> DEBU 7c2 Returning policy Application/Admins for evaluation +2018-01-14 11:45:32.682 UTC [policies] CommitProposals -> DEBU 7c3 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-14 11:45:32.682 UTC [policies] GetPolicy -> DEBU 7c4 Returning policy Orderer/BlockValidation for evaluation +2018-01-14 11:45:32.682 UTC [policies] CommitProposals -> DEBU 7c5 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-14 11:45:32.682 UTC [orderer/common/blockcutter] Ordered -> DEBU 7c6 Found message which requested to be isolated, cutting into its own batch +2018-01-14 11:45:32.682 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 7c7 retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:45:32.682 UTC [fsblkstorage] newBlockfileStream -> DEBU 7c8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-14 11:45:32.683 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7c9 Remaining bytes=[9082], Going to peek [8] bytes +2018-01-14 11:45:32.683 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 7ca Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:45:32.683 UTC [common/config] NewStandardValues -> DEBU 7cb Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.683 UTC [common/config] initializeProtosStruct -> DEBU 7cc Processing field: HashingAlgorithm +2018-01-14 11:45:32.683 UTC [common/config] initializeProtosStruct -> DEBU 7cd Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.683 UTC [common/config] initializeProtosStruct -> DEBU 7ce Processing field: OrdererAddresses +2018-01-14 11:45:32.683 UTC [common/config] initializeProtosStruct -> DEBU 7cf Processing field: Consortium +2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d0 Adding to config map: [Groups] /Channel +2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d1 Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d2 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d3 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d4 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d5 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d6 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:32.684 UTC [common/configtx] addToMap -> DEBU 7d7 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7d8 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7d9 Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7da Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7db Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7dc Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7dd Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:32.685 UTC [common/configtx] addToMap -> DEBU 7de Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7df Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e0 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e1 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e2 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e3 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e5 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:32.686 UTC [common/configtx] addToMap -> DEBU 7e6 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7e7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7e8 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7e9 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7ea Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7eb Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7ec Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7ed Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:32.687 UTC [common/configtx] addToMap -> DEBU 7ee Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7ef Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7f0 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7f1 Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7f2 Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:32.688 UTC [common/configtx] addToMap -> DEBU 7f3 Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:32.688 UTC [common/configtx] processConfig -> DEBU 7f4 Beginning new config for channel businesschannel +2018-01-14 11:45:32.688 UTC [common/config] NewStandardValues -> DEBU 7f5 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:32.688 UTC [common/config] initializeProtosStruct -> DEBU 7f6 Processing field: HashingAlgorithm +2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7f7 Processing field: BlockDataHashingStructure +2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7f8 Processing field: OrdererAddresses +2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7f9 Processing field: Consortium +2018-01-14 11:45:32.689 UTC [policies] ProposePolicy -> DEBU 7fa Proposed new policy Admins for Channel +2018-01-14 11:45:32.689 UTC [policies] ProposePolicy -> DEBU 7fb Proposed new policy Readers for Channel +2018-01-14 11:45:32.689 UTC [policies] ProposePolicy -> DEBU 7fc Proposed new policy Writers for Channel +2018-01-14 11:45:32.689 UTC [common/config] NewStandardValues -> DEBU 7fd Initializing protos for *config.OrdererProtos +2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7fe Processing field: ConsensusType +2018-01-14 11:45:32.689 UTC [common/config] initializeProtosStruct -> DEBU 7ff Processing field: BatchSize +2018-01-14 11:45:32.690 UTC [common/config] initializeProtosStruct -> DEBU 800 Processing field: BatchTimeout +2018-01-14 11:45:32.690 UTC [common/config] initializeProtosStruct -> DEBU 801 Processing field: KafkaBrokers +2018-01-14 11:45:32.690 UTC [common/config] initializeProtosStruct -> DEBU 802 Processing field: ChannelRestrictions +2018-01-14 11:45:32.690 UTC [policies] ProposePolicy -> DEBU 803 Proposed new policy Readers for Orderer +2018-01-14 11:45:32.690 UTC [policies] ProposePolicy -> DEBU 804 Proposed new policy Writers for Orderer +2018-01-14 11:45:32.690 UTC [policies] ProposePolicy -> DEBU 805 Proposed new policy Admins for Orderer +2018-01-14 11:45:32.690 UTC [policies] ProposePolicy -> DEBU 806 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:32.690 UTC [common/config] NewStandardValues -> DEBU 807 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.691 UTC [common/config] initializeProtosStruct -> DEBU 808 Processing field: MSP +2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 809 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80a Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80b Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:32.691 UTC [common/config] NewStandardValues -> DEBU 80c Initializing protos for *struct {} +2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80d Proposed new policy Writers for Application +2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80e Proposed new policy Readers for Application +2018-01-14 11:45:32.691 UTC [policies] ProposePolicy -> DEBU 80f Proposed new policy Admins for Application +2018-01-14 11:45:32.691 UTC [common/config] NewStandardValues -> DEBU 810 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.691 UTC [common/config] initializeProtosStruct -> DEBU 811 Processing field: MSP +2018-01-14 11:45:32.691 UTC [common/config] NewStandardValues -> DEBU 812 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.691 UTC [common/config] initializeProtosStruct -> DEBU 813 Processing field: AnchorPeers +2018-01-14 11:45:32.692 UTC [common/config] NewStandardValues -> DEBU 814 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.692 UTC [common/config] initializeProtosStruct -> DEBU 815 Processing field: MSP +2018-01-14 11:45:32.692 UTC [policies] ProposePolicy -> DEBU 816 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:32.692 UTC [policies] ProposePolicy -> DEBU 817 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:32.692 UTC [policies] ProposePolicy -> DEBU 818 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:32.692 UTC [common/config] NewStandardValues -> DEBU 819 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.692 UTC [common/config] initializeProtosStruct -> DEBU 81a Processing field: MSP +2018-01-14 11:45:32.692 UTC [common/config] NewStandardValues -> DEBU 81b Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:32.692 UTC [common/config] initializeProtosStruct -> DEBU 81c Processing field: AnchorPeers +2018-01-14 11:45:32.692 UTC [common/config] NewStandardValues -> DEBU 81d Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:32.692 UTC [common/config] initializeProtosStruct -> DEBU 81e Processing field: MSP +2018-01-14 11:45:32.693 UTC [policies] ProposePolicy -> DEBU 81f Proposed new policy Writers for Org2MSP +2018-01-14 11:45:32.693 UTC [policies] ProposePolicy -> DEBU 820 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:32.693 UTC [policies] ProposePolicy -> DEBU 821 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:32.693 UTC [common/config] validateMSP -> DEBU 822 Setting up MSP for org OrdererOrg +2018-01-14 11:45:32.693 UTC [msp] NewBccspMsp -> DEBU 823 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.693 UTC [msp] Setup -> DEBU 824 Setting up MSP instance OrdererMSP +2018-01-14 11:45:32.694 UTC [msp/identity] newIdentity -> DEBU 825 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:32.694 UTC [msp/identity] newIdentity -> DEBU 826 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.695 UTC [msp/identity] newIdentity -> DEBU 827 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:32.695 UTC [msp] Validate -> DEBU 828 MSP OrdererMSP validating identity +2018-01-14 11:45:32.695 UTC [common/config] Validate -> DEBU 829 Anchor peers for org Org1MSP are +2018-01-14 11:45:32.696 UTC [common/config] validateMSP -> DEBU 82a Setting up MSP for org Org1MSP +2018-01-14 11:45:32.696 UTC [msp] NewBccspMsp -> DEBU 82b Creating BCCSP-based MSP instance +2018-01-14 11:45:32.696 UTC [msp] Setup -> DEBU 82c Setting up MSP instance Org1MSP +2018-01-14 11:45:32.696 UTC [msp/identity] newIdentity -> DEBU 82d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-14 11:45:32.697 UTC [msp/identity] newIdentity -> DEBU 82e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.697 UTC [msp/identity] newIdentity -> DEBU 82f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:32.698 UTC [msp] Validate -> DEBU 830 MSP Org1MSP validating identity +2018-01-14 11:45:32.698 UTC [common/config] Validate -> DEBU 831 Anchor peers for org Org2MSP are +2018-01-14 11:45:32.698 UTC [common/config] validateMSP -> DEBU 832 Setting up MSP for org Org2MSP +2018-01-14 11:45:32.698 UTC [msp] NewBccspMsp -> DEBU 833 Creating BCCSP-based MSP instance +2018-01-14 11:45:32.698 UTC [msp] Setup -> DEBU 834 Setting up MSP instance Org2MSP +2018-01-14 11:45:32.699 UTC [msp/identity] newIdentity -> DEBU 835 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMDMxMzA5NTRaFw0yODAxMDExMzA5NTRa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +mDTDv1zFxCCA9oOz5QDNUEoSYQoC7pI7fUZUbbM35iKsyM+VfVykvgRifD5NxUA8 +sN+02JrDaHu0tIqw3zuxaaNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgdjAI1wT4V+tlepkjgks/ +xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv +WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk +SCjyRdD3aQ== +-----END CERTIFICATE----- +2018-01-14 11:45:32.699 UTC [msp/identity] newIdentity -> DEBU 836 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.699 UTC [msp/identity] newIdentity -> DEBU 837 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:32.700 UTC [msp] Validate -> DEBU 838 MSP Org2MSP validating identity +2018-01-14 11:45:32.701 UTC [msp] Setup -> DEBU 839 Setting up the MSP manager (3 msps) +2018-01-14 11:45:32.701 UTC [msp] Setup -> DEBU 83a MSP manager setup complete, setup 3 msps +2018-01-14 11:45:32.701 UTC [policies] GetPolicy -> DEBU 83b Returning policy Readers for evaluation +2018-01-14 11:45:32.701 UTC [policies] CommitProposals -> DEBU 83c In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:32.701 UTC [policies] GetPolicy -> DEBU 83d Returning policy Writers for evaluation +2018-01-14 11:45:32.701 UTC [policies] CommitProposals -> DEBU 83e In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:32.701 UTC [policies] GetPolicy -> DEBU 83f Returning policy Admins for evaluation +2018-01-14 11:45:32.701 UTC [policies] CommitProposals -> DEBU 840 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:32.701 UTC [policies] GetPolicy -> DEBU 841 Returning policy Readers for evaluation +2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 842 Returning policy Writers for evaluation +2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 843 Returning policy Admins for evaluation +2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 844 Returning policy Writers for evaluation +2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 845 Returning policy Readers for evaluation +2018-01-14 11:45:32.702 UTC [policies] CommitProposals -> DEBU 846 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 847 Returning policy Writers for evaluation +2018-01-14 11:45:32.702 UTC [policies] CommitProposals -> DEBU 848 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 849 Returning policy Admins for evaluation +2018-01-14 11:45:32.702 UTC [policies] CommitProposals -> DEBU 84a In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:32.702 UTC [policies] GetPolicy -> DEBU 84b Returning policy Writers for evaluation +2018-01-14 11:45:32.703 UTC [policies] CommitProposals -> DEBU 84c In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 84d Returning policy Admins for evaluation +2018-01-14 11:45:32.703 UTC [policies] CommitProposals -> DEBU 84e In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 84f Returning policy Readers for evaluation +2018-01-14 11:45:32.703 UTC [policies] CommitProposals -> DEBU 850 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 851 Returning policy Writers for evaluation +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 852 Returning policy Writers for evaluation +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 853 Returning policy Readers for evaluation +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 854 Returning policy Readers for evaluation +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 855 Returning policy Admins for evaluation +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 856 Returning policy Admins for evaluation +2018-01-14 11:45:32.703 UTC [policies] GetPolicy -> DEBU 857 Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 858 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 859 Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 85a In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 85b Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 85c In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 85d Returning policy Readers for evaluation +2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 85e In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 85f Returning policy Writers for evaluation +2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 860 In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:32.704 UTC [policies] GetPolicy -> DEBU 861 Returning policy Admins for evaluation +2018-01-14 11:45:32.704 UTC [policies] CommitProposals -> DEBU 862 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 863 Returning policy BlockValidation for evaluation +2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 864 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 865 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 866 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 867 Returning policy Readers for evaluation +2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 868 In commit adding relative sub-policy Application/Readers to Channel +2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 869 Returning policy Admins for evaluation +2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 86a In commit adding relative sub-policy Application/Admins to Channel +2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 86b Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 86c In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:32.705 UTC [policies] GetPolicy -> DEBU 86d Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:32.705 UTC [policies] CommitProposals -> DEBU 86e In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 86f Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:32.706 UTC [policies] CommitProposals -> DEBU 870 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 871 Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:32.706 UTC [policies] CommitProposals -> DEBU 872 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 873 Returning policy Writers for evaluation +2018-01-14 11:45:32.706 UTC [policies] CommitProposals -> DEBU 874 In commit adding relative sub-policy Application/Writers to Channel +2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 875 Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:32.706 UTC [policies] CommitProposals -> DEBU 876 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 877 Returning policy Admins for evaluation +2018-01-14 11:45:32.706 UTC [policies] GetPolicy -> DEBU 878 Returning policy Admins for evaluation +2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 879 Returning policy Readers for evaluation +2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87a Returning policy Readers for evaluation +2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87b Returning policy Writers for evaluation +2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87c Returning policy Writers for evaluation +2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87d Returning policy Readers for evaluation +2018-01-14 11:45:32.707 UTC [policies] CommitProposals -> DEBU 87e As expected, current configuration has policy '/Channel/Readers' +2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 87f Returning policy Writers for evaluation +2018-01-14 11:45:32.707 UTC [policies] CommitProposals -> DEBU 880 As expected, current configuration has policy '/Channel/Writers' +2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 881 Returning policy Application/Readers for evaluation +2018-01-14 11:45:32.707 UTC [policies] CommitProposals -> DEBU 882 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-14 11:45:32.707 UTC [policies] GetPolicy -> DEBU 883 Returning policy Application/Writers for evaluation +2018-01-14 11:45:32.708 UTC [policies] CommitProposals -> DEBU 884 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-14 11:45:32.708 UTC [policies] GetPolicy -> DEBU 885 Returning policy Application/Admins for evaluation +2018-01-14 11:45:32.708 UTC [policies] CommitProposals -> DEBU 886 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-14 11:45:32.708 UTC [policies] GetPolicy -> DEBU 887 Returning policy Orderer/BlockValidation for evaluation +2018-01-14 11:45:32.708 UTC [policies] CommitProposals -> DEBU 888 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-14 11:45:32.708 UTC [fsblkstorage] newBlockfileMgr -> DEBU 889 newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +2018-01-14 11:45:32.708 UTC [kvledger.util] CreateDirIfMissing -> DEBU 88a CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +2018-01-14 11:45:32.708 UTC [kvledger.util] logDirStatus -> DEBU 88b Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +2018-01-14 11:45:32.709 UTC [kvledger.util] logDirStatus -> DEBU 88c After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +2018-01-14 11:45:32.712 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 88d Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +2018-01-14 11:45:32.712 UTC [fsblkstorage] syncCPInfoFromFS -> DEBU 88e status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +2018-01-14 11:45:32.712 UTC [fsblkstorage] newBlockIndex -> DEBU 88f newBlockIndex() - indexItems:[[BlockNum]] +2018-01-14 11:45:32.713 UTC [fsblkstorage] newBlockfileStream -> DEBU 890 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-14 11:45:32.713 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 891 Finished reading file number [0] +2018-01-14 11:45:32.713 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 892 blockbytes [0] read from file [0] +2018-01-14 11:45:32.714 UTC [fsblkstorage] indexBlock -> DEBU 893 Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0xc4, 0xf6, 0xef, 0x6e, 0xea, 0xc7, 0xd1, 0xa2, 0x1, 0xa, 0x48, 0x37, 0x3d, 0xf9, 0x14, 0x71, 0x13, 0xd2, 0x9, 0x4f, 0x96, 0x3b, 0x2c, 0xc3, 0xaf, 0xef, 0x96, 0xc4, 0x7b, 0xba, 0x6d} txOffsets= txId= locPointer=offset=38, bytesLength=11890 ] -2018-01-04 01:50:57.351 UTC [fsblkstorage] updateCheckpoint -> DEBU 88d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11933], isChainEmpty=[false], lastBlockNumber=[0] -2018-01-04 01:50:57.351 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 88e retrieveBlockByNumber() - blockNum = [0] -2018-01-04 01:50:57.351 UTC [fsblkstorage] newBlockfileStream -> DEBU 88f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-04 01:50:57.351 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 890 Remaining bytes=[11933], Going to peek [8] bytes -2018-01-04 01:50:57.351 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 891 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-04 01:50:57.351 UTC [orderer/multichain] newChainSupport -> DEBU 892 [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): -2018-01-04 01:50:57.352 UTC [orderer/multichain] newChain -> INFO 893 Created and starting new chain businesschannel -2018-01-04 01:50:57.352 UTC [orderer/multichain] addBlockSignature -> DEBU 894 &{ledgerResources:0xc4201528a0 chain:0xc420152cc0 cutter:0xc4201992c0 filters:0xc420152900 signer:0x1274e88 lastConfig:0 lastConfigSeq:0} -2018-01-04 01:50:57.352 UTC [orderer/multichain] addBlockSignature -> DEBU 895 &{} -2018-01-04 01:50:57.352 UTC [msp] GetLocalMSP -> DEBU 896 Returning existing local MSP -2018-01-04 01:50:57.352 UTC [msp] GetDefaultSigningIdentity -> DEBU 897 Obtaining default signing identity -2018-01-04 01:50:57.352 UTC [msp] GetLocalMSP -> DEBU 898 Returning existing local MSP -2018-01-04 01:50:57.352 UTC [msp] GetDefaultSigningIdentity -> DEBU 899 Obtaining default signing identity -2018-01-04 01:50:57.352 UTC [msp/identity] Sign -> DEBU 89a Sign: plaintext: 0AFA050A0A4F7264657265724D535012...145E0DFB038FE7ED8A7F8643C7821D0B -2018-01-04 01:50:57.352 UTC [msp/identity] Sign -> DEBU 89b Sign: digest: DC3F58AEFB5EC1CF80094E8CA4B2FC6BF8712D3E5BEFC16571F01851884A7FCD -2018-01-04 01:50:57.352 UTC [msp] GetLocalMSP -> DEBU 89c Returning existing local MSP -2018-01-04 01:50:57.352 UTC [msp] GetDefaultSigningIdentity -> DEBU 89d Obtaining default signing identity -2018-01-04 01:50:57.352 UTC [orderer/multichain] addLastConfigSignature -> DEBU 89e [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -2018-01-04 01:50:57.352 UTC [msp] GetLocalMSP -> DEBU 89f Returning existing local MSP -2018-01-04 01:50:57.352 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a0 Obtaining default signing identity -2018-01-04 01:50:57.353 UTC [msp/identity] Sign -> DEBU 8a1 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...145E0DFB038FE7ED8A7F8643C7821D0B -2018-01-04 01:50:57.353 UTC [msp/identity] Sign -> DEBU 8a2 Sign: digest: 325730C5868945790F91C3791E285931126A52EA69DAB80022628422C67C0A9F -2018-01-04 01:50:57.354 UTC [fsblkstorage] indexBlock -> DEBU 8a3 Indexing block [blockNum=1, blockHash=[]byte{0xaf, 0x23, 0x62, 0xfd, 0xff, 0xb1, 0xdf, 0xbb, 0x98, 0x4d, 0xd8, 0x9b, 0xf0, 0x5b, 0xcc, 0x86, 0xc9, 0x2c, 0x65, 0x4c, 0x46, 0x9, 0x6, 0x47, 0x5c, 0x37, 0x27, 0x42, 0xdd, 0xd7, 0xb6, 0x64} txOffsets= -txId= locPointer=offset=70, bytesLength=12790 +2018-01-14 11:45:32.715 UTC [fsblkstorage] updateCheckpoint -> DEBU 894 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11933], isChainEmpty=[false], lastBlockNumber=[0] +2018-01-14 11:45:32.715 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 895 retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:45:32.715 UTC [fsblkstorage] newBlockfileStream -> DEBU 896 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-14 11:45:32.715 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 897 Remaining bytes=[11933], Going to peek [8] bytes +2018-01-14 11:45:32.715 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 898 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:45:32.715 UTC [orderer/multichain] newChainSupport -> DEBU 899 [channel: businesschannel] Retrieved metadata for tip of chain (blockNumber=0, lastConfig=0, lastConfigSeq=1): +2018-01-14 11:45:32.715 UTC [orderer/multichain] newChain -> INFO 89a Created and starting new chain businesschannel +2018-01-14 11:45:32.716 UTC [orderer/multichain] addBlockSignature -> DEBU 89b &{ledgerResources:0xc42023a840 chain:0xc42023ac60 cutter:0xc420010b90 filters:0xc42023a8a0 signer:0x1274e88 lastConfig:0 lastConfigSeq:0} +2018-01-14 11:45:32.716 UTC [orderer/multichain] addBlockSignature -> DEBU 89c &{} +2018-01-14 11:45:32.716 UTC [msp] GetLocalMSP -> DEBU 89d Returning existing local MSP +2018-01-14 11:45:32.716 UTC [msp] GetDefaultSigningIdentity -> DEBU 89e Obtaining default signing identity +2018-01-14 11:45:32.716 UTC [msp] GetLocalMSP -> DEBU 89f Returning existing local MSP +2018-01-14 11:45:32.716 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a0 Obtaining default signing identity +2018-01-14 11:45:32.716 UTC [msp/identity] Sign -> DEBU 8a1 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...CCB2FFBEAF756C1FE35264DCC1A9C917 +2018-01-14 11:45:32.716 UTC [msp/identity] Sign -> DEBU 8a2 Sign: digest: B5CC83CA0A7B95C7903F1824B14DFE7DB296E5C065B10571721D83D40167B017 +2018-01-14 11:45:32.716 UTC [msp] GetLocalMSP -> DEBU 8a3 Returning existing local MSP +2018-01-14 11:45:32.717 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a4 Obtaining default signing identity +2018-01-14 11:45:32.717 UTC [orderer/multichain] addLastConfigSignature -> DEBU 8a5 [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +2018-01-14 11:45:32.717 UTC [msp] GetLocalMSP -> DEBU 8a6 Returning existing local MSP +2018-01-14 11:45:32.717 UTC [msp] GetDefaultSigningIdentity -> DEBU 8a7 Obtaining default signing identity +2018-01-14 11:45:32.717 UTC [msp/identity] Sign -> DEBU 8a8 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...CCB2FFBEAF756C1FE35264DCC1A9C917 +2018-01-14 11:45:32.717 UTC [msp/identity] Sign -> DEBU 8a9 Sign: digest: 3B42A1499A259A484AAB24383A840729AA165EFD8AC9513627A1A1502326F193 +2018-01-14 11:45:32.720 UTC [fsblkstorage] indexBlock -> DEBU 8aa Indexing block [blockNum=1, blockHash=[]byte{0x17, 0xa, 0xfa, 0xca, 0x57, 0xb4, 0x56, 0x0, 0xa3, 0xe1, 0x3b, 0xe8, 0x11, 0x6d, 0x2c, 0x97, 0x9e, 0xa7, 0xe6, 0x2, 0x4c, 0x5b, 0x8a, 0xf0, 0x5a, 0xe3, 0xca, 0xba, 0xc1, 0x1d, 0x5b, 0xff} txOffsets= +txId= locPointer=offset=70, bytesLength=12791 ] -2018-01-04 01:50:57.354 UTC [fsblkstorage] updateCheckpoint -> DEBU 8a4 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23688], isChainEmpty=[false], lastBlockNumber=[1] -2018-01-04 01:50:57.354 UTC [orderer/multichain] WriteBlock -> DEBU 8a5 [channel: testchainid] Wrote block 1 -2018-01-04 01:50:57.451 UTC [policies] GetPolicy -> DEBU 8a6 Returning policy Readers for evaluation -2018-01-04 01:50:57.452 UTC [cauthdsl] func1 -> DEBU 8a7 0xc420027680 gate 1515030657451955600 evaluation starts -2018-01-04 01:50:57.452 UTC [cauthdsl] func2 -> DEBU 8a8 0xc420027680 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.452 UTC [cauthdsl] func2 -> DEBU 8a9 0xc420027680 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.453 UTC [msp/identity] newIdentity -> DEBU 8aa Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.720 UTC [fsblkstorage] updateCheckpoint -> DEBU 8ab Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[23688], isChainEmpty=[false], lastBlockNumber=[1] +2018-01-14 11:45:32.721 UTC [orderer/multichain] WriteBlock -> DEBU 8ac [channel: testchainid] Wrote block 1 +2018-01-14 11:45:32.783 UTC [policies] GetPolicy -> DEBU 8ad Returning policy Readers for evaluation +2018-01-14 11:45:32.783 UTC [cauthdsl] func1 -> DEBU 8ae 0xc420150408 gate 1515930332783291764 evaluation starts +2018-01-14 11:45:32.783 UTC [cauthdsl] func2 -> DEBU 8af 0xc420150408 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.783 UTC [cauthdsl] func2 -> DEBU 8b0 0xc420150408 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.785 UTC [msp/identity] newIdentity -> DEBU 8b1 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3827,13 +3847,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.453 UTC [cauthdsl] func2 -> DEBU 8ab 0xc420027680 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -2018-01-04 01:50:57.453 UTC [cauthdsl] func2 -> DEBU 8ac 0xc420027680 principal evaluation fails -2018-01-04 01:50:57.453 UTC [cauthdsl] func1 -> DEBU 8ad 0xc420027680 gate 1515030657451955600 evaluation fails -2018-01-04 01:50:57.453 UTC [cauthdsl] func1 -> DEBU 8ae 0xc420027690 gate 1515030657453814600 evaluation starts -2018-01-04 01:50:57.453 UTC [cauthdsl] func2 -> DEBU 8af 0xc420027690 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:57.453 UTC [cauthdsl] func2 -> DEBU 8b0 0xc420027690 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:57.454 UTC [msp/identity] newIdentity -> DEBU 8b1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.789 UTC [cauthdsl] func2 -> DEBU 8b2 0xc420150408 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +2018-01-14 11:45:32.790 UTC [cauthdsl] func2 -> DEBU 8b3 0xc420150408 principal evaluation fails +2018-01-14 11:45:32.790 UTC [cauthdsl] func1 -> DEBU 8b4 0xc420150408 gate 1515930332783291764 evaluation fails +2018-01-14 11:45:32.790 UTC [cauthdsl] func1 -> DEBU 8b5 0xc420150420 gate 1515930332790392664 evaluation starts +2018-01-14 11:45:32.790 UTC [cauthdsl] func2 -> DEBU 8b6 0xc420150420 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:32.790 UTC [cauthdsl] func2 -> DEBU 8b7 0xc420150420 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:32.791 UTC [msp/identity] newIdentity -> DEBU 8b8 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3847,56 +3867,56 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:57.454 UTC [msp] SatisfiesPrincipal -> DEBU 8b2 Checking if identity satisfies MEMBER role for Org1MSP -2018-01-04 01:50:57.455 UTC [msp] Validate -> DEBU 8b3 MSP Org1MSP validating identity -2018-01-04 01:50:57.455 UTC [cauthdsl] func2 -> DEBU 8b4 0xc420027690 principal matched by identity 0 -2018-01-04 01:50:57.455 UTC [msp/identity] Verify -> DEBU 8b5 Verify: digest = 00000000 c6 fe aa c5 b9 0e 2c 43 2c d7 80 fe 55 3f 85 e0 |......,C,...U?..| -00000010 83 50 2a 82 f9 20 74 0a f1 94 d5 94 f2 98 72 e7 |.P*.. t.......r.| -2018-01-04 01:50:57.455 UTC [msp/identity] Verify -> DEBU 8b6 Verify: sig = 00000000 30 44 02 20 5e d9 94 70 a0 62 ac 3d da 6e a7 58 |0D. ^..p.b.=.n.X| -00000010 ad 5a 56 26 60 b6 ef 99 ff 44 09 d3 95 49 49 eb |.ZV&`....D...II.| -00000020 dc e0 59 fe 02 20 42 a3 3f 24 4e f5 82 c0 e1 40 |..Y.. B.?$N....@| -00000030 57 43 c5 16 5b 21 25 b0 c5 af 78 bc 7e 10 08 07 |WC..[!%...x.~...| -00000040 3e 9f da 55 f4 3b |>..U.;| -2018-01-04 01:50:57.456 UTC [cauthdsl] func2 -> DEBU 8b7 0xc420027690 principal evaluation succeeds for identity 0 -2018-01-04 01:50:57.456 UTC [cauthdsl] func1 -> DEBU 8b8 0xc420027690 gate 1515030657453814600 evaluation succeeds -2018-01-04 01:50:57.456 UTC [orderer/common/sigfilter] Apply -> DEBU 8b9 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a6d3c0 1 [0xc420027420]}) %!s(*policies.implicitMetaPolicy=&{0xc420a6db80 1 [0xc420027560 0xc4200274a0]})]} -2018-01-04 01:50:57.456 UTC [orderer/common/deliver] Handle -> DEBU 8ba [channel: businesschannel] Received seekInfo (0xc420153d80) start: > stop: > -2018-01-04 01:50:57.457 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8bb retrieveBlockByNumber() - blockNum = [0] -2018-01-04 01:50:57.457 UTC [fsblkstorage] newBlockfileStream -> DEBU 8bc newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-04 01:50:57.458 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8bd Remaining bytes=[11933], Going to peek [8] bytes -2018-01-04 01:50:57.458 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8be Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-04 01:50:57.458 UTC [orderer/common/deliver] Handle -> DEBU 8bf [channel: businesschannel] Delivering block for (0xc420153d80) -2018-01-04 01:50:57.460 UTC [orderer/common/deliver] Handle -> DEBU 8c0 [channel: businesschannel] Done delivering for (0xc420153d80), waiting for new SeekInfo -2018-01-04 01:50:57.460 UTC [orderer/common/deliver] Handle -> DEBU 8c1 Attempting to read seek info message -2018-01-04 01:50:57.461 UTC [orderer/common/deliver] Handle -> WARN 8c2 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:50:57.461 UTC [orderer/main] func1 -> DEBU 8c3 Closing Deliver stream -2018-01-04 01:50:58.481 UTC [orderer/main] Deliver -> DEBU 8c4 Starting new Deliver handler -2018-01-04 01:50:58.481 UTC [orderer/common/deliver] Handle -> DEBU 8c5 Starting new deliver loop -2018-01-04 01:50:58.481 UTC [orderer/common/deliver] Handle -> DEBU 8c6 Attempting to read seek info message -2018-01-04 01:50:58.494 UTC [orderer/main] Broadcast -> DEBU 8c7 Starting new Broadcast handler -2018-01-04 01:50:58.494 UTC [orderer/common/broadcast] Handle -> DEBU 8c8 Starting new broadcast loop -2018-01-04 01:50:58.494 UTC [orderer/common/broadcast] Handle -> DEBU 8c9 Preprocessing CONFIG_UPDATE -2018-01-04 01:50:58.494 UTC [orderer/configupdate] Process -> DEBU 8ca Processing channel reconfiguration request for channel businesschannel -2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8cb Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8cc Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8cd Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8ce Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8cf Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.495 UTC [common/configtx] addToMap -> DEBU 8d0 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d1 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d2 Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d3 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d4 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.496 UTC [common/configtx] addToMap -> DEBU 8d5 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-04 01:50:58.497 UTC [common/configtx] addToMap -> DEBU 8d6 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.497 UTC [common/configtx] addToMap -> DEBU 8d7 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.497 UTC [common/configtx] addToMap -> DEBU 8d8 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.497 UTC [common/configtx] addToMap -> DEBU 8d9 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.497 UTC [policies] GetPolicy -> DEBU 8da Returning policy Admins for evaluation -2018-01-04 01:50:58.497 UTC [cauthdsl] func1 -> DEBU 8db 0xc42010e710 gate 1515030658497619000 evaluation starts -2018-01-04 01:50:58.497 UTC [cauthdsl] func2 -> DEBU 8dc 0xc42010e710 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:58.497 UTC [cauthdsl] func2 -> DEBU 8dd 0xc42010e710 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:58.498 UTC [msp/identity] newIdentity -> DEBU 8de Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:32.791 UTC [msp] SatisfiesPrincipal -> DEBU 8b9 Checking if identity satisfies MEMBER role for Org1MSP +2018-01-14 11:45:32.791 UTC [msp] Validate -> DEBU 8ba MSP Org1MSP validating identity +2018-01-14 11:45:32.791 UTC [cauthdsl] func2 -> DEBU 8bb 0xc420150420 principal matched by identity 0 +2018-01-14 11:45:32.792 UTC [msp/identity] Verify -> DEBU 8bc Verify: digest = 00000000 09 58 47 2b 22 7a 9d ee 1a ca 00 e9 d2 b2 5d f2 |.XG+"z........].| +00000010 d1 c6 37 a4 a2 0c 0e d5 58 01 43 3b 6d df bb 94 |..7.....X.C;m...| +2018-01-14 11:45:32.792 UTC [msp/identity] Verify -> DEBU 8bd Verify: sig = 00000000 30 44 02 20 34 59 b1 57 b9 7b 74 62 96 17 62 5e |0D. 4Y.W.{tb..b^| +00000010 86 00 be 31 18 9e 8d 0c f0 da 6f b6 1a 8e 30 c8 |...1......o...0.| +00000020 f7 33 a2 a7 02 20 1c f9 d7 9c 62 82 40 0d 1c 6a |.3... ....b.@..j| +00000030 9d 6f 30 36 c6 29 8c c6 d0 4a 7e 9f 2e 86 fb 42 |.o06.)...J~....B| +00000040 10 f4 86 fc 7d cb |....}.| +2018-01-14 11:45:32.792 UTC [cauthdsl] func2 -> DEBU 8be 0xc420150420 principal evaluation succeeds for identity 0 +2018-01-14 11:45:32.792 UTC [cauthdsl] func1 -> DEBU 8bf 0xc420150420 gate 1515930332790392664 evaluation succeeds +2018-01-14 11:45:32.792 UTC [orderer/common/sigfilter] Apply -> DEBU 8c0 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420281d40 1 [0xc420151708]}) %!s(*policies.implicitMetaPolicy=&{0xc42081c4c0 1 [0xc4201517b0 0xc420151898]})]} +2018-01-14 11:45:32.793 UTC [orderer/common/deliver] Handle -> DEBU 8c1 [channel: businesschannel] Received seekInfo (0xc4208ddfa0) start: > stop: > +2018-01-14 11:45:32.793 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 8c2 retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:45:32.793 UTC [fsblkstorage] newBlockfileStream -> DEBU 8c3 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-14 11:45:32.793 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8c4 Remaining bytes=[11933], Going to peek [8] bytes +2018-01-14 11:45:32.793 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 8c5 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:45:32.794 UTC [orderer/common/deliver] Handle -> DEBU 8c6 [channel: businesschannel] Delivering block for (0xc4208ddfa0) +2018-01-14 11:45:32.794 UTC [orderer/common/deliver] Handle -> DEBU 8c7 [channel: businesschannel] Done delivering for (0xc4208ddfa0), waiting for new SeekInfo +2018-01-14 11:45:32.794 UTC [orderer/common/deliver] Handle -> DEBU 8c8 Attempting to read seek info message +2018-01-14 11:45:32.795 UTC [orderer/common/deliver] Handle -> WARN 8c9 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:45:32.795 UTC [orderer/main] func1 -> DEBU 8ca Closing Deliver stream +2018-01-14 11:45:34.097 UTC [orderer/main] Deliver -> DEBU 8cb Starting new Deliver handler +2018-01-14 11:45:34.097 UTC [orderer/common/deliver] Handle -> DEBU 8cc Starting new deliver loop +2018-01-14 11:45:34.098 UTC [orderer/common/deliver] Handle -> DEBU 8cd Attempting to read seek info message +2018-01-14 11:45:34.115 UTC [orderer/main] Broadcast -> DEBU 8ce Starting new Broadcast handler +2018-01-14 11:45:34.115 UTC [orderer/common/broadcast] Handle -> DEBU 8cf Starting new broadcast loop +2018-01-14 11:45:34.115 UTC [orderer/common/broadcast] Handle -> DEBU 8d0 Preprocessing CONFIG_UPDATE +2018-01-14 11:45:34.115 UTC [orderer/configupdate] Process -> DEBU 8d1 Processing channel reconfiguration request for channel businesschannel +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d2 Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d3 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d4 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d5 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d6 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d7 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d8 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8d9 Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8da Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.116 UTC [common/configtx] addToMap -> DEBU 8db Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8dc Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8dd Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8de Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8df Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.117 UTC [common/configtx] addToMap -> DEBU 8e0 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.117 UTC [policies] GetPolicy -> DEBU 8e1 Returning policy Admins for evaluation +2018-01-14 11:45:34.117 UTC [cauthdsl] func1 -> DEBU 8e2 0xc420026298 gate 1515930334117816964 evaluation starts +2018-01-14 11:45:34.117 UTC [cauthdsl] func2 -> DEBU 8e3 0xc420026298 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:34.117 UTC [cauthdsl] func2 -> DEBU 8e4 0xc420026298 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:34.118 UTC [msp/identity] newIdentity -> DEBU 8e5 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3910,135 +3930,131 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.498 UTC [msp] SatisfiesPrincipal -> DEBU 8df Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:58.498 UTC [cauthdsl] func2 -> DEBU 8e0 0xc42010e710 principal matched by identity 0 -2018-01-04 01:50:58.498 UTC [msp/identity] Verify -> DEBU 8e1 Verify: digest = 00000000 81 df 61 35 fa ff e7 18 82 38 33 4a db 00 28 a6 |..a5.....83J..(.| -00000010 60 1b 23 f0 41 df ba 4c 59 1b 98 cb 00 53 2a 5c |`.#.A..LY....S*\| -2018-01-04 01:50:58.498 UTC [msp/identity] Verify -> DEBU 8e2 Verify: sig = 00000000 30 45 02 21 00 9a 5c 7e 83 cb 71 73 ee 9d c4 eb |0E.!..\~..qs....| -00000010 fc 9f 9d 1b ea 3b c8 6f f9 f1 ef c3 19 01 93 d3 |.....;.o........| -00000020 9a c3 b0 19 57 02 20 25 ce 5d 43 30 69 13 f7 3d |....W. %.]C0i..=| -00000030 ad bf 32 f0 61 da 4f 7b 36 6f 92 19 eb d8 85 44 |..2.a.O{6o.....D| -00000040 69 1c 61 35 bb e2 7c |i.a5..|| -2018-01-04 01:50:58.499 UTC [cauthdsl] func2 -> DEBU 8e3 0xc42010e710 principal evaluation succeeds for identity 0 -2018-01-04 01:50:58.499 UTC [cauthdsl] func1 -> DEBU 8e4 0xc42010e710 gate 1515030658497619000 evaluation succeeds -2018-01-04 01:50:58.499 UTC [common/configtx] recurseConfigMap -> DEBU 8e5 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.499 UTC [common/configtx] recurseConfigMap -> DEBU 8e6 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.499 UTC [common/configtx] recurseConfigMap -> DEBU 8e7 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8e8 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8e9 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ea Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8eb Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ec Setting policy for key Readers to -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ed Setting policy for key Writers to -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ee Setting policy for key Admins to -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8ef Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f0 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f1 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f2 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f3 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.500 UTC [common/configtx] recurseConfigMap -> DEBU 8f4 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.501 UTC [common/configtx] recurseConfigMap -> DEBU 8f5 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.501 UTC [common/configtx] recurseConfigMap -> DEBU 8f6 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.501 UTC [common/configtx] recurseConfigMap -> DEBU 8f7 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.501 UTC [common/configtx] processConfig -> DEBU 8f8 Beginning new config for channel businesschannel -2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 8f9 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 8fa Processing field: HashingAlgorithm -2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 8fb Processing field: BlockDataHashingStructure -2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 8fc Processing field: OrdererAddresses -2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 8fd Processing field: Consortium -2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 8fe Proposed new policy Writers for Channel -2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 8ff Proposed new policy Admins for Channel -2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 900 Proposed new policy Readers for Channel -2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 901 Initializing protos for *struct {} -2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 902 Proposed new policy Writers for Application -2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 903 Proposed new policy Readers for Application -2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 904 Proposed new policy Admins for Application -2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 905 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 906 Processing field: MSP -2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 907 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 908 Processing field: AnchorPeers -2018-01-04 01:50:58.501 UTC [common/config] NewStandardValues -> DEBU 909 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.501 UTC [common/config] initializeProtosStruct -> DEBU 90a Processing field: MSP -2018-01-04 01:50:58.501 UTC [policies] ProposePolicy -> DEBU 90b Proposed new policy Readers for Org1MSP -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 90c Proposed new policy Writers for Org1MSP -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 90d Proposed new policy Admins for Org1MSP -2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 90e Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 90f Processing field: MSP -2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 910 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 911 Processing field: AnchorPeers -2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 912 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 913 Processing field: MSP -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 914 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 915 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 916 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 917 Initializing protos for *config.OrdererProtos -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 918 Processing field: ConsensusType -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 919 Processing field: BatchSize -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 91a Processing field: BatchTimeout -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 91b Processing field: KafkaBrokers -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 91c Processing field: ChannelRestrictions -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 91d Proposed new policy Admins for Orderer -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 91e Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 91f Proposed new policy Readers for Orderer -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 920 Proposed new policy Writers for Orderer -2018-01-04 01:50:58.502 UTC [common/config] NewStandardValues -> DEBU 921 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.502 UTC [common/config] initializeProtosStruct -> DEBU 922 Processing field: MSP -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 923 Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 924 Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:58.502 UTC [policies] ProposePolicy -> DEBU 925 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:58.502 UTC [common/config] Validate -> DEBU 926 Anchor peers for org Org1MSP are anchor_peers: -2018-01-04 01:50:58.502 UTC [common/config] validateMSP -> DEBU 927 Setting up MSP for org Org1MSP -2018-01-04 01:50:58.503 UTC [msp] NewBccspMsp -> DEBU 928 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.503 UTC [msp] Setup -> DEBU 929 Setting up MSP instance Org1MSP -2018-01-04 01:50:58.503 UTC [msp/identity] newIdentity -> DEBU 92a Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +2018-01-14 11:45:34.118 UTC [msp] SatisfiesPrincipal -> DEBU 8e6 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:34.118 UTC [cauthdsl] func2 -> DEBU 8e7 0xc420026298 principal matched by identity 0 +2018-01-14 11:45:34.118 UTC [msp/identity] Verify -> DEBU 8e8 Verify: digest = 00000000 82 fb fd 83 69 c5 26 65 8c 81 84 d4 ec fa 4b f6 |....i.&e......K.| +00000010 62 bc 1e e7 8c 40 40 34 9a a2 38 fe 25 1c e9 18 |b....@@4..8.%...| +2018-01-14 11:45:34.118 UTC [msp/identity] Verify -> DEBU 8e9 Verify: sig = 00000000 30 44 02 20 07 5e 0c d0 f8 af 0d f4 c4 a7 15 b4 |0D. .^..........| +00000010 7e ac 2c 65 12 59 f4 52 7e 9b ac 57 e5 62 42 f8 |~.,e.Y.R~..W.bB.| +00000020 17 16 b6 5b 02 20 4d 1b d2 3f 25 17 87 25 65 5e |...[. M..?%..%e^| +00000030 c0 b4 50 38 12 e9 bd 30 be 19 88 21 85 bd 91 55 |..P8...0...!...U| +00000040 ff 48 68 db 65 fb |.Hh.e.| +2018-01-14 11:45:34.119 UTC [cauthdsl] func2 -> DEBU 8ea 0xc420026298 principal evaluation succeeds for identity 0 +2018-01-14 11:45:34.119 UTC [cauthdsl] func1 -> DEBU 8eb 0xc420026298 gate 1515930334117816964 evaluation succeeds +2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8ec Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8ed Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8ee Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8ef Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8f0 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8f1 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.119 UTC [common/configtx] recurseConfigMap -> DEBU 8f2 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f3 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f4 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f5 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f6 Setting policy for key Readers to +2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f7 Setting policy for key Writers to +2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f8 Setting policy for key Admins to +2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8f9 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.120 UTC [common/configtx] recurseConfigMap -> DEBU 8fa Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.121 UTC [common/configtx] recurseConfigMap -> DEBU 8fb Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.121 UTC [common/configtx] recurseConfigMap -> DEBU 8fc Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.121 UTC [common/configtx] recurseConfigMap -> DEBU 8fd Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.121 UTC [common/configtx] recurseConfigMap -> DEBU 8fe Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.121 UTC [common/configtx] processConfig -> DEBU 8ff Beginning new config for channel businesschannel +2018-01-14 11:45:34.121 UTC [common/config] NewStandardValues -> DEBU 900 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:34.121 UTC [common/config] initializeProtosStruct -> DEBU 901 Processing field: HashingAlgorithm +2018-01-14 11:45:34.121 UTC [common/config] initializeProtosStruct -> DEBU 902 Processing field: BlockDataHashingStructure +2018-01-14 11:45:34.121 UTC [common/config] initializeProtosStruct -> DEBU 903 Processing field: OrdererAddresses +2018-01-14 11:45:34.121 UTC [common/config] initializeProtosStruct -> DEBU 904 Processing field: Consortium +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 905 Proposed new policy Writers for Channel +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 906 Proposed new policy Admins for Channel +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 907 Proposed new policy Readers for Channel +2018-01-14 11:45:34.122 UTC [common/config] NewStandardValues -> DEBU 908 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 909 Processing field: ConsensusType +2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 90a Processing field: BatchSize +2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 90b Processing field: BatchTimeout +2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 90c Processing field: KafkaBrokers +2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 90d Processing field: ChannelRestrictions +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 90e Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 90f Proposed new policy Readers for Orderer +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 910 Proposed new policy Writers for Orderer +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 911 Proposed new policy Admins for Orderer +2018-01-14 11:45:34.122 UTC [common/config] NewStandardValues -> DEBU 912 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.122 UTC [common/config] initializeProtosStruct -> DEBU 913 Processing field: MSP +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 914 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 915 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:34.122 UTC [policies] ProposePolicy -> DEBU 916 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:34.123 UTC [common/config] NewStandardValues -> DEBU 917 Initializing protos for *struct {} +2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 918 Proposed new policy Admins for Application +2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 919 Proposed new policy Writers for Application +2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 91a Proposed new policy Readers for Application +2018-01-14 11:45:34.123 UTC [common/config] NewStandardValues -> DEBU 91b Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.123 UTC [common/config] initializeProtosStruct -> DEBU 91c Processing field: MSP +2018-01-14 11:45:34.123 UTC [common/config] NewStandardValues -> DEBU 91d Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:34.123 UTC [common/config] initializeProtosStruct -> DEBU 91e Processing field: AnchorPeers +2018-01-14 11:45:34.123 UTC [common/config] NewStandardValues -> DEBU 91f Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.123 UTC [common/config] initializeProtosStruct -> DEBU 920 Processing field: MSP +2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 921 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 922 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:34.123 UTC [policies] ProposePolicy -> DEBU 923 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:34.124 UTC [common/config] NewStandardValues -> DEBU 924 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.124 UTC [common/config] initializeProtosStruct -> DEBU 925 Processing field: MSP +2018-01-14 11:45:34.124 UTC [common/config] NewStandardValues -> DEBU 926 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:34.124 UTC [common/config] initializeProtosStruct -> DEBU 927 Processing field: AnchorPeers +2018-01-14 11:45:34.124 UTC [common/config] NewStandardValues -> DEBU 928 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.124 UTC [common/config] initializeProtosStruct -> DEBU 929 Processing field: MSP +2018-01-14 11:45:34.124 UTC [policies] ProposePolicy -> DEBU 92a Proposed new policy Readers for Org1MSP +2018-01-14 11:45:34.124 UTC [policies] ProposePolicy -> DEBU 92b Proposed new policy Writers for Org1MSP +2018-01-14 11:45:34.124 UTC [policies] ProposePolicy -> DEBU 92c Proposed new policy Admins for Org1MSP +2018-01-14 11:45:34.124 UTC [common/config] validateMSP -> DEBU 92d Setting up MSP for org OrdererOrg +2018-01-14 11:45:34.124 UTC [msp] NewBccspMsp -> DEBU 92e Creating BCCSP-based MSP instance +2018-01-14 11:45:34.124 UTC [msp] Setup -> DEBU 92f Setting up MSP instance OrdererMSP +2018-01-14 11:45:34.125 UTC [msp/identity] newIdentity -> DEBU 930 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:58.503 UTC [msp/identity] newIdentity -> DEBU 92b Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= +2018-01-14 11:45:34.125 UTC [msp/identity] newIdentity -> DEBU 931 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:58.503 UTC [msp/identity] newIdentity -> DEBU 92c Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= +2018-01-14 11:45:34.126 UTC [msp/identity] newIdentity -> DEBU 932 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:58.504 UTC [msp] Validate -> DEBU 92d MSP Org1MSP validating identity -2018-01-04 01:50:58.504 UTC [common/config] Validate -> DEBU 92e Anchor peers for org Org2MSP are -2018-01-04 01:50:58.504 UTC [common/config] validateMSP -> DEBU 92f Setting up MSP for org Org2MSP -2018-01-04 01:50:58.504 UTC [msp] NewBccspMsp -> DEBU 930 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.504 UTC [msp] Setup -> DEBU 931 Setting up MSP instance Org2MSP -2018-01-04 01:50:58.504 UTC [msp/identity] newIdentity -> DEBU 932 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.127 UTC [msp] Validate -> DEBU 933 MSP OrdererMSP validating identity +2018-01-14 11:45:34.128 UTC [common/config] Validate -> DEBU 934 Anchor peers for org Org2MSP are +2018-01-14 11:45:34.128 UTC [common/config] validateMSP -> DEBU 935 Setting up MSP for org Org2MSP +2018-01-14 11:45:34.128 UTC [msp] NewBccspMsp -> DEBU 936 Creating BCCSP-based MSP instance +2018-01-14 11:45:34.128 UTC [msp] Setup -> DEBU 937 Setting up MSP instance Org2MSP +2018-01-14 11:45:34.134 UTC [msp/identity] newIdentity -> DEBU 938 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4053,7 +4069,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:58.504 UTC [msp/identity] newIdentity -> DEBU 933 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.135 UTC [msp/identity] newIdentity -> DEBU 939 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4067,7 +4083,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:58.505 UTC [msp/identity] newIdentity -> DEBU 934 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.138 UTC [msp/identity] newIdentity -> DEBU 93a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4081,65 +4097,69 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:58.505 UTC [msp] Validate -> DEBU 935 MSP Org2MSP validating identity -2018-01-04 01:50:58.505 UTC [common/config] validateMSP -> DEBU 936 Setting up MSP for org OrdererOrg -2018-01-04 01:50:58.506 UTC [msp] NewBccspMsp -> DEBU 937 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.506 UTC [msp] Setup -> DEBU 938 Setting up MSP instance OrdererMSP -2018-01-04 01:50:58.506 UTC [msp/identity] newIdentity -> DEBU 939 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +2018-01-14 11:45:34.139 UTC [msp] Validate -> DEBU 93b MSP Org2MSP validating identity +2018-01-14 11:45:34.139 UTC [common/config] Validate -> DEBU 93c Anchor peers for org Org1MSP are anchor_peers: +2018-01-14 11:45:34.139 UTC [common/config] validateMSP -> DEBU 93d Setting up MSP for org Org1MSP +2018-01-14 11:45:34.139 UTC [msp] NewBccspMsp -> DEBU 93e Creating BCCSP-based MSP instance +2018-01-14 11:45:34.139 UTC [msp] Setup -> DEBU 93f Setting up MSP instance Org1MSP +2018-01-14 11:45:34.140 UTC [msp/identity] newIdentity -> DEBU 940 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:58.506 UTC [msp/identity] newIdentity -> DEBU 93a Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +2018-01-14 11:45:34.140 UTC [msp/identity] newIdentity -> DEBU 941 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.506 UTC [msp/identity] newIdentity -> DEBU 93b Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +2018-01-14 11:45:34.141 UTC [msp/identity] newIdentity -> DEBU 942 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.507 UTC [msp] Validate -> DEBU 93c MSP OrdererMSP validating identity -2018-01-04 01:50:58.507 UTC [msp] Setup -> DEBU 93d Setting up the MSP manager (3 msps) -2018-01-04 01:50:58.507 UTC [msp] Setup -> DEBU 93e MSP manager setup complete, setup 3 msps -2018-01-04 01:50:58.507 UTC [msp] GetLocalMSP -> DEBU 93f Returning existing local MSP -2018-01-04 01:50:58.507 UTC [msp] GetDefaultSigningIdentity -> DEBU 940 Obtaining default signing identity -2018-01-04 01:50:58.507 UTC [msp] GetLocalMSP -> DEBU 941 Returning existing local MSP -2018-01-04 01:50:58.507 UTC [msp] GetDefaultSigningIdentity -> DEBU 942 Obtaining default signing identity -2018-01-04 01:50:58.507 UTC [msp/identity] Sign -> DEBU 943 Sign: plaintext: 0AB7060A1B08011A06088291B6D20522...507791B70F73D1AC4D615F0EB303F189 -2018-01-04 01:50:58.507 UTC [msp/identity] Sign -> DEBU 944 Sign: digest: 6100EB76DAB7F5DF0A43437C87BE06801BF63F78617623BE41FADEA312A38D4C -2018-01-04 01:50:58.507 UTC [orderer/common/broadcast] Handle -> DEBU 945 [channel: businesschannel] Broadcast is filtering message of type CONFIG -2018-01-04 01:50:58.508 UTC [policies] GetPolicy -> DEBU 946 Returning policy Writers for evaluation -2018-01-04 01:50:58.508 UTC [cauthdsl] func1 -> DEBU 947 0xc42010ead8 gate 1515030658508053200 evaluation starts -2018-01-04 01:50:58.508 UTC [cauthdsl] func2 -> DEBU 948 0xc42010ead8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:58.508 UTC [cauthdsl] func2 -> DEBU 949 0xc42010ead8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:58.508 UTC [msp/identity] newIdentity -> DEBU 94a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.142 UTC [msp] Validate -> DEBU 943 MSP Org1MSP validating identity +2018-01-14 11:45:34.143 UTC [msp] Setup -> DEBU 944 Setting up the MSP manager (3 msps) +2018-01-14 11:45:34.143 UTC [msp] Setup -> DEBU 945 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:34.143 UTC [msp] GetLocalMSP -> DEBU 946 Returning existing local MSP +2018-01-14 11:45:34.143 UTC [msp] GetDefaultSigningIdentity -> DEBU 947 Obtaining default signing identity +2018-01-14 11:45:34.144 UTC [msp] GetLocalMSP -> DEBU 948 Returning existing local MSP +2018-01-14 11:45:34.144 UTC [msp] GetDefaultSigningIdentity -> DEBU 949 Obtaining default signing identity +2018-01-14 11:45:34.144 UTC [msp/identity] Sign -> DEBU 94a Sign: plaintext: 0AB7060A1B08011A0608DE85EDD20522...093D4D230796B352804925AFF5337E05 +2018-01-14 11:45:34.144 UTC [msp/identity] Sign -> DEBU 94b Sign: digest: F1B25808885E3AB4314C117D549DE111496F0FD071A36867C62BF76D625BABE7 +2018-01-14 11:45:34.144 UTC [orderer/common/broadcast] Handle -> DEBU 94c [channel: businesschannel] Broadcast is filtering message of type CONFIG +2018-01-14 11:45:34.144 UTC [policies] GetPolicy -> DEBU 94d Returning policy Writers for evaluation +2018-01-14 11:45:34.145 UTC [cauthdsl] func1 -> DEBU 94e 0xc420026660 gate 1515930334145019964 evaluation starts +2018-01-14 11:45:34.145 UTC [cauthdsl] func2 -> DEBU 94f 0xc420026660 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:34.145 UTC [cauthdsl] func2 -> DEBU 950 0xc420026660 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:34.145 UTC [msp/identity] newIdentity -> DEBU 951 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4152,39 +4172,39 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-04 01:50:58.508 UTC [msp] SatisfiesPrincipal -> DEBU 94b Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-04 01:50:58.508 UTC [msp] Validate -> DEBU 94c MSP OrdererMSP validating identity -2018-01-04 01:50:58.508 UTC [cauthdsl] func2 -> DEBU 94d 0xc42010ead8 principal matched by identity 0 -2018-01-04 01:50:58.508 UTC [msp/identity] Verify -> DEBU 94e Verify: digest = 00000000 61 00 eb 76 da b7 f5 df 0a 43 43 7c 87 be 06 80 |a..v.....CC|....| -00000010 1b f6 3f 78 61 76 23 be 41 fa de a3 12 a3 8d 4c |..?xav#.A......L| -2018-01-04 01:50:58.508 UTC [msp/identity] Verify -> DEBU 94f Verify: sig = 00000000 30 44 02 20 57 eb a6 90 4f 87 ac b1 4a a3 5d e3 |0D. W...O...J.].| -00000010 48 cf be 73 b9 5f 5b 10 77 5f 3d b4 90 18 e2 f4 |H..s._[.w_=.....| -00000020 3e 35 35 56 02 20 15 53 cb 9f 52 03 92 cd 9f 8c |>55V. .S..R.....| -00000030 2b 6f 65 17 8f 7a ff 09 e6 d2 7a a1 40 c3 26 eb |+oe..z....z.@.&.| -00000040 76 f3 a7 a6 7d 40 |v...}@| -2018-01-04 01:50:58.508 UTC [cauthdsl] func2 -> DEBU 950 0xc42010ead8 principal evaluation succeeds for identity 0 -2018-01-04 01:50:58.509 UTC [cauthdsl] func1 -> DEBU 951 0xc42010ead8 gate 1515030658508053200 evaluation succeeds -2018-01-04 01:50:58.509 UTC [orderer/common/sigfilter] Apply -> DEBU 952 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a6d440 1 [0xc4200273d0]}) %!s(*policies.implicitMetaPolicy=&{0xc420a6db00 1 [0xc4200274c8 0xc420027510]})]} -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 953 Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 954 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 955 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 956 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 957 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 958 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 959 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95a Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95b Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95c Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95d Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95e Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 95f Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 960 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.509 UTC [common/configtx] addToMap -> DEBU 961 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.509 UTC [policies] GetPolicy -> DEBU 962 Returning policy Admins for evaluation -2018-01-04 01:50:58.509 UTC [cauthdsl] func1 -> DEBU 963 0xc42010f090 gate 1515030658509958300 evaluation starts -2018-01-04 01:50:58.509 UTC [cauthdsl] func2 -> DEBU 964 0xc42010f090 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:58.510 UTC [cauthdsl] func2 -> DEBU 965 0xc42010f090 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:58.510 UTC [msp/identity] newIdentity -> DEBU 966 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.145 UTC [msp] SatisfiesPrincipal -> DEBU 952 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:45:34.145 UTC [msp] Validate -> DEBU 953 MSP OrdererMSP validating identity +2018-01-14 11:45:34.146 UTC [cauthdsl] func2 -> DEBU 954 0xc420026660 principal matched by identity 0 +2018-01-14 11:45:34.146 UTC [msp/identity] Verify -> DEBU 955 Verify: digest = 00000000 f1 b2 58 08 88 5e 3a b4 31 4c 11 7d 54 9d e1 11 |..X..^:.1L.}T...| +00000010 49 6f 0f d0 71 a3 68 67 c6 2b f7 6d 62 5b ab e7 |Io..q.hg.+.mb[..| +2018-01-14 11:45:34.146 UTC [msp/identity] Verify -> DEBU 956 Verify: sig = 00000000 30 44 02 20 1a 51 8b 92 3d 61 41 ac af 04 cd 3c |0D. .Q..=aA....<| +00000010 3a 08 c2 ec 5c 03 5c d7 0f c7 60 12 44 58 bc a0 |:...\.\...`.DX..| +00000020 6f 1f fb cc 02 20 42 41 50 ed b9 5e 36 44 2b 74 |o.... BAP..^6D+t| +00000030 d3 4f 56 c4 c1 20 aa 0a 85 af 9e 66 fb cf 10 d9 |.OV.. .....f....| +00000040 8c 97 95 0c 66 a7 |....f.| +2018-01-14 11:45:34.146 UTC [cauthdsl] func2 -> DEBU 957 0xc420026660 principal evaluation succeeds for identity 0 +2018-01-14 11:45:34.146 UTC [cauthdsl] func1 -> DEBU 958 0xc420026660 gate 1515930334145019964 evaluation succeeds +2018-01-14 11:45:34.146 UTC [orderer/common/sigfilter] Apply -> DEBU 959 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420281dc0 1 [0xc420151730]}) %!s(*policies.implicitMetaPolicy=&{0xc42081c440 1 [0xc4201517d8 0xc420151848]})]} +2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95a Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95b Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95c Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95d Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.146 UTC [common/configtx] addToMap -> DEBU 95e Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 95f Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 960 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 961 Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 962 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 963 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 964 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-14 11:45:34.147 UTC [common/configtx] addToMap -> DEBU 965 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.148 UTC [common/configtx] addToMap -> DEBU 966 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.148 UTC [common/configtx] addToMap -> DEBU 967 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.148 UTC [common/configtx] addToMap -> DEBU 968 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.148 UTC [policies] GetPolicy -> DEBU 969 Returning policy Admins for evaluation +2018-01-14 11:45:34.148 UTC [cauthdsl] func1 -> DEBU 96a 0xc420026c18 gate 1515930334148609764 evaluation starts +2018-01-14 11:45:34.148 UTC [cauthdsl] func2 -> DEBU 96b 0xc420026c18 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:34.148 UTC [cauthdsl] func2 -> DEBU 96c 0xc420026c18 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:34.149 UTC [msp/identity] newIdentity -> DEBU 96d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4198,87 +4218,131 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.510 UTC [msp] SatisfiesPrincipal -> DEBU 967 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:58.510 UTC [cauthdsl] func2 -> DEBU 968 0xc42010f090 principal matched by identity 0 -2018-01-04 01:50:58.510 UTC [msp/identity] Verify -> DEBU 969 Verify: digest = 00000000 81 df 61 35 fa ff e7 18 82 38 33 4a db 00 28 a6 |..a5.....83J..(.| -00000010 60 1b 23 f0 41 df ba 4c 59 1b 98 cb 00 53 2a 5c |`.#.A..LY....S*\| -2018-01-04 01:50:58.510 UTC [msp/identity] Verify -> DEBU 96a Verify: sig = 00000000 30 45 02 21 00 9a 5c 7e 83 cb 71 73 ee 9d c4 eb |0E.!..\~..qs....| -00000010 fc 9f 9d 1b ea 3b c8 6f f9 f1 ef c3 19 01 93 d3 |.....;.o........| -00000020 9a c3 b0 19 57 02 20 25 ce 5d 43 30 69 13 f7 3d |....W. %.]C0i..=| -00000030 ad bf 32 f0 61 da 4f 7b 36 6f 92 19 eb d8 85 44 |..2.a.O{6o.....D| -00000040 69 1c 61 35 bb e2 7c |i.a5..|| -2018-01-04 01:50:58.510 UTC [cauthdsl] func2 -> DEBU 96b 0xc42010f090 principal evaluation succeeds for identity 0 -2018-01-04 01:50:58.510 UTC [cauthdsl] func1 -> DEBU 96c 0xc42010f090 gate 1515030658509958300 evaluation succeeds -2018-01-04 01:50:58.510 UTC [common/configtx] recurseConfigMap -> DEBU 96d Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.510 UTC [common/configtx] recurseConfigMap -> DEBU 96e Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.510 UTC [common/configtx] recurseConfigMap -> DEBU 96f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.510 UTC [common/configtx] recurseConfigMap -> DEBU 970 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 971 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 972 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 973 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 974 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 975 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 976 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 977 Setting policy for key Readers to -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 978 Setting policy for key Writers to -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 979 Setting policy for key Admins to -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97a Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97c Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97d Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97e Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] recurseConfigMap -> DEBU 97f Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.511 UTC [common/configtx] processConfig -> DEBU 980 Beginning new config for channel businesschannel -2018-01-04 01:50:58.511 UTC [common/config] NewStandardValues -> DEBU 981 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:58.511 UTC [common/config] initializeProtosStruct -> DEBU 982 Processing field: HashingAlgorithm -2018-01-04 01:50:58.511 UTC [common/config] initializeProtosStruct -> DEBU 983 Processing field: BlockDataHashingStructure -2018-01-04 01:50:58.511 UTC [common/config] initializeProtosStruct -> DEBU 984 Processing field: OrdererAddresses -2018-01-04 01:50:58.511 UTC [common/config] initializeProtosStruct -> DEBU 985 Processing field: Consortium -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 986 Proposed new policy Readers for Channel -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 987 Proposed new policy Writers for Channel -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 988 Proposed new policy Admins for Channel -2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 989 Initializing protos for *struct {} -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 98a Proposed new policy Readers for Application -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 98b Proposed new policy Admins for Application -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 98c Proposed new policy Writers for Application -2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 98d Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 98e Processing field: MSP -2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 98f Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 990 Processing field: AnchorPeers -2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 991 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 992 Processing field: MSP -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 993 Proposed new policy Readers for Org1MSP -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 994 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 995 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 996 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 997 Processing field: MSP -2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 998 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 999 Processing field: AnchorPeers -2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 99a Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 99b Processing field: MSP -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 99c Proposed new policy Admins for Org2MSP -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 99d Proposed new policy Readers for Org2MSP -2018-01-04 01:50:58.512 UTC [policies] ProposePolicy -> DEBU 99e Proposed new policy Writers for Org2MSP -2018-01-04 01:50:58.512 UTC [common/config] NewStandardValues -> DEBU 99f Initializing protos for *config.OrdererProtos -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 9a0 Processing field: ConsensusType -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 9a1 Processing field: BatchSize -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 9a2 Processing field: BatchTimeout -2018-01-04 01:50:58.512 UTC [common/config] initializeProtosStruct -> DEBU 9a3 Processing field: KafkaBrokers -2018-01-04 01:50:58.513 UTC [common/config] initializeProtosStruct -> DEBU 9a4 Processing field: ChannelRestrictions -2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9a5 Proposed new policy Admins for Orderer -2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9a6 Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9a7 Proposed new policy Readers for Orderer -2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9a8 Proposed new policy Writers for Orderer -2018-01-04 01:50:58.513 UTC [common/config] NewStandardValues -> DEBU 9a9 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.513 UTC [common/config] initializeProtosStruct -> DEBU 9aa Processing field: MSP -2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9ab Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9ac Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:58.513 UTC [policies] ProposePolicy -> DEBU 9ad Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:58.513 UTC [common/config] Validate -> DEBU 9ae Anchor peers for org Org1MSP are anchor_peers: -2018-01-04 01:50:58.513 UTC [common/config] validateMSP -> DEBU 9af Setting up MSP for org Org1MSP -2018-01-04 01:50:58.513 UTC [msp] NewBccspMsp -> DEBU 9b0 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.513 UTC [msp] Setup -> DEBU 9b1 Setting up MSP instance Org1MSP -2018-01-04 01:50:58.513 UTC [msp/identity] newIdentity -> DEBU 9b2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.149 UTC [msp] SatisfiesPrincipal -> DEBU 96e Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:34.149 UTC [cauthdsl] func2 -> DEBU 96f 0xc420026c18 principal matched by identity 0 +2018-01-14 11:45:34.149 UTC [msp/identity] Verify -> DEBU 970 Verify: digest = 00000000 82 fb fd 83 69 c5 26 65 8c 81 84 d4 ec fa 4b f6 |....i.&e......K.| +00000010 62 bc 1e e7 8c 40 40 34 9a a2 38 fe 25 1c e9 18 |b....@@4..8.%...| +2018-01-14 11:45:34.149 UTC [msp/identity] Verify -> DEBU 971 Verify: sig = 00000000 30 44 02 20 07 5e 0c d0 f8 af 0d f4 c4 a7 15 b4 |0D. .^..........| +00000010 7e ac 2c 65 12 59 f4 52 7e 9b ac 57 e5 62 42 f8 |~.,e.Y.R~..W.bB.| +00000020 17 16 b6 5b 02 20 4d 1b d2 3f 25 17 87 25 65 5e |...[. M..?%..%e^| +00000030 c0 b4 50 38 12 e9 bd 30 be 19 88 21 85 bd 91 55 |..P8...0...!...U| +00000040 ff 48 68 db 65 fb |.Hh.e.| +2018-01-14 11:45:34.149 UTC [cauthdsl] func2 -> DEBU 972 0xc420026c18 principal evaluation succeeds for identity 0 +2018-01-14 11:45:34.150 UTC [cauthdsl] func1 -> DEBU 973 0xc420026c18 gate 1515930334148609764 evaluation succeeds +2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 974 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 975 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 976 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 977 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 978 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 979 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:34.150 UTC [common/configtx] recurseConfigMap -> DEBU 97a Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97b Setting policy for key Writers to +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97c Setting policy for key Admins to +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97d Setting policy for key Readers to +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 97f Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 980 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 981 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 982 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.151 UTC [common/configtx] recurseConfigMap -> DEBU 983 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.152 UTC [common/configtx] recurseConfigMap -> DEBU 984 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.152 UTC [common/configtx] recurseConfigMap -> DEBU 985 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.152 UTC [common/configtx] recurseConfigMap -> DEBU 986 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.152 UTC [common/configtx] processConfig -> DEBU 987 Beginning new config for channel businesschannel +2018-01-14 11:45:34.152 UTC [common/config] NewStandardValues -> DEBU 988 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:34.152 UTC [common/config] initializeProtosStruct -> DEBU 989 Processing field: HashingAlgorithm +2018-01-14 11:45:34.152 UTC [common/config] initializeProtosStruct -> DEBU 98a Processing field: BlockDataHashingStructure +2018-01-14 11:45:34.152 UTC [common/config] initializeProtosStruct -> DEBU 98b Processing field: OrdererAddresses +2018-01-14 11:45:34.152 UTC [common/config] initializeProtosStruct -> DEBU 98c Processing field: Consortium +2018-01-14 11:45:34.152 UTC [policies] ProposePolicy -> DEBU 98d Proposed new policy Admins for Channel +2018-01-14 11:45:34.152 UTC [policies] ProposePolicy -> DEBU 98e Proposed new policy Readers for Channel +2018-01-14 11:45:34.152 UTC [policies] ProposePolicy -> DEBU 98f Proposed new policy Writers for Channel +2018-01-14 11:45:34.153 UTC [common/config] NewStandardValues -> DEBU 990 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 991 Processing field: ConsensusType +2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 992 Processing field: BatchSize +2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 993 Processing field: BatchTimeout +2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 994 Processing field: KafkaBrokers +2018-01-14 11:45:34.153 UTC [common/config] initializeProtosStruct -> DEBU 995 Processing field: ChannelRestrictions +2018-01-14 11:45:34.153 UTC [policies] ProposePolicy -> DEBU 996 Proposed new policy Writers for Orderer +2018-01-14 11:45:34.153 UTC [policies] ProposePolicy -> DEBU 997 Proposed new policy Admins for Orderer +2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 998 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 999 Proposed new policy Readers for Orderer +2018-01-14 11:45:34.154 UTC [common/config] NewStandardValues -> DEBU 99a Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.154 UTC [common/config] initializeProtosStruct -> DEBU 99b Processing field: MSP +2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 99c Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 99d Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 99e Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:34.154 UTC [common/config] NewStandardValues -> DEBU 99f Initializing protos for *struct {} +2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 9a0 Proposed new policy Writers for Application +2018-01-14 11:45:34.154 UTC [policies] ProposePolicy -> DEBU 9a1 Proposed new policy Readers for Application +2018-01-14 11:45:34.155 UTC [policies] ProposePolicy -> DEBU 9a2 Proposed new policy Admins for Application +2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9a3 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9a4 Processing field: MSP +2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9a5 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9a6 Processing field: AnchorPeers +2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9a7 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9a8 Processing field: MSP +2018-01-14 11:45:34.155 UTC [policies] ProposePolicy -> DEBU 9a9 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:34.155 UTC [policies] ProposePolicy -> DEBU 9aa Proposed new policy Writers for Org1MSP +2018-01-14 11:45:34.155 UTC [policies] ProposePolicy -> DEBU 9ab Proposed new policy Admins for Org1MSP +2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9ac Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9ad Processing field: MSP +2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9ae Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9af Processing field: AnchorPeers +2018-01-14 11:45:34.155 UTC [common/config] NewStandardValues -> DEBU 9b0 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.155 UTC [common/config] initializeProtosStruct -> DEBU 9b1 Processing field: MSP +2018-01-14 11:45:34.156 UTC [policies] ProposePolicy -> DEBU 9b2 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:34.156 UTC [policies] ProposePolicy -> DEBU 9b3 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:34.156 UTC [policies] ProposePolicy -> DEBU 9b4 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:34.156 UTC [common/config] validateMSP -> DEBU 9b5 Setting up MSP for org OrdererOrg +2018-01-14 11:45:34.156 UTC [msp] NewBccspMsp -> DEBU 9b6 Creating BCCSP-based MSP instance +2018-01-14 11:45:34.156 UTC [msp] Setup -> DEBU 9b7 Setting up MSP instance OrdererMSP +2018-01-14 11:45:34.156 UTC [msp/identity] newIdentity -> DEBU 9b8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:34.157 UTC [msp/identity] newIdentity -> DEBU 9b9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:34.157 UTC [msp/identity] newIdentity -> DEBU 9ba Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:34.158 UTC [msp] Validate -> DEBU 9bb MSP OrdererMSP validating identity +2018-01-14 11:45:34.158 UTC [common/config] Validate -> DEBU 9bc Anchor peers for org Org1MSP are anchor_peers: +2018-01-14 11:45:34.158 UTC [common/config] validateMSP -> DEBU 9bd Setting up MSP for org Org1MSP +2018-01-14 11:45:34.158 UTC [msp] NewBccspMsp -> DEBU 9be Creating BCCSP-based MSP instance +2018-01-14 11:45:34.158 UTC [msp] Setup -> DEBU 9bf Setting up MSP instance Org1MSP +2018-01-14 11:45:34.159 UTC [msp/identity] newIdentity -> DEBU 9c0 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4293,7 +4357,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:58.513 UTC [msp/identity] newIdentity -> DEBU 9b3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.160 UTC [msp/identity] newIdentity -> DEBU 9c1 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4307,7 +4371,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.514 UTC [msp/identity] newIdentity -> DEBU 9b4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.160 UTC [msp/identity] newIdentity -> DEBU 9c2 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4321,12 +4385,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.514 UTC [msp] Validate -> DEBU 9b5 MSP Org1MSP validating identity -2018-01-04 01:50:58.514 UTC [common/config] Validate -> DEBU 9b6 Anchor peers for org Org2MSP are -2018-01-04 01:50:58.514 UTC [common/config] validateMSP -> DEBU 9b7 Setting up MSP for org Org2MSP -2018-01-04 01:50:58.514 UTC [msp] NewBccspMsp -> DEBU 9b8 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.514 UTC [msp] Setup -> DEBU 9b9 Setting up MSP instance Org2MSP -2018-01-04 01:50:58.514 UTC [msp/identity] newIdentity -> DEBU 9ba Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.161 UTC [msp] Validate -> DEBU 9c3 MSP Org1MSP validating identity +2018-01-14 11:45:34.161 UTC [common/config] Validate -> DEBU 9c4 Anchor peers for org Org2MSP are +2018-01-14 11:45:34.161 UTC [common/config] validateMSP -> DEBU 9c5 Setting up MSP for org Org2MSP +2018-01-14 11:45:34.161 UTC [msp] NewBccspMsp -> DEBU 9c6 Creating BCCSP-based MSP instance +2018-01-14 11:45:34.162 UTC [msp] Setup -> DEBU 9c7 Setting up MSP instance Org2MSP +2018-01-14 11:45:34.162 UTC [msp/identity] newIdentity -> DEBU 9c8 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4341,7 +4405,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:58.515 UTC [msp/identity] newIdentity -> DEBU 9bb Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.163 UTC [msp/identity] newIdentity -> DEBU 9c9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4355,7 +4419,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:58.515 UTC [msp/identity] newIdentity -> DEBU 9bc Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.164 UTC [msp/identity] newIdentity -> DEBU 9ca Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4369,59 +4433,15 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:58.516 UTC [msp] Validate -> DEBU 9bd MSP Org2MSP validating identity -2018-01-04 01:50:58.516 UTC [common/config] validateMSP -> DEBU 9be Setting up MSP for org OrdererOrg -2018-01-04 01:50:58.516 UTC [msp] NewBccspMsp -> DEBU 9bf Creating BCCSP-based MSP instance -2018-01-04 01:50:58.516 UTC [msp] Setup -> DEBU 9c0 Setting up MSP instance OrdererMSP -2018-01-04 01:50:58.517 UTC [msp/identity] newIdentity -> DEBU 9c1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:50:58.517 UTC [msp/identity] newIdentity -> DEBU 9c2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:58.517 UTC [msp/identity] newIdentity -> DEBU 9c3 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:50:58.518 UTC [msp] Validate -> DEBU 9c4 MSP OrdererMSP validating identity -2018-01-04 01:50:58.519 UTC [msp] Setup -> DEBU 9c5 Setting up the MSP manager (3 msps) -2018-01-04 01:50:58.519 UTC [msp] Setup -> DEBU 9c6 MSP manager setup complete, setup 3 msps -2018-01-04 01:50:58.519 UTC [orderer/common/broadcast] Handle -> DEBU 9c7 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -2018-01-04 01:50:58.519 UTC [policies] GetPolicy -> DEBU 9c8 Returning policy Writers for evaluation -2018-01-04 01:50:58.519 UTC [cauthdsl] func1 -> DEBU 9c9 0xc420026028 gate 1515030658519761300 evaluation starts -2018-01-04 01:50:58.519 UTC [cauthdsl] func2 -> DEBU 9ca 0xc420026028 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:58.519 UTC [cauthdsl] func2 -> DEBU 9cb 0xc420026028 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:58.520 UTC [msp/identity] newIdentity -> DEBU 9cc Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.164 UTC [msp] Validate -> DEBU 9cb MSP Org2MSP validating identity +2018-01-14 11:45:34.165 UTC [msp] Setup -> DEBU 9cc Setting up the MSP manager (3 msps) +2018-01-14 11:45:34.165 UTC [msp] Setup -> DEBU 9cd MSP manager setup complete, setup 3 msps +2018-01-14 11:45:34.165 UTC [orderer/common/broadcast] Handle -> DEBU 9ce [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +2018-01-14 11:45:34.165 UTC [policies] GetPolicy -> DEBU 9cf Returning policy Writers for evaluation +2018-01-14 11:45:34.165 UTC [cauthdsl] func1 -> DEBU 9d0 0xc420150730 gate 1515930334165855864 evaluation starts +2018-01-14 11:45:34.165 UTC [cauthdsl] func2 -> DEBU 9d1 0xc420150730 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:34.166 UTC [cauthdsl] func2 -> DEBU 9d2 0xc420150730 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:34.166 UTC [msp/identity] newIdentity -> DEBU 9d3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4434,39 +4454,43 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH /4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl -----END CERTIFICATE----- -2018-01-04 01:50:58.520 UTC [msp] SatisfiesPrincipal -> DEBU 9cd Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-04 01:50:58.520 UTC [msp] Validate -> DEBU 9ce MSP OrdererMSP validating identity -2018-01-04 01:50:58.520 UTC [cauthdsl] func2 -> DEBU 9cf 0xc420026028 principal matched by identity 0 -2018-01-04 01:50:58.520 UTC [msp/identity] Verify -> DEBU 9d0 Verify: digest = 00000000 61 00 eb 76 da b7 f5 df 0a 43 43 7c 87 be 06 80 |a..v.....CC|....| -00000010 1b f6 3f 78 61 76 23 be 41 fa de a3 12 a3 8d 4c |..?xav#.A......L| -2018-01-04 01:50:58.520 UTC [msp/identity] Verify -> DEBU 9d1 Verify: sig = 00000000 30 44 02 20 57 eb a6 90 4f 87 ac b1 4a a3 5d e3 |0D. W...O...J.].| -00000010 48 cf be 73 b9 5f 5b 10 77 5f 3d b4 90 18 e2 f4 |H..s._[.w_=.....| -00000020 3e 35 35 56 02 20 15 53 cb 9f 52 03 92 cd 9f 8c |>55V. .S..R.....| -00000030 2b 6f 65 17 8f 7a ff 09 e6 d2 7a a1 40 c3 26 eb |+oe..z....z.@.&.| -00000040 76 f3 a7 a6 7d 40 |v...}@| -2018-01-04 01:50:58.521 UTC [cauthdsl] func2 -> DEBU 9d2 0xc420026028 principal evaluation succeeds for identity 0 -2018-01-04 01:50:58.521 UTC [cauthdsl] func1 -> DEBU 9d3 0xc420026028 gate 1515030658519761300 evaluation succeeds -2018-01-04 01:50:58.521 UTC [orderer/common/sigfilter] Apply -> DEBU 9d4 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420a6d440 1 [0xc4200273d0]}) %!s(*policies.implicitMetaPolicy=&{0xc420a6db00 1 [0xc4200274c8 0xc420027510]})]} -2018-01-04 01:50:58.521 UTC [common/configtx] addToMap -> DEBU 9d5 Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.521 UTC [common/configtx] addToMap -> DEBU 9d6 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.521 UTC [common/configtx] addToMap -> DEBU 9d7 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.521 UTC [common/configtx] addToMap -> DEBU 9d8 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9d9 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9da Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9db Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9dc Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9dd Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9de Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9df Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9e0 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9e1 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9e2 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.522 UTC [common/configtx] addToMap -> DEBU 9e3 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.522 UTC [policies] GetPolicy -> DEBU 9e4 Returning policy Admins for evaluation -2018-01-04 01:50:58.522 UTC [cauthdsl] func1 -> DEBU 9e5 0xc420026960 gate 1515030658522919900 evaluation starts -2018-01-04 01:50:58.522 UTC [cauthdsl] func2 -> DEBU 9e6 0xc420026960 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:58.523 UTC [cauthdsl] func2 -> DEBU 9e7 0xc420026960 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:58.523 UTC [msp/identity] newIdentity -> DEBU 9e8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.166 UTC [msp] SatisfiesPrincipal -> DEBU 9d4 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:45:34.166 UTC [msp] Validate -> DEBU 9d5 MSP OrdererMSP validating identity +2018-01-14 11:45:34.167 UTC [cauthdsl] func2 -> DEBU 9d6 0xc420150730 principal matched by identity 0 +2018-01-14 11:45:34.167 UTC [msp/identity] Verify -> DEBU 9d7 Verify: digest = 00000000 f1 b2 58 08 88 5e 3a b4 31 4c 11 7d 54 9d e1 11 |..X..^:.1L.}T...| +00000010 49 6f 0f d0 71 a3 68 67 c6 2b f7 6d 62 5b ab e7 |Io..q.hg.+.mb[..| +2018-01-14 11:45:34.167 UTC [orderer/common/broadcast] Handle -> WARN 9d8 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:45:34.167 UTC [orderer/main] func1 -> DEBU 9da Closing Broadcast stream +2018-01-14 11:45:34.167 UTC [msp/identity] Verify -> DEBU 9d9 Verify: sig = 00000000 30 44 02 20 1a 51 8b 92 3d 61 41 ac af 04 cd 3c |0D. .Q..=aA....<| +00000010 3a 08 c2 ec 5c 03 5c d7 0f c7 60 12 44 58 bc a0 |:...\.\...`.DX..| +00000020 6f 1f fb cc 02 20 42 41 50 ed b9 5e 36 44 2b 74 |o.... BAP..^6D+t| +00000030 d3 4f 56 c4 c1 20 aa 0a 85 af 9e 66 fb cf 10 d9 |.OV.. .....f....| +00000040 8c 97 95 0c 66 a7 |....f.| +2018-01-14 11:45:34.168 UTC [cauthdsl] func2 -> DEBU 9db 0xc420150730 principal evaluation succeeds for identity 0 +2018-01-14 11:45:34.170 UTC [orderer/common/deliver] Handle -> WARN 9dc Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:45:34.171 UTC [orderer/main] func1 -> DEBU 9de Closing Deliver stream +2018-01-14 11:45:34.170 UTC [cauthdsl] func1 -> DEBU 9dd 0xc420150730 gate 1515930334165855864 evaluation succeeds +2018-01-14 11:45:34.171 UTC [orderer/common/sigfilter] Apply -> DEBU 9df Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420281dc0 1 [0xc420151730]}) %!s(*policies.implicitMetaPolicy=&{0xc42081c440 1 [0xc4201517d8 0xc420151848]})]} +2018-01-14 11:45:34.172 UTC [common/configtx] addToMap -> DEBU 9e0 Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.175 UTC [common/configtx] addToMap -> DEBU 9e1 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.176 UTC [common/configtx] addToMap -> DEBU 9e2 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.176 UTC [common/configtx] addToMap -> DEBU 9e3 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.177 UTC [common/configtx] addToMap -> DEBU 9e4 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.177 UTC [common/configtx] addToMap -> DEBU 9e5 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.177 UTC [common/configtx] addToMap -> DEBU 9e6 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.177 UTC [common/configtx] addToMap -> DEBU 9e7 Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.178 UTC [common/configtx] addToMap -> DEBU 9e8 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.178 UTC [common/configtx] addToMap -> DEBU 9e9 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.178 UTC [common/configtx] addToMap -> DEBU 9ea Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-14 11:45:34.179 UTC [common/configtx] addToMap -> DEBU 9eb Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.179 UTC [common/configtx] addToMap -> DEBU 9ec Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.187 UTC [common/configtx] addToMap -> DEBU 9ed Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.187 UTC [common/configtx] addToMap -> DEBU 9ee Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.187 UTC [policies] GetPolicy -> DEBU 9ef Returning policy Admins for evaluation +2018-01-14 11:45:34.187 UTC [cauthdsl] func1 -> DEBU 9f0 0xc420150e40 gate 1515930334187913164 evaluation starts +2018-01-14 11:45:34.188 UTC [cauthdsl] func2 -> DEBU 9f1 0xc420150e40 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:34.189 UTC [cauthdsl] func2 -> DEBU 9f2 0xc420150e40 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:34.189 UTC [msp/identity] newIdentity -> DEBU 9f3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4480,88 +4504,86 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.523 UTC [msp] SatisfiesPrincipal -> DEBU 9e9 Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:58.523 UTC [cauthdsl] func2 -> DEBU 9ea 0xc420026960 principal matched by identity 0 -2018-01-04 01:50:58.523 UTC [msp/identity] Verify -> DEBU 9eb Verify: digest = 00000000 81 df 61 35 fa ff e7 18 82 38 33 4a db 00 28 a6 |..a5.....83J..(.| -00000010 60 1b 23 f0 41 df ba 4c 59 1b 98 cb 00 53 2a 5c |`.#.A..LY....S*\| -2018-01-04 01:50:58.523 UTC [msp/identity] Verify -> DEBU 9ec Verify: sig = 00000000 30 45 02 21 00 9a 5c 7e 83 cb 71 73 ee 9d c4 eb |0E.!..\~..qs....| -00000010 fc 9f 9d 1b ea 3b c8 6f f9 f1 ef c3 19 01 93 d3 |.....;.o........| -00000020 9a c3 b0 19 57 02 20 25 ce 5d 43 30 69 13 f7 3d |....W. %.]C0i..=| -00000030 ad bf 32 f0 61 da 4f 7b 36 6f 92 19 eb d8 85 44 |..2.a.O{6o.....D| -00000040 69 1c 61 35 bb e2 7c |i.a5..|| -2018-01-04 01:50:58.524 UTC [cauthdsl] func2 -> DEBU 9ed 0xc420026960 principal evaluation succeeds for identity 0 -2018-01-04 01:50:58.524 UTC [cauthdsl] func1 -> DEBU 9ee 0xc420026960 gate 1515030658522919900 evaluation succeeds -2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9ef Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f0 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f1 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f2 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f3 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:58.524 UTC [common/configtx] recurseConfigMap -> DEBU 9f4 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f5 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f6 Setting policy for key Readers to -2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f7 Setting policy for key Writers to -2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f8 Setting policy for key Admins to -2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9f9 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.525 UTC [common/configtx] recurseConfigMap -> DEBU 9fa Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.526 UTC [common/configtx] recurseConfigMap -> DEBU 9fb Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.526 UTC [common/configtx] recurseConfigMap -> DEBU 9fc Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.526 UTC [common/configtx] recurseConfigMap -> DEBU 9fd Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.526 UTC [common/configtx] recurseConfigMap -> DEBU 9fe Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.527 UTC [common/configtx] recurseConfigMap -> DEBU 9ff Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.527 UTC [common/configtx] recurseConfigMap -> DEBU a00 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.527 UTC [common/configtx] recurseConfigMap -> DEBU a01 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.527 UTC [common/configtx] processConfig -> DEBU a02 Beginning new config for channel businesschannel -2018-01-04 01:50:58.527 UTC [common/config] NewStandardValues -> DEBU a03 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:58.527 UTC [common/config] initializeProtosStruct -> DEBU a04 Processing field: HashingAlgorithm -2018-01-04 01:50:58.527 UTC [common/config] initializeProtosStruct -> DEBU a05 Processing field: BlockDataHashingStructure -2018-01-04 01:50:58.528 UTC [common/config] initializeProtosStruct -> DEBU a06 Processing field: OrdererAddresses -2018-01-04 01:50:58.528 UTC [common/config] initializeProtosStruct -> DEBU a07 Processing field: Consortium -2018-01-04 01:50:58.528 UTC [policies] ProposePolicy -> DEBU a08 Proposed new policy Admins for Channel -2018-01-04 01:50:58.528 UTC [policies] ProposePolicy -> DEBU a09 Proposed new policy Readers for Channel -2018-01-04 01:50:58.528 UTC [policies] ProposePolicy -> DEBU a0a Proposed new policy Writers for Channel -2018-01-04 01:50:58.529 UTC [common/config] NewStandardValues -> DEBU a0b Initializing protos for *config.OrdererProtos -2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a0c Processing field: ConsensusType -2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a0d Processing field: BatchSize -2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a0e Processing field: BatchTimeout -2018-01-04 01:50:58.529 UTC [orderer/common/broadcast] Handle -> WARN a0f Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a10 Processing field: KafkaBrokers -2018-01-04 01:50:58.529 UTC [orderer/main] func1 -> DEBU a11 Closing Broadcast stream -2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a12 Processing field: ChannelRestrictions -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a13 Proposed new policy Readers for Orderer -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a14 Proposed new policy Writers for Orderer -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a15 Proposed new policy Admins for Orderer -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a16 Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:58.529 UTC [common/config] NewStandardValues -> DEBU a17 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.529 UTC [common/config] initializeProtosStruct -> DEBU a18 Processing field: MSP -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a19 Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a1a Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a1b Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:58.529 UTC [common/config] NewStandardValues -> DEBU a1c Initializing protos for *struct {} -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a1d Proposed new policy Admins for Application -2018-01-04 01:50:58.529 UTC [policies] ProposePolicy -> DEBU a1e Proposed new policy Writers for Application -2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a1f Proposed new policy Readers for Application -2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a20 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a21 Processing field: MSP -2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a22 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a23 Processing field: AnchorPeers -2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a24 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a25 Processing field: MSP -2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a26 Proposed new policy Readers for Org1MSP -2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a27 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a28 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a29 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a2a Processing field: MSP -2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a2b Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a2c Processing field: AnchorPeers -2018-01-04 01:50:58.530 UTC [common/config] NewStandardValues -> DEBU a2d Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.530 UTC [common/config] initializeProtosStruct -> DEBU a2e Processing field: MSP -2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a2f Proposed new policy Admins for Org2MSP -2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a30 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:58.530 UTC [policies] ProposePolicy -> DEBU a31 Proposed new policy Writers for Org2MSP -2018-01-04 01:50:58.530 UTC [common/config] validateMSP -> DEBU a32 Setting up MSP for org OrdererOrg -2018-01-04 01:50:58.530 UTC [msp] NewBccspMsp -> DEBU a33 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.530 UTC [msp] Setup -> DEBU a34 Setting up MSP instance OrdererMSP -2018-01-04 01:50:58.531 UTC [msp/identity] newIdentity -> DEBU a35 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.190 UTC [msp] SatisfiesPrincipal -> DEBU 9f4 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:34.190 UTC [cauthdsl] func2 -> DEBU 9f5 0xc420150e40 principal matched by identity 0 +2018-01-14 11:45:34.190 UTC [msp/identity] Verify -> DEBU 9f6 Verify: digest = 00000000 82 fb fd 83 69 c5 26 65 8c 81 84 d4 ec fa 4b f6 |....i.&e......K.| +00000010 62 bc 1e e7 8c 40 40 34 9a a2 38 fe 25 1c e9 18 |b....@@4..8.%...| +2018-01-14 11:45:34.191 UTC [msp/identity] Verify -> DEBU 9f7 Verify: sig = 00000000 30 44 02 20 07 5e 0c d0 f8 af 0d f4 c4 a7 15 b4 |0D. .^..........| +00000010 7e ac 2c 65 12 59 f4 52 7e 9b ac 57 e5 62 42 f8 |~.,e.Y.R~..W.bB.| +00000020 17 16 b6 5b 02 20 4d 1b d2 3f 25 17 87 25 65 5e |...[. M..?%..%e^| +00000030 c0 b4 50 38 12 e9 bd 30 be 19 88 21 85 bd 91 55 |..P8...0...!...U| +00000040 ff 48 68 db 65 fb |.Hh.e.| +2018-01-14 11:45:34.191 UTC [cauthdsl] func2 -> DEBU 9f8 0xc420150e40 principal evaluation succeeds for identity 0 +2018-01-14 11:45:34.192 UTC [cauthdsl] func1 -> DEBU 9f9 0xc420150e40 gate 1515930334187913164 evaluation succeeds +2018-01-14 11:45:34.192 UTC [common/configtx] recurseConfigMap -> DEBU 9fa Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.193 UTC [common/configtx] recurseConfigMap -> DEBU 9fb Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.194 UTC [common/configtx] recurseConfigMap -> DEBU 9fc Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.194 UTC [common/configtx] recurseConfigMap -> DEBU 9fd Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.196 UTC [common/configtx] recurseConfigMap -> DEBU 9fe Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.197 UTC [common/configtx] recurseConfigMap -> DEBU 9ff Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a00 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a01 Setting policy for key Writers to +2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a02 Setting policy for key Admins to +2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a03 Setting policy for key Readers to +2018-01-14 11:45:34.202 UTC [common/configtx] recurseConfigMap -> DEBU a04 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.203 UTC [common/configtx] recurseConfigMap -> DEBU a05 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.203 UTC [common/configtx] recurseConfigMap -> DEBU a06 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a07 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a08 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a09 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a0a Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a0b Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.215 UTC [common/configtx] recurseConfigMap -> DEBU a0c Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.216 UTC [common/configtx] processConfig -> DEBU a0d Beginning new config for channel businesschannel +2018-01-14 11:45:34.216 UTC [common/config] NewStandardValues -> DEBU a0e Initializing protos for *config.ChannelProtos +2018-01-14 11:45:34.216 UTC [common/config] initializeProtosStruct -> DEBU a0f Processing field: HashingAlgorithm +2018-01-14 11:45:34.216 UTC [common/config] initializeProtosStruct -> DEBU a10 Processing field: BlockDataHashingStructure +2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a11 Processing field: OrdererAddresses +2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a12 Processing field: Consortium +2018-01-14 11:45:34.217 UTC [policies] ProposePolicy -> DEBU a13 Proposed new policy Admins for Channel +2018-01-14 11:45:34.217 UTC [policies] ProposePolicy -> DEBU a14 Proposed new policy Readers for Channel +2018-01-14 11:45:34.217 UTC [policies] ProposePolicy -> DEBU a15 Proposed new policy Writers for Channel +2018-01-14 11:45:34.217 UTC [common/config] NewStandardValues -> DEBU a16 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a17 Processing field: ConsensusType +2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a18 Processing field: BatchSize +2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a19 Processing field: BatchTimeout +2018-01-14 11:45:34.217 UTC [common/config] initializeProtosStruct -> DEBU a1a Processing field: KafkaBrokers +2018-01-14 11:45:34.218 UTC [common/config] initializeProtosStruct -> DEBU a1b Processing field: ChannelRestrictions +2018-01-14 11:45:34.218 UTC [policies] ProposePolicy -> DEBU a1c Proposed new policy Writers for Orderer +2018-01-14 11:45:34.218 UTC [policies] ProposePolicy -> DEBU a1d Proposed new policy Admins for Orderer +2018-01-14 11:45:34.218 UTC [policies] ProposePolicy -> DEBU a1e Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:34.218 UTC [policies] ProposePolicy -> DEBU a1f Proposed new policy Readers for Orderer +2018-01-14 11:45:34.218 UTC [common/config] NewStandardValues -> DEBU a20 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.218 UTC [common/config] initializeProtosStruct -> DEBU a21 Processing field: MSP +2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a22 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a23 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a24 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:34.219 UTC [common/config] NewStandardValues -> DEBU a25 Initializing protos for *struct {} +2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a26 Proposed new policy Readers for Application +2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a27 Proposed new policy Admins for Application +2018-01-14 11:45:34.219 UTC [policies] ProposePolicy -> DEBU a28 Proposed new policy Writers for Application +2018-01-14 11:45:34.220 UTC [common/config] NewStandardValues -> DEBU a29 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.220 UTC [common/config] initializeProtosStruct -> DEBU a2a Processing field: MSP +2018-01-14 11:45:34.220 UTC [common/config] NewStandardValues -> DEBU a2b Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:34.220 UTC [common/config] initializeProtosStruct -> DEBU a2c Processing field: AnchorPeers +2018-01-14 11:45:34.220 UTC [common/config] NewStandardValues -> DEBU a2d Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.220 UTC [common/config] initializeProtosStruct -> DEBU a2e Processing field: MSP +2018-01-14 11:45:34.220 UTC [policies] ProposePolicy -> DEBU a2f Proposed new policy Writers for Org1MSP +2018-01-14 11:45:34.220 UTC [policies] ProposePolicy -> DEBU a30 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:34.220 UTC [policies] ProposePolicy -> DEBU a31 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:34.220 UTC [common/config] NewStandardValues -> DEBU a32 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.220 UTC [common/config] initializeProtosStruct -> DEBU a33 Processing field: MSP +2018-01-14 11:45:34.221 UTC [common/config] NewStandardValues -> DEBU a34 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:34.221 UTC [common/config] initializeProtosStruct -> DEBU a35 Processing field: AnchorPeers +2018-01-14 11:45:34.221 UTC [common/config] NewStandardValues -> DEBU a36 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.221 UTC [common/config] initializeProtosStruct -> DEBU a37 Processing field: MSP +2018-01-14 11:45:34.221 UTC [policies] ProposePolicy -> DEBU a38 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:34.221 UTC [policies] ProposePolicy -> DEBU a39 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:34.221 UTC [policies] ProposePolicy -> DEBU a3a Proposed new policy Writers for Org2MSP +2018-01-14 11:45:34.221 UTC [common/config] validateMSP -> DEBU a3b Setting up MSP for org OrdererOrg +2018-01-14 11:45:34.224 UTC [msp] NewBccspMsp -> DEBU a3c Creating BCCSP-based MSP instance +2018-01-14 11:45:34.224 UTC [msp] Setup -> DEBU a3d Setting up MSP instance OrdererMSP +2018-01-14 11:45:34.225 UTC [msp/identity] newIdentity -> DEBU a3e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -4575,7 +4597,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:58.531 UTC [msp/identity] newIdentity -> DEBU a36 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.228 UTC [msp/identity] newIdentity -> DEBU a3f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4588,7 +4610,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:58.531 UTC [msp/identity] newIdentity -> DEBU a37 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.229 UTC [msp/identity] newIdentity -> DEBU a40 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4601,12 +4623,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:58.532 UTC [msp] Validate -> DEBU a38 MSP OrdererMSP validating identity -2018-01-04 01:50:58.532 UTC [common/config] Validate -> DEBU a39 Anchor peers for org Org1MSP are anchor_peers: -2018-01-04 01:50:58.532 UTC [common/config] validateMSP -> DEBU a3a Setting up MSP for org Org1MSP -2018-01-04 01:50:58.532 UTC [msp] NewBccspMsp -> DEBU a3b Creating BCCSP-based MSP instance -2018-01-04 01:50:58.532 UTC [msp] Setup -> DEBU a3c Setting up MSP instance Org1MSP -2018-01-04 01:50:58.533 UTC [msp/identity] newIdentity -> DEBU a3d Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.232 UTC [msp] Validate -> DEBU a41 MSP OrdererMSP validating identity +2018-01-14 11:45:34.233 UTC [common/config] Validate -> DEBU a42 Anchor peers for org Org1MSP are anchor_peers: +2018-01-14 11:45:34.233 UTC [common/config] validateMSP -> DEBU a43 Setting up MSP for org Org1MSP +2018-01-14 11:45:34.234 UTC [msp] NewBccspMsp -> DEBU a44 Creating BCCSP-based MSP instance +2018-01-14 11:45:34.235 UTC [msp] Setup -> DEBU a45 Setting up MSP instance Org1MSP +2018-01-14 11:45:34.238 UTC [msp/identity] newIdentity -> DEBU a46 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4621,7 +4643,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:58.534 UTC [msp/identity] newIdentity -> DEBU a3e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.239 UTC [msp/identity] newIdentity -> DEBU a47 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4635,7 +4657,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.534 UTC [msp/identity] newIdentity -> DEBU a3f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.249 UTC [msp/identity] newIdentity -> DEBU a48 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4649,12 +4671,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.535 UTC [msp] Validate -> DEBU a40 MSP Org1MSP validating identity -2018-01-04 01:50:58.535 UTC [common/config] Validate -> DEBU a41 Anchor peers for org Org2MSP are -2018-01-04 01:50:58.536 UTC [common/config] validateMSP -> DEBU a42 Setting up MSP for org Org2MSP -2018-01-04 01:50:58.536 UTC [msp] NewBccspMsp -> DEBU a43 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.536 UTC [msp] Setup -> DEBU a44 Setting up MSP instance Org2MSP -2018-01-04 01:50:58.536 UTC [msp/identity] newIdentity -> DEBU a45 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.250 UTC [msp] Validate -> DEBU a49 MSP Org1MSP validating identity +2018-01-14 11:45:34.251 UTC [common/config] Validate -> DEBU a4a Anchor peers for org Org2MSP are +2018-01-14 11:45:34.251 UTC [common/config] validateMSP -> DEBU a4b Setting up MSP for org Org2MSP +2018-01-14 11:45:34.252 UTC [msp] NewBccspMsp -> DEBU a4c Creating BCCSP-based MSP instance +2018-01-14 11:45:34.252 UTC [msp] Setup -> DEBU a4d Setting up MSP instance Org2MSP +2018-01-14 11:45:34.255 UTC [msp/identity] newIdentity -> DEBU a4e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4669,7 +4691,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:58.537 UTC [msp/identity] newIdentity -> DEBU a46 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.255 UTC [msp/identity] newIdentity -> DEBU a4f Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4683,7 +4705,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:58.537 UTC [msp/identity] newIdentity -> DEBU a47 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.256 UTC [msp/identity] newIdentity -> DEBU a50 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4697,73 +4719,71 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:58.539 UTC [orderer/common/deliver] Handle -> WARN a48 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:50:58.539 UTC [orderer/main] func1 -> DEBU a49 Closing Deliver stream -2018-01-04 01:50:58.542 UTC [msp] Validate -> DEBU a4a MSP Org2MSP validating identity -2018-01-04 01:50:58.543 UTC [msp] Setup -> DEBU a4b Setting up the MSP manager (3 msps) -2018-01-04 01:50:58.543 UTC [msp] Setup -> DEBU a4c MSP manager setup complete, setup 3 msps -2018-01-04 01:50:58.543 UTC [orderer/common/blockcutter] Ordered -> DEBU a4d Found message which requested to be isolated, cutting into its own batch -2018-01-04 01:50:58.544 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU a4e retrieveBlockByNumber() - blockNum = [0] -2018-01-04 01:50:58.544 UTC [fsblkstorage] newBlockfileStream -> DEBU a4f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -2018-01-04 01:50:58.545 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a50 Remaining bytes=[11933], Going to peek [8] bytes -2018-01-04 01:50:58.545 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a51 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -2018-01-04 01:50:58.546 UTC [common/configtx] addToMap -> DEBU a52 Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.547 UTC [common/configtx] addToMap -> DEBU a53 Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:50:58.548 UTC [common/configtx] addToMap -> DEBU a54 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:50:58.548 UTC [common/configtx] addToMap -> DEBU a55 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:50:58.549 UTC [common/configtx] addToMap -> DEBU a56 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:50:58.549 UTC [common/configtx] addToMap -> DEBU a57 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:50:58.549 UTC [common/configtx] addToMap -> DEBU a58 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:50:58.549 UTC [common/configtx] addToMap -> DEBU a59 Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5a Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5b Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5c Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5d Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5e Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:50:58.550 UTC [common/configtx] addToMap -> DEBU a5f Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a60 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a61 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a62 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a63 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a64 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a65 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:50:58.551 UTC [common/configtx] addToMap -> DEBU a66 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a67 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a68 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a69 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a6a Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a6b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a6c Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.552 UTC [common/configtx] addToMap -> DEBU a6d Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a6e Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a6f Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a70 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a71 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a72 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a73 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a74 Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:50:58.553 UTC [common/configtx] addToMap -> DEBU a75 Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a76 Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a77 Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a78 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a79 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a7a Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a7b Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a7c Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.554 UTC [common/configtx] addToMap -> DEBU a7d Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a7e Adding to config map: [Groups] /Channel -2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a7f Adding to config map: [Groups] /Channel/Application -2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a80 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a81 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a82 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a83 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a84 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:50:58.555 UTC [common/configtx] addToMap -> DEBU a85 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:50:58.556 UTC [policies] GetPolicy -> DEBU a86 Returning policy Admins for evaluation -2018-01-04 01:50:58.556 UTC [cauthdsl] func1 -> DEBU a87 0xc42010e968 gate 1515030658556353100 evaluation starts -2018-01-04 01:50:58.556 UTC [cauthdsl] func2 -> DEBU a88 0xc42010e968 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:50:58.556 UTC [cauthdsl] func2 -> DEBU a89 0xc42010e968 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:50:58.557 UTC [msp/identity] newIdentity -> DEBU a8a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.257 UTC [msp] Validate -> DEBU a51 MSP Org2MSP validating identity +2018-01-14 11:45:34.257 UTC [msp] Setup -> DEBU a52 Setting up the MSP manager (3 msps) +2018-01-14 11:45:34.257 UTC [msp] Setup -> DEBU a53 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:34.258 UTC [orderer/common/blockcutter] Ordered -> DEBU a54 Found message which requested to be isolated, cutting into its own batch +2018-01-14 11:45:34.258 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU a55 retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:45:34.258 UTC [fsblkstorage] newBlockfileStream -> DEBU a56 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-14 11:45:34.258 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a57 Remaining bytes=[11933], Going to peek [8] bytes +2018-01-14 11:45:34.258 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU a58 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:45:34.259 UTC [common/configtx] addToMap -> DEBU a59 Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.259 UTC [common/configtx] addToMap -> DEBU a5a Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.260 UTC [common/configtx] addToMap -> DEBU a5b Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a5c Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a5d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a5e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a5f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:34.261 UTC [common/configtx] addToMap -> DEBU a60 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a61 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a62 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a63 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a64 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a65 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a66 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a67 Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a68 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a69 Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6a Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6b Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6c Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6d Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6e Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a6f Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a70 Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a71 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:34.262 UTC [common/configtx] addToMap -> DEBU a72 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a73 Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a74 Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a75 Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a76 Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a77 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a78 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a79 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7a Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7b Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7c Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7d Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7e Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a7f Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a80 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a81 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a82 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a83 Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.263 UTC [common/configtx] addToMap -> DEBU a84 Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a85 Adding to config map: [Groups] /Channel +2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a86 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a87 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a88 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a89 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a8a Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a8b Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:34.264 UTC [common/configtx] addToMap -> DEBU a8c Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:34.264 UTC [policies] GetPolicy -> DEBU a8d Returning policy Admins for evaluation +2018-01-14 11:45:34.264 UTC [cauthdsl] func1 -> DEBU a8e 0xc420150d30 gate 1515930334264285764 evaluation starts +2018-01-14 11:45:34.264 UTC [cauthdsl] func2 -> DEBU a8f 0xc420150d30 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:34.264 UTC [cauthdsl] func2 -> DEBU a90 0xc420150d30 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:34.265 UTC [msp/identity] newIdentity -> DEBU a91 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4777,86 +4797,86 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.558 UTC [msp] SatisfiesPrincipal -> DEBU a8b Checking if identity satisfies ADMIN role for Org1MSP -2018-01-04 01:50:58.558 UTC [cauthdsl] func2 -> DEBU a8c 0xc42010e968 principal matched by identity 0 -2018-01-04 01:50:58.558 UTC [msp/identity] Verify -> DEBU a8d Verify: digest = 00000000 81 df 61 35 fa ff e7 18 82 38 33 4a db 00 28 a6 |..a5.....83J..(.| -00000010 60 1b 23 f0 41 df ba 4c 59 1b 98 cb 00 53 2a 5c |`.#.A..LY....S*\| -2018-01-04 01:50:58.558 UTC [msp/identity] Verify -> DEBU a8e Verify: sig = 00000000 30 45 02 21 00 9a 5c 7e 83 cb 71 73 ee 9d c4 eb |0E.!..\~..qs....| -00000010 fc 9f 9d 1b ea 3b c8 6f f9 f1 ef c3 19 01 93 d3 |.....;.o........| -00000020 9a c3 b0 19 57 02 20 25 ce 5d 43 30 69 13 f7 3d |....W. %.]C0i..=| -00000030 ad bf 32 f0 61 da 4f 7b 36 6f 92 19 eb d8 85 44 |..2.a.O{6o.....D| -00000040 69 1c 61 35 bb e2 7c |i.a5..|| -2018-01-04 01:50:58.558 UTC [cauthdsl] func2 -> DEBU a8f 0xc42010e968 principal evaluation succeeds for identity 0 -2018-01-04 01:50:58.559 UTC [cauthdsl] func1 -> DEBU a90 0xc42010e968 gate 1515030658556353100 evaluation succeeds -2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a91 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a92 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a93 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a94 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.559 UTC [common/configtx] recurseConfigMap -> DEBU a95 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a96 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a97 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a98 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a99 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a9a Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a9b Setting policy for key Readers to -2018-01-04 01:50:58.560 UTC [common/configtx] recurseConfigMap -> DEBU a9c Setting policy for key Writers to -2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU a9d Setting policy for key Admins to -2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU a9e Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU a9f Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU aa0 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU aa1 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU aa2 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:50:58.561 UTC [common/configtx] recurseConfigMap -> DEBU aa3 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:50:58.562 UTC [common/configtx] processConfig -> DEBU aa4 Beginning new config for channel businesschannel -2018-01-04 01:50:58.562 UTC [common/config] NewStandardValues -> DEBU aa5 Initializing protos for *config.ChannelProtos -2018-01-04 01:50:58.562 UTC [common/config] initializeProtosStruct -> DEBU aa6 Processing field: HashingAlgorithm -2018-01-04 01:50:58.562 UTC [common/config] initializeProtosStruct -> DEBU aa7 Processing field: BlockDataHashingStructure -2018-01-04 01:50:58.562 UTC [common/config] initializeProtosStruct -> DEBU aa8 Processing field: OrdererAddresses -2018-01-04 01:50:58.562 UTC [common/config] initializeProtosStruct -> DEBU aa9 Processing field: Consortium -2018-01-04 01:50:58.562 UTC [policies] ProposePolicy -> DEBU aaa Proposed new policy Readers for Channel -2018-01-04 01:50:58.562 UTC [policies] ProposePolicy -> DEBU aab Proposed new policy Writers for Channel -2018-01-04 01:50:58.562 UTC [policies] ProposePolicy -> DEBU aac Proposed new policy Admins for Channel -2018-01-04 01:50:58.562 UTC [common/config] NewStandardValues -> DEBU aad Initializing protos for *config.OrdererProtos -2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU aae Processing field: ConsensusType -2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU aaf Processing field: BatchSize -2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU ab0 Processing field: BatchTimeout -2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU ab1 Processing field: KafkaBrokers -2018-01-04 01:50:58.563 UTC [common/config] initializeProtosStruct -> DEBU ab2 Processing field: ChannelRestrictions -2018-01-04 01:50:58.563 UTC [policies] ProposePolicy -> DEBU ab3 Proposed new policy Admins for Orderer -2018-01-04 01:50:58.566 UTC [policies] ProposePolicy -> DEBU ab4 Proposed new policy BlockValidation for Orderer -2018-01-04 01:50:58.566 UTC [policies] ProposePolicy -> DEBU ab5 Proposed new policy Readers for Orderer -2018-01-04 01:50:58.566 UTC [policies] ProposePolicy -> DEBU ab6 Proposed new policy Writers for Orderer -2018-01-04 01:50:58.567 UTC [common/config] NewStandardValues -> DEBU ab7 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.567 UTC [common/config] initializeProtosStruct -> DEBU ab8 Processing field: MSP -2018-01-04 01:50:58.567 UTC [policies] ProposePolicy -> DEBU ab9 Proposed new policy Writers for OrdererOrg -2018-01-04 01:50:58.567 UTC [policies] ProposePolicy -> DEBU aba Proposed new policy Admins for OrdererOrg -2018-01-04 01:50:58.567 UTC [policies] ProposePolicy -> DEBU abb Proposed new policy Readers for OrdererOrg -2018-01-04 01:50:58.568 UTC [common/config] NewStandardValues -> DEBU abc Initializing protos for *struct {} -2018-01-04 01:50:58.568 UTC [policies] ProposePolicy -> DEBU abd Proposed new policy Admins for Application -2018-01-04 01:50:58.568 UTC [policies] ProposePolicy -> DEBU abe Proposed new policy Writers for Application -2018-01-04 01:50:58.568 UTC [policies] ProposePolicy -> DEBU abf Proposed new policy Readers for Application -2018-01-04 01:50:58.568 UTC [common/config] NewStandardValues -> DEBU ac0 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.568 UTC [common/config] initializeProtosStruct -> DEBU ac1 Processing field: MSP -2018-01-04 01:50:58.568 UTC [common/config] NewStandardValues -> DEBU ac2 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:58.568 UTC [common/config] initializeProtosStruct -> DEBU ac3 Processing field: AnchorPeers -2018-01-04 01:50:58.570 UTC [common/config] NewStandardValues -> DEBU ac4 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.570 UTC [common/config] initializeProtosStruct -> DEBU ac5 Processing field: MSP -2018-01-04 01:50:58.570 UTC [policies] ProposePolicy -> DEBU ac6 Proposed new policy Admins for Org1MSP -2018-01-04 01:50:58.570 UTC [policies] ProposePolicy -> DEBU ac7 Proposed new policy Readers for Org1MSP -2018-01-04 01:50:58.570 UTC [policies] ProposePolicy -> DEBU ac8 Proposed new policy Writers for Org1MSP -2018-01-04 01:50:58.571 UTC [common/config] NewStandardValues -> DEBU ac9 Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.571 UTC [common/config] initializeProtosStruct -> DEBU aca Processing field: MSP -2018-01-04 01:50:58.571 UTC [common/config] NewStandardValues -> DEBU acb Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:50:58.571 UTC [common/config] initializeProtosStruct -> DEBU acc Processing field: AnchorPeers -2018-01-04 01:50:58.571 UTC [common/config] NewStandardValues -> DEBU acd Initializing protos for *config.OrganizationProtos -2018-01-04 01:50:58.571 UTC [common/config] initializeProtosStruct -> DEBU ace Processing field: MSP -2018-01-04 01:50:58.571 UTC [policies] ProposePolicy -> DEBU acf Proposed new policy Writers for Org2MSP -2018-01-04 01:50:58.571 UTC [policies] ProposePolicy -> DEBU ad0 Proposed new policy Admins for Org2MSP -2018-01-04 01:50:58.571 UTC [policies] ProposePolicy -> DEBU ad1 Proposed new policy Readers for Org2MSP -2018-01-04 01:50:58.571 UTC [common/config] validateMSP -> DEBU ad2 Setting up MSP for org OrdererOrg -2018-01-04 01:50:58.571 UTC [msp] NewBccspMsp -> DEBU ad3 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.572 UTC [msp] Setup -> DEBU ad4 Setting up MSP instance OrdererMSP -2018-01-04 01:50:58.572 UTC [msp/identity] newIdentity -> DEBU ad5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.265 UTC [msp] SatisfiesPrincipal -> DEBU a92 Checking if identity satisfies ADMIN role for Org1MSP +2018-01-14 11:45:34.265 UTC [cauthdsl] func2 -> DEBU a93 0xc420150d30 principal matched by identity 0 +2018-01-14 11:45:34.266 UTC [msp/identity] Verify -> DEBU a94 Verify: digest = 00000000 82 fb fd 83 69 c5 26 65 8c 81 84 d4 ec fa 4b f6 |....i.&e......K.| +00000010 62 bc 1e e7 8c 40 40 34 9a a2 38 fe 25 1c e9 18 |b....@@4..8.%...| +2018-01-14 11:45:34.266 UTC [msp/identity] Verify -> DEBU a95 Verify: sig = 00000000 30 44 02 20 07 5e 0c d0 f8 af 0d f4 c4 a7 15 b4 |0D. .^..........| +00000010 7e ac 2c 65 12 59 f4 52 7e 9b ac 57 e5 62 42 f8 |~.,e.Y.R~..W.bB.| +00000020 17 16 b6 5b 02 20 4d 1b d2 3f 25 17 87 25 65 5e |...[. M..?%..%e^| +00000030 c0 b4 50 38 12 e9 bd 30 be 19 88 21 85 bd 91 55 |..P8...0...!...U| +00000040 ff 48 68 db 65 fb |.Hh.e.| +2018-01-14 11:45:34.266 UTC [cauthdsl] func2 -> DEBU a96 0xc420150d30 principal evaluation succeeds for identity 0 +2018-01-14 11:45:34.266 UTC [cauthdsl] func1 -> DEBU a97 0xc420150d30 gate 1515930334264285764 evaluation succeeds +2018-01-14 11:45:34.267 UTC [common/configtx] recurseConfigMap -> DEBU a98 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.267 UTC [common/configtx] recurseConfigMap -> DEBU a99 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.267 UTC [common/configtx] recurseConfigMap -> DEBU a9a Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.267 UTC [common/configtx] recurseConfigMap -> DEBU a9b Setting policy for key Admins to +2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU a9c Setting policy for key Readers to +2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU a9d Setting policy for key Writers to +2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU a9e Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU a9f Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.268 UTC [common/configtx] recurseConfigMap -> DEBU aa0 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa1 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa2 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa3 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa4 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa5 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa6 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:34.269 UTC [common/configtx] recurseConfigMap -> DEBU aa7 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.270 UTC [common/configtx] recurseConfigMap -> DEBU aa8 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.270 UTC [common/configtx] recurseConfigMap -> DEBU aa9 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:34.270 UTC [common/configtx] recurseConfigMap -> DEBU aaa Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:34.270 UTC [common/configtx] processConfig -> DEBU aab Beginning new config for channel businesschannel +2018-01-14 11:45:34.270 UTC [common/config] NewStandardValues -> DEBU aac Initializing protos for *config.ChannelProtos +2018-01-14 11:45:34.270 UTC [common/config] initializeProtosStruct -> DEBU aad Processing field: HashingAlgorithm +2018-01-14 11:45:34.270 UTC [common/config] initializeProtosStruct -> DEBU aae Processing field: BlockDataHashingStructure +2018-01-14 11:45:34.270 UTC [common/config] initializeProtosStruct -> DEBU aaf Processing field: OrdererAddresses +2018-01-14 11:45:34.270 UTC [common/config] initializeProtosStruct -> DEBU ab0 Processing field: Consortium +2018-01-14 11:45:34.270 UTC [policies] ProposePolicy -> DEBU ab1 Proposed new policy Readers for Channel +2018-01-14 11:45:34.271 UTC [policies] ProposePolicy -> DEBU ab2 Proposed new policy Writers for Channel +2018-01-14 11:45:34.271 UTC [policies] ProposePolicy -> DEBU ab3 Proposed new policy Admins for Channel +2018-01-14 11:45:34.271 UTC [common/config] NewStandardValues -> DEBU ab4 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab5 Processing field: ConsensusType +2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab6 Processing field: BatchSize +2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab7 Processing field: BatchTimeout +2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab8 Processing field: KafkaBrokers +2018-01-14 11:45:34.271 UTC [common/config] initializeProtosStruct -> DEBU ab9 Processing field: ChannelRestrictions +2018-01-14 11:45:34.271 UTC [policies] ProposePolicy -> DEBU aba Proposed new policy Writers for Orderer +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU abb Proposed new policy Admins for Orderer +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU abc Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU abd Proposed new policy Readers for Orderer +2018-01-14 11:45:34.272 UTC [common/config] NewStandardValues -> DEBU abe Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.272 UTC [common/config] initializeProtosStruct -> DEBU abf Processing field: MSP +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac0 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac1 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac2 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:34.272 UTC [common/config] NewStandardValues -> DEBU ac3 Initializing protos for *struct {} +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac4 Proposed new policy Writers for Application +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac5 Proposed new policy Readers for Application +2018-01-14 11:45:34.272 UTC [policies] ProposePolicy -> DEBU ac6 Proposed new policy Admins for Application +2018-01-14 11:45:34.272 UTC [common/config] NewStandardValues -> DEBU ac7 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.272 UTC [common/config] initializeProtosStruct -> DEBU ac8 Processing field: MSP +2018-01-14 11:45:34.272 UTC [common/config] NewStandardValues -> DEBU ac9 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:34.272 UTC [common/config] initializeProtosStruct -> DEBU aca Processing field: AnchorPeers +2018-01-14 11:45:34.273 UTC [common/config] NewStandardValues -> DEBU acb Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.273 UTC [common/config] initializeProtosStruct -> DEBU acc Processing field: MSP +2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU acd Proposed new policy Writers for Org1MSP +2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU ace Proposed new policy Admins for Org1MSP +2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU acf Proposed new policy Readers for Org1MSP +2018-01-14 11:45:34.273 UTC [common/config] NewStandardValues -> DEBU ad0 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.273 UTC [common/config] initializeProtosStruct -> DEBU ad1 Processing field: MSP +2018-01-14 11:45:34.273 UTC [common/config] NewStandardValues -> DEBU ad2 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:34.273 UTC [common/config] initializeProtosStruct -> DEBU ad3 Processing field: AnchorPeers +2018-01-14 11:45:34.273 UTC [common/config] NewStandardValues -> DEBU ad4 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:34.273 UTC [common/config] initializeProtosStruct -> DEBU ad5 Processing field: MSP +2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU ad6 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU ad7 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:34.273 UTC [policies] ProposePolicy -> DEBU ad8 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:34.273 UTC [common/config] validateMSP -> DEBU ad9 Setting up MSP for org OrdererOrg +2018-01-14 11:45:34.274 UTC [msp] NewBccspMsp -> DEBU ada Creating BCCSP-based MSP instance +2018-01-14 11:45:34.274 UTC [msp] Setup -> DEBU adb Setting up MSP instance OrdererMSP +2018-01-14 11:45:34.274 UTC [msp/identity] newIdentity -> DEBU adc Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -4870,7 +4890,7 @@ AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= -----END CERTIFICATE----- -2018-01-04 01:50:58.573 UTC [msp/identity] newIdentity -> DEBU ad6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.275 UTC [msp/identity] newIdentity -> DEBU add Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4883,7 +4903,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:58.573 UTC [msp/identity] newIdentity -> DEBU ad7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.275 UTC [msp/identity] newIdentity -> DEBU ade Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4896,12 +4916,12 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:50:58.574 UTC [msp] Validate -> DEBU ad8 MSP OrdererMSP validating identity -2018-01-04 01:50:58.575 UTC [common/config] Validate -> DEBU ad9 Anchor peers for org Org1MSP are anchor_peers: -2018-01-04 01:50:58.575 UTC [common/config] validateMSP -> DEBU ada Setting up MSP for org Org1MSP -2018-01-04 01:50:58.575 UTC [msp] NewBccspMsp -> DEBU adb Creating BCCSP-based MSP instance -2018-01-04 01:50:58.576 UTC [msp] Setup -> DEBU adc Setting up MSP instance Org1MSP -2018-01-04 01:50:58.577 UTC [msp/identity] newIdentity -> DEBU add Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.276 UTC [msp] Validate -> DEBU adf MSP OrdererMSP validating identity +2018-01-14 11:45:34.277 UTC [common/config] Validate -> DEBU ae0 Anchor peers for org Org1MSP are anchor_peers: +2018-01-14 11:45:34.277 UTC [common/config] validateMSP -> DEBU ae1 Setting up MSP for org Org1MSP +2018-01-14 11:45:34.277 UTC [msp] NewBccspMsp -> DEBU ae2 Creating BCCSP-based MSP instance +2018-01-14 11:45:34.277 UTC [msp] Setup -> DEBU ae3 Setting up MSP instance Org1MSP +2018-01-14 11:45:34.277 UTC [msp/identity] newIdentity -> DEBU ae4 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4916,7 +4936,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:50:58.578 UTC [msp/identity] newIdentity -> DEBU ade Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.277 UTC [msp/identity] newIdentity -> DEBU ae5 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4930,7 +4950,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.579 UTC [msp/identity] newIdentity -> DEBU adf Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.279 UTC [msp/identity] newIdentity -> DEBU ae6 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4944,12 +4964,12 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:50:58.580 UTC [msp] Validate -> DEBU ae0 MSP Org1MSP validating identity -2018-01-04 01:50:58.580 UTC [common/config] Validate -> DEBU ae1 Anchor peers for org Org2MSP are -2018-01-04 01:50:58.580 UTC [common/config] validateMSP -> DEBU ae2 Setting up MSP for org Org2MSP -2018-01-04 01:50:58.580 UTC [msp] NewBccspMsp -> DEBU ae3 Creating BCCSP-based MSP instance -2018-01-04 01:50:58.580 UTC [msp] Setup -> DEBU ae4 Setting up MSP instance Org2MSP -2018-01-04 01:50:58.581 UTC [msp/identity] newIdentity -> DEBU ae5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.280 UTC [msp] Validate -> DEBU ae7 MSP Org1MSP validating identity +2018-01-14 11:45:34.280 UTC [common/config] Validate -> DEBU ae8 Anchor peers for org Org2MSP are +2018-01-14 11:45:34.280 UTC [common/config] validateMSP -> DEBU ae9 Setting up MSP for org Org2MSP +2018-01-14 11:45:34.280 UTC [msp] NewBccspMsp -> DEBU aea Creating BCCSP-based MSP instance +2018-01-14 11:45:34.280 UTC [msp] Setup -> DEBU aeb Setting up MSP instance Org2MSP +2018-01-14 11:45:34.281 UTC [msp/identity] newIdentity -> DEBU aec Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4964,7 +4984,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:50:58.582 UTC [msp/identity] newIdentity -> DEBU ae6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.281 UTC [msp/identity] newIdentity -> DEBU aed Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4978,7 +4998,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:58.583 UTC [msp/identity] newIdentity -> DEBU ae7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.282 UTC [msp/identity] newIdentity -> DEBU aee Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4992,135 +5012,135 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:50:58.584 UTC [msp] Validate -> DEBU ae8 MSP Org2MSP validating identity -2018-01-04 01:50:58.585 UTC [msp] Setup -> DEBU ae9 Setting up the MSP manager (3 msps) -2018-01-04 01:50:58.585 UTC [msp] Setup -> DEBU aea MSP manager setup complete, setup 3 msps -2018-01-04 01:50:58.585 UTC [policies] GetPolicy -> DEBU aeb Returning policy Writers for evaluation -2018-01-04 01:50:58.585 UTC [policies] CommitProposals -> DEBU aec In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:50:58.585 UTC [policies] GetPolicy -> DEBU aed Returning policy Admins for evaluation -2018-01-04 01:50:58.585 UTC [policies] CommitProposals -> DEBU aee In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:50:58.585 UTC [policies] GetPolicy -> DEBU aef Returning policy Readers for evaluation -2018-01-04 01:50:58.586 UTC [policies] CommitProposals -> DEBU af0 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:50:58.586 UTC [policies] GetPolicy -> DEBU af1 Returning policy Admins for evaluation -2018-01-04 01:50:58.586 UTC [policies] GetPolicy -> DEBU af2 Returning policy Writers for evaluation -2018-01-04 01:50:58.587 UTC [policies] GetPolicy -> DEBU af3 Returning policy Readers for evaluation -2018-01-04 01:50:58.587 UTC [policies] GetPolicy -> DEBU af4 Returning policy Writers for evaluation -2018-01-04 01:50:58.587 UTC [policies] GetPolicy -> DEBU af5 Returning policy Admins for evaluation -2018-01-04 01:50:58.587 UTC [policies] CommitProposals -> DEBU af6 In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:50:58.587 UTC [policies] GetPolicy -> DEBU af7 Returning policy Readers for evaluation -2018-01-04 01:50:58.587 UTC [policies] CommitProposals -> DEBU af8 In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU af9 Returning policy Writers for evaluation -2018-01-04 01:50:58.588 UTC [policies] CommitProposals -> DEBU afa In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU afb Returning policy Writers for evaluation -2018-01-04 01:50:58.588 UTC [policies] CommitProposals -> DEBU afc In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU afd Returning policy Admins for evaluation -2018-01-04 01:50:58.588 UTC [policies] CommitProposals -> DEBU afe In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU aff Returning policy Readers for evaluation -2018-01-04 01:50:58.588 UTC [policies] CommitProposals -> DEBU b00 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:50:58.588 UTC [policies] GetPolicy -> DEBU b01 Returning policy Admins for evaluation -2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b02 Returning policy Admins for evaluation -2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b03 Returning policy Writers for evaluation -2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b04 Returning policy Writers for evaluation -2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b05 Returning policy Readers for evaluation -2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b06 Returning policy Readers for evaluation -2018-01-04 01:50:58.589 UTC [policies] GetPolicy -> DEBU b07 Returning policy Writers for evaluation -2018-01-04 01:50:58.590 UTC [policies] CommitProposals -> DEBU b08 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:50:58.590 UTC [policies] GetPolicy -> DEBU b09 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:50:58.590 UTC [policies] CommitProposals -> DEBU b0a In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:50:58.590 UTC [policies] GetPolicy -> DEBU b0b Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:50:58.590 UTC [policies] CommitProposals -> DEBU b0c In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:50:58.590 UTC [policies] GetPolicy -> DEBU b0d Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:50:58.591 UTC [policies] CommitProposals -> DEBU b0e In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:50:58.591 UTC [policies] GetPolicy -> DEBU b0f Returning policy Admins for evaluation -2018-01-04 01:50:58.591 UTC [policies] CommitProposals -> DEBU b10 In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:50:58.591 UTC [policies] GetPolicy -> DEBU b11 Returning policy BlockValidation for evaluation -2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b12 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b13 Returning policy Readers for evaluation -2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b14 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b15 Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b16 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b17 Returning policy Writers for evaluation -2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b18 In commit adding relative sub-policy Application/Writers to Channel -2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b19 Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b1a In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b1b Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b1c In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:50:58.592 UTC [policies] GetPolicy -> DEBU b1d Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:50:58.592 UTC [policies] CommitProposals -> DEBU b1e In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b1f Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:50:58.593 UTC [policies] CommitProposals -> DEBU b20 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b21 Returning policy Admins for evaluation -2018-01-04 01:50:58.593 UTC [policies] CommitProposals -> DEBU b22 In commit adding relative sub-policy Application/Admins to Channel -2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b23 Returning policy Readers for evaluation -2018-01-04 01:50:58.593 UTC [policies] CommitProposals -> DEBU b24 In commit adding relative sub-policy Application/Readers to Channel -2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b25 Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:50:58.593 UTC [policies] CommitProposals -> DEBU b26 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b27 Returning policy Readers for evaluation -2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b28 Returning policy Readers for evaluation -2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b29 Returning policy Writers for evaluation -2018-01-04 01:50:58.593 UTC [policies] GetPolicy -> DEBU b2a Returning policy Writers for evaluation -2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b2b Returning policy Admins for evaluation -2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b2c Returning policy Admins for evaluation -2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b2d Returning policy Readers for evaluation -2018-01-04 01:50:58.594 UTC [policies] CommitProposals -> DEBU b2e As expected, current configuration has policy '/Channel/Readers' -2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b2f Returning policy Writers for evaluation -2018-01-04 01:50:58.594 UTC [policies] CommitProposals -> DEBU b30 As expected, current configuration has policy '/Channel/Writers' -2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b31 Returning policy Application/Readers for evaluation -2018-01-04 01:50:58.594 UTC [policies] CommitProposals -> DEBU b32 As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-04 01:50:58.594 UTC [policies] GetPolicy -> DEBU b33 Returning policy Application/Writers for evaluation -2018-01-04 01:50:58.595 UTC [policies] CommitProposals -> DEBU b34 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-04 01:50:58.595 UTC [policies] GetPolicy -> DEBU b35 Returning policy Application/Admins for evaluation -2018-01-04 01:50:58.595 UTC [policies] CommitProposals -> DEBU b36 As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-04 01:50:58.595 UTC [policies] GetPolicy -> DEBU b37 Returning policy Orderer/BlockValidation for evaluation -2018-01-04 01:50:58.595 UTC [policies] CommitProposals -> DEBU b38 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-04 01:50:58.595 UTC [orderer/multichain] addBlockSignature -> DEBU b39 &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:0 lastConfigSeq:1} -2018-01-04 01:50:58.595 UTC [orderer/multichain] addBlockSignature -> DEBU b3a &{} -2018-01-04 01:50:58.595 UTC [msp] GetLocalMSP -> DEBU b3b Returning existing local MSP -2018-01-04 01:50:58.595 UTC [msp] GetDefaultSigningIdentity -> DEBU b3c Obtaining default signing identity -2018-01-04 01:50:58.595 UTC [msp] GetLocalMSP -> DEBU b3d Returning existing local MSP -2018-01-04 01:50:58.595 UTC [msp] GetDefaultSigningIdentity -> DEBU b3e Obtaining default signing identity -2018-01-04 01:50:58.595 UTC [msp/identity] Sign -> DEBU b3f Sign: plaintext: 0AFA050A0A4F7264657265724D535012...284AAF4774C4BD1E0A77CF3E5FD59238 -2018-01-04 01:50:58.595 UTC [msp/identity] Sign -> DEBU b40 Sign: digest: B3281C87809F31A8FF352BFADA695BF01F46006E5A9539354EDB3E67739F72D4 -2018-01-04 01:50:58.596 UTC [orderer/multichain] addLastConfigSignature -> DEBU b41 [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 -2018-01-04 01:50:58.596 UTC [msp] GetLocalMSP -> DEBU b42 Returning existing local MSP -2018-01-04 01:50:58.596 UTC [msp] GetDefaultSigningIdentity -> DEBU b43 Obtaining default signing identity -2018-01-04 01:50:58.596 UTC [orderer/multichain] addLastConfigSignature -> DEBU b44 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -2018-01-04 01:50:58.596 UTC [msp] GetLocalMSP -> DEBU b45 Returning existing local MSP -2018-01-04 01:50:58.596 UTC [msp] GetDefaultSigningIdentity -> DEBU b46 Obtaining default signing identity -2018-01-04 01:50:58.596 UTC [msp/identity] Sign -> DEBU b47 Sign: plaintext: 08010AFA050A0A4F7264657265724D53...284AAF4774C4BD1E0A77CF3E5FD59238 -2018-01-04 01:50:58.596 UTC [msp/identity] Sign -> DEBU b48 Sign: digest: E40621421E098FA0F42A05805BDA580B3B53D5BB26C436CE3448DFE12BDE68AD -2018-01-04 01:50:58.599 UTC [fsblkstorage] indexBlock -> DEBU b49 Indexing block [blockNum=1, blockHash=[]byte{0x54, 0xbe, 0xd6, 0x3f, 0x54, 0x86, 0x6a, 0x3b, 0xfd, 0x9a, 0xdc, 0xb9, 0xfc, 0x15, 0x9e, 0x26, 0x4, 0x89, 0xff, 0xaa, 0x1a, 0x85, 0x5a, 0x81, 0x49, 0x6b, 0x26, 0x91, 0xff, 0x54, 0x5c, 0xb5} txOffsets= +2018-01-14 11:45:34.283 UTC [msp] Validate -> DEBU aef MSP Org2MSP validating identity +2018-01-14 11:45:34.283 UTC [msp] Setup -> DEBU af0 Setting up the MSP manager (3 msps) +2018-01-14 11:45:34.283 UTC [msp] Setup -> DEBU af1 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af2 Returning policy Admins for evaluation +2018-01-14 11:45:34.283 UTC [policies] CommitProposals -> DEBU af3 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af4 Returning policy Readers for evaluation +2018-01-14 11:45:34.283 UTC [policies] CommitProposals -> DEBU af5 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af6 Returning policy Writers for evaluation +2018-01-14 11:45:34.283 UTC [policies] CommitProposals -> DEBU af7 In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af8 Returning policy Writers for evaluation +2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU af9 Returning policy Admins for evaluation +2018-01-14 11:45:34.283 UTC [policies] GetPolicy -> DEBU afa Returning policy Writers for evaluation +2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU afb Returning policy Readers for evaluation +2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU afc Returning policy Admins for evaluation +2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU afd In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU afe Returning policy Readers for evaluation +2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU aff In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b00 Returning policy Writers for evaluation +2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU b01 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b02 Returning policy Readers for evaluation +2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU b03 In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b04 Returning policy Writers for evaluation +2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU b05 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b06 Returning policy Admins for evaluation +2018-01-14 11:45:34.284 UTC [policies] CommitProposals -> DEBU b07 In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:34.284 UTC [policies] GetPolicy -> DEBU b08 Returning policy Writers for evaluation +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b09 Returning policy Writers for evaluation +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0a Returning policy Readers for evaluation +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0b Returning policy Readers for evaluation +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0c Returning policy Admins for evaluation +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0d Returning policy Admins for evaluation +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b0e Returning policy Writers for evaluation +2018-01-14 11:45:34.285 UTC [policies] CommitProposals -> DEBU b0f In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b10 Returning policy Admins for evaluation +2018-01-14 11:45:34.285 UTC [policies] CommitProposals -> DEBU b11 In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b12 Returning policy BlockValidation for evaluation +2018-01-14 11:45:34.285 UTC [policies] CommitProposals -> DEBU b13 In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:34.285 UTC [policies] GetPolicy -> DEBU b14 Returning policy Readers for evaluation +2018-01-14 11:45:34.285 UTC [policies] CommitProposals -> DEBU b15 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b16 Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b17 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b18 Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b19 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b1a Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b1b In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b1c Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b1d In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b1e Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b1f In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b20 Returning policy Writers for evaluation +2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b21 In commit adding relative sub-policy Application/Writers to Channel +2018-01-14 11:45:34.286 UTC [policies] GetPolicy -> DEBU b22 Returning policy Admins for evaluation +2018-01-14 11:45:34.286 UTC [policies] CommitProposals -> DEBU b23 In commit adding relative sub-policy Application/Admins to Channel +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b24 Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b25 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b26 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b27 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b28 Returning policy Readers for evaluation +2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b29 In commit adding relative sub-policy Application/Readers to Channel +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b2a Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b2b In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b2c Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:34.287 UTC [policies] CommitProposals -> DEBU b2d In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b2e Returning policy Readers for evaluation +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b2f Returning policy Readers for evaluation +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b30 Returning policy Writers for evaluation +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b31 Returning policy Writers for evaluation +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b32 Returning policy Admins for evaluation +2018-01-14 11:45:34.287 UTC [policies] GetPolicy -> DEBU b33 Returning policy Admins for evaluation +2018-01-14 11:45:34.288 UTC [policies] GetPolicy -> DEBU b34 Returning policy Readers for evaluation +2018-01-14 11:45:34.288 UTC [policies] CommitProposals -> DEBU b35 As expected, current configuration has policy '/Channel/Readers' +2018-01-14 11:45:34.288 UTC [policies] GetPolicy -> DEBU b36 Returning policy Writers for evaluation +2018-01-14 11:45:34.288 UTC [policies] CommitProposals -> DEBU b37 As expected, current configuration has policy '/Channel/Writers' +2018-01-14 11:45:34.288 UTC [policies] GetPolicy -> DEBU b38 Returning policy Application/Readers for evaluation +2018-01-14 11:45:34.288 UTC [policies] CommitProposals -> DEBU b39 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-14 11:45:34.288 UTC [policies] GetPolicy -> DEBU b3a Returning policy Application/Writers for evaluation +2018-01-14 11:45:34.288 UTC [policies] CommitProposals -> DEBU b3b As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-14 11:45:34.289 UTC [policies] GetPolicy -> DEBU b3c Returning policy Application/Admins for evaluation +2018-01-14 11:45:34.289 UTC [policies] CommitProposals -> DEBU b3d As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-14 11:45:34.289 UTC [policies] GetPolicy -> DEBU b3e Returning policy Orderer/BlockValidation for evaluation +2018-01-14 11:45:34.289 UTC [policies] CommitProposals -> DEBU b3f As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-14 11:45:34.289 UTC [orderer/multichain] addBlockSignature -> DEBU b40 &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:0 lastConfigSeq:1} +2018-01-14 11:45:34.289 UTC [orderer/multichain] addBlockSignature -> DEBU b41 &{} +2018-01-14 11:45:34.289 UTC [msp] GetLocalMSP -> DEBU b42 Returning existing local MSP +2018-01-14 11:45:34.289 UTC [msp] GetDefaultSigningIdentity -> DEBU b43 Obtaining default signing identity +2018-01-14 11:45:34.289 UTC [msp] GetLocalMSP -> DEBU b44 Returning existing local MSP +2018-01-14 11:45:34.290 UTC [msp] GetDefaultSigningIdentity -> DEBU b45 Obtaining default signing identity +2018-01-14 11:45:34.290 UTC [msp/identity] Sign -> DEBU b46 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...2F0B42865502B176A97F8174E1E4269F +2018-01-14 11:45:34.290 UTC [msp/identity] Sign -> DEBU b47 Sign: digest: 4FB9C3D1687667078E234C4FA515F1ACD2CEE447C9A9EC82CF7D40DB4A605342 +2018-01-14 11:45:34.290 UTC [orderer/multichain] addLastConfigSignature -> DEBU b48 [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfig from 0 to 1 +2018-01-14 11:45:34.290 UTC [msp] GetLocalMSP -> DEBU b49 Returning existing local MSP +2018-01-14 11:45:34.290 UTC [msp] GetDefaultSigningIdentity -> DEBU b4a Obtaining default signing identity +2018-01-14 11:45:34.290 UTC [orderer/multichain] addLastConfigSignature -> DEBU b4b [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +2018-01-14 11:45:34.290 UTC [msp] GetLocalMSP -> DEBU b4c Returning existing local MSP +2018-01-14 11:45:34.290 UTC [msp] GetDefaultSigningIdentity -> DEBU b4d Obtaining default signing identity +2018-01-14 11:45:34.291 UTC [msp/identity] Sign -> DEBU b4e Sign: plaintext: 08010AFA050A0A4F7264657265724D53...2F0B42865502B176A97F8174E1E4269F +2018-01-14 11:45:34.291 UTC [msp/identity] Sign -> DEBU b4f Sign: digest: C61EB8E6F547B4347069CF1834C24A6B1D98104C3A5855F912EA905145B0F0A6 +2018-01-14 11:45:34.294 UTC [fsblkstorage] indexBlock -> DEBU b50 Indexing block [blockNum=1, blockHash=[]byte{0x6b, 0x28, 0x9a, 0xc6, 0x29, 0x57, 0x67, 0x99, 0x80, 0xcd, 0x5a, 0xa4, 0xc6, 0x31, 0xbb, 0xad, 0x21, 0x5a, 0x5e, 0x1b, 0xfa, 0x80, 0xe7, 0x68, 0xf1, 0x60, 0x5b, 0xdd, 0x90, 0x2, 0x8c, 0xbd} txOffsets= txId= locPointer=offset=70, bytesLength=11913 ] -2018-01-04 01:50:58.599 UTC [fsblkstorage] updateCheckpoint -> DEBU b4a Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25665], isChainEmpty=[false], lastBlockNumber=[1] -2018-01-04 01:50:58.599 UTC [orderer/multichain] WriteBlock -> DEBU b4b [channel: businesschannel] Wrote block 1 -2018-01-04 01:51:00.671 UTC [orderer/main] Deliver -> DEBU b4c Starting new Deliver handler -2018-01-04 01:51:00.671 UTC [orderer/common/deliver] Handle -> DEBU b4d Starting new deliver loop -2018-01-04 01:51:00.671 UTC [orderer/common/deliver] Handle -> DEBU b4e Attempting to read seek info message -2018-01-04 01:51:00.680 UTC [orderer/main] Broadcast -> DEBU b4f Starting new Broadcast handler -2018-01-04 01:51:00.681 UTC [orderer/common/broadcast] Handle -> DEBU b50 Starting new broadcast loop -2018-01-04 01:51:00.681 UTC [orderer/common/broadcast] Handle -> DEBU b51 Preprocessing CONFIG_UPDATE -2018-01-04 01:51:00.681 UTC [orderer/configupdate] Process -> DEBU b52 Processing channel reconfiguration request for channel businesschannel -2018-01-04 01:51:00.682 UTC [common/configtx] addToMap -> DEBU b53 Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.682 UTC [common/configtx] addToMap -> DEBU b54 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.682 UTC [common/configtx] addToMap -> DEBU b55 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.682 UTC [common/configtx] addToMap -> DEBU b56 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b57 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b58 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b59 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b5a Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.683 UTC [common/configtx] addToMap -> DEBU b5b Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.684 UTC [common/configtx] addToMap -> DEBU b5c Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.684 UTC [common/configtx] addToMap -> DEBU b5d Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-04 01:51:00.684 UTC [common/configtx] addToMap -> DEBU b5e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.685 UTC [common/configtx] addToMap -> DEBU b5f Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.685 UTC [common/configtx] addToMap -> DEBU b60 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.685 UTC [common/configtx] addToMap -> DEBU b61 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.686 UTC [policies] GetPolicy -> DEBU b62 Returning policy Admins for evaluation -2018-01-04 01:51:00.686 UTC [cauthdsl] func1 -> DEBU b63 0xc4200265e8 gate 1515030660686417200 evaluation starts -2018-01-04 01:51:00.686 UTC [cauthdsl] func2 -> DEBU b64 0xc4200265e8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.686 UTC [cauthdsl] func2 -> DEBU b65 0xc4200265e8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.687 UTC [msp/identity] newIdentity -> DEBU b66 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:34.294 UTC [fsblkstorage] updateCheckpoint -> DEBU b51 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25666], isChainEmpty=[false], lastBlockNumber=[1] +2018-01-14 11:45:34.295 UTC [orderer/multichain] WriteBlock -> DEBU b52 [channel: businesschannel] Wrote block 1 +2018-01-14 11:45:36.321 UTC [orderer/main] Deliver -> DEBU b53 Starting new Deliver handler +2018-01-14 11:45:36.321 UTC [orderer/common/deliver] Handle -> DEBU b54 Starting new deliver loop +2018-01-14 11:45:36.322 UTC [orderer/common/deliver] Handle -> DEBU b55 Attempting to read seek info message +2018-01-14 11:45:36.331 UTC [orderer/main] Broadcast -> DEBU b56 Starting new Broadcast handler +2018-01-14 11:45:36.331 UTC [orderer/common/broadcast] Handle -> DEBU b57 Starting new broadcast loop +2018-01-14 11:45:36.332 UTC [orderer/common/broadcast] Handle -> DEBU b58 Preprocessing CONFIG_UPDATE +2018-01-14 11:45:36.332 UTC [orderer/configupdate] Process -> DEBU b59 Processing channel reconfiguration request for channel businesschannel +2018-01-14 11:45:36.332 UTC [common/configtx] addToMap -> DEBU b5a Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5b Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5c Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5d Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5e Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b5f Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b60 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b61 Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b62 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b63 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b64 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-14 11:45:36.333 UTC [common/configtx] addToMap -> DEBU b65 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.334 UTC [common/configtx] addToMap -> DEBU b66 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.334 UTC [common/configtx] addToMap -> DEBU b67 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.334 UTC [common/configtx] addToMap -> DEBU b68 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.334 UTC [policies] GetPolicy -> DEBU b69 Returning policy Admins for evaluation +2018-01-14 11:45:36.334 UTC [cauthdsl] func1 -> DEBU b6a 0xc4200262a0 gate 1515930336334548364 evaluation starts +2018-01-14 11:45:36.334 UTC [cauthdsl] func2 -> DEBU b6b 0xc4200262a0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:36.334 UTC [cauthdsl] func2 -> DEBU b6c 0xc4200262a0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:36.335 UTC [msp/identity] newIdentity -> DEBU b6d Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5134,179 +5154,87 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.688 UTC [msp] SatisfiesPrincipal -> DEBU b67 Checking if identity satisfies ADMIN role for Org2MSP -2018-01-04 01:51:00.688 UTC [cauthdsl] func2 -> DEBU b68 0xc4200265e8 principal matched by identity 0 -2018-01-04 01:51:00.688 UTC [msp/identity] Verify -> DEBU b69 Verify: digest = 00000000 1c d5 c2 9c 53 ce a3 c5 b0 ea 98 b7 91 2f f4 52 |....S......../.R| -00000010 f4 f1 8f d9 19 16 77 80 e2 3f 4a 04 63 da 0e ac |......w..?J.c...| -2018-01-04 01:51:00.688 UTC [msp/identity] Verify -> DEBU b6a Verify: sig = 00000000 30 45 02 21 00 ef b8 fb 6a 68 3f bd df 70 a8 37 |0E.!....jh?..p.7| -00000010 17 7b dd e8 51 ed 3d 2d 06 74 bd 70 0e d2 7e 68 |.{..Q.=-.t.p..~h| -00000020 42 d3 e3 80 52 02 20 5e 4b 05 5a 4c d5 0a 42 f8 |B...R. ^K.ZL..B.| -00000030 24 c5 7f 63 f6 32 59 39 92 5f 3f a6 9b 37 fb 4d |$..c.2Y9._?..7.M| -00000040 06 fd fe de 97 ae 1e |.......| -2018-01-04 01:51:00.689 UTC [cauthdsl] func2 -> DEBU b6b 0xc4200265e8 principal evaluation succeeds for identity 0 -2018-01-04 01:51:00.689 UTC [cauthdsl] func1 -> DEBU b6c 0xc4200265e8 gate 1515030660686417200 evaluation succeeds -2018-01-04 01:51:00.690 UTC [common/configtx] recurseConfigMap -> DEBU b6d Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.690 UTC [common/configtx] recurseConfigMap -> DEBU b6e Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.690 UTC [common/configtx] recurseConfigMap -> DEBU b6f Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.691 UTC [common/configtx] recurseConfigMap -> DEBU b70 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.691 UTC [common/configtx] recurseConfigMap -> DEBU b71 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:51:00.691 UTC [common/configtx] recurseConfigMap -> DEBU b72 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.691 UTC [common/configtx] recurseConfigMap -> DEBU b73 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b74 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b75 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b76 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b77 Setting policy for key Readers to -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b78 Setting policy for key Writers to -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b79 Setting policy for key Admins to -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b7a Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b7b Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.692 UTC [common/configtx] recurseConfigMap -> DEBU b7c Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.693 UTC [common/configtx] recurseConfigMap -> DEBU b7d Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.693 UTC [common/configtx] recurseConfigMap -> DEBU b7e Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.693 UTC [common/configtx] recurseConfigMap -> DEBU b7f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.693 UTC [common/configtx] processConfig -> DEBU b80 Beginning new config for channel businesschannel -2018-01-04 01:51:00.693 UTC [common/config] NewStandardValues -> DEBU b81 Initializing protos for *config.ChannelProtos -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b82 Processing field: HashingAlgorithm -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b83 Processing field: BlockDataHashingStructure -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b84 Processing field: OrdererAddresses -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b85 Processing field: Consortium -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b86 Proposed new policy Writers for Channel -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b87 Proposed new policy Admins for Channel -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b88 Proposed new policy Readers for Channel -2018-01-04 01:51:00.693 UTC [common/config] NewStandardValues -> DEBU b89 Initializing protos for *config.OrdererProtos -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8a Processing field: ConsensusType -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8b Processing field: BatchSize -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8c Processing field: BatchTimeout -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8d Processing field: KafkaBrokers -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b8e Processing field: ChannelRestrictions -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b8f Proposed new policy Admins for Orderer -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b90 Proposed new policy BlockValidation for Orderer -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b91 Proposed new policy Readers for Orderer -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b92 Proposed new policy Writers for Orderer -2018-01-04 01:51:00.693 UTC [common/config] NewStandardValues -> DEBU b93 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.693 UTC [common/config] initializeProtosStruct -> DEBU b94 Processing field: MSP -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b95 Proposed new policy Readers for OrdererOrg -2018-01-04 01:51:00.693 UTC [policies] ProposePolicy -> DEBU b96 Proposed new policy Writers for OrdererOrg -2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU b97 Proposed new policy Admins for OrdererOrg -2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU b98 Initializing protos for *struct {} -2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU b99 Proposed new policy Writers for Application -2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU b9a Proposed new policy Readers for Application -2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU b9b Proposed new policy Admins for Application -2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU b9c Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU b9d Processing field: MSP -2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU b9e Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU b9f Processing field: AnchorPeers -2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU ba0 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU ba1 Processing field: MSP -2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU ba2 Proposed new policy Readers for Org1MSP -2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU ba3 Proposed new policy Writers for Org1MSP -2018-01-04 01:51:00.694 UTC [policies] ProposePolicy -> DEBU ba4 Proposed new policy Admins for Org1MSP -2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU ba5 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU ba6 Processing field: MSP -2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU ba7 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:51:00.694 UTC [common/config] initializeProtosStruct -> DEBU ba8 Processing field: AnchorPeers -2018-01-04 01:51:00.694 UTC [common/config] NewStandardValues -> DEBU ba9 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.695 UTC [common/config] initializeProtosStruct -> DEBU baa Processing field: MSP -2018-01-04 01:51:00.695 UTC [policies] ProposePolicy -> DEBU bab Proposed new policy Admins for Org2MSP -2018-01-04 01:51:00.695 UTC [policies] ProposePolicy -> DEBU bac Proposed new policy Readers for Org2MSP -2018-01-04 01:51:00.695 UTC [policies] ProposePolicy -> DEBU bad Proposed new policy Writers for Org2MSP -2018-01-04 01:51:00.695 UTC [common/config] validateMSP -> DEBU bae Setting up MSP for org OrdererOrg -2018-01-04 01:51:00.695 UTC [msp] NewBccspMsp -> DEBU baf Creating BCCSP-based MSP instance -2018-01-04 01:51:00.695 UTC [msp] Setup -> DEBU bb0 Setting up MSP instance OrdererMSP -2018-01-04 01:51:00.695 UTC [msp/identity] newIdentity -> DEBU bb1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:51:00.696 UTC [msp/identity] newIdentity -> DEBU bb2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:51:00.696 UTC [msp/identity] newIdentity -> DEBU bb3 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:51:00.697 UTC [msp] Validate -> DEBU bb4 MSP OrdererMSP validating identity -2018-01-04 01:51:00.697 UTC [common/config] Validate -> DEBU bb5 Anchor peers for org Org1MSP are anchor_peers: -2018-01-04 01:51:00.697 UTC [common/config] validateMSP -> DEBU bb6 Setting up MSP for org Org1MSP -2018-01-04 01:51:00.697 UTC [msp] NewBccspMsp -> DEBU bb7 Creating BCCSP-based MSP instance -2018-01-04 01:51:00.697 UTC [msp] Setup -> DEBU bb8 Setting up MSP instance Org1MSP -2018-01-04 01:51:00.697 UTC [msp/identity] newIdentity -> DEBU bb9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf -db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx -JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi -/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ -H7n8z1pj5w== ------END CERTIFICATE----- -2018-01-04 01:51:00.698 UTC [msp/identity] newIdentity -> DEBU bba Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:51:00.698 UTC [msp/identity] newIdentity -> DEBU bbb Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB -xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i -ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY -gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ -xHTBvxfK6mAzmUitFmY= ------END CERTIFICATE----- -2018-01-04 01:51:00.699 UTC [msp] Validate -> DEBU bbc MSP Org1MSP validating identity -2018-01-04 01:51:00.699 UTC [common/config] Validate -> DEBU bbd Anchor peers for org Org2MSP are anchor_peers: -2018-01-04 01:51:00.699 UTC [common/config] validateMSP -> DEBU bbe Setting up MSP for org Org2MSP -2018-01-04 01:51:00.699 UTC [msp] NewBccspMsp -> DEBU bbf Creating BCCSP-based MSP instance -2018-01-04 01:51:00.699 UTC [msp] Setup -> DEBU bc0 Setting up MSP instance Org2MSP -2018-01-04 01:51:00.700 UTC [msp/identity] newIdentity -> DEBU bc1 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.335 UTC [msp] SatisfiesPrincipal -> DEBU b6e Checking if identity satisfies ADMIN role for Org2MSP +2018-01-14 11:45:36.335 UTC [cauthdsl] func2 -> DEBU b6f 0xc4200262a0 principal matched by identity 0 +2018-01-14 11:45:36.335 UTC [msp/identity] Verify -> DEBU b70 Verify: digest = 00000000 c3 7e 13 97 11 8f 8d ae 6e 77 14 93 5d 5e 84 01 |.~......nw..]^..| +00000010 d3 b2 a7 73 06 2c 87 19 e1 94 ff fc b6 28 68 18 |...s.,.......(h.| +2018-01-14 11:45:36.335 UTC [msp/identity] Verify -> DEBU b71 Verify: sig = 00000000 30 45 02 21 00 81 98 e7 87 77 c4 bf 8d d8 66 34 |0E.!.....w....f4| +00000010 6c 42 b3 33 db 11 f7 2f e2 9f f5 10 40 56 ca 81 |lB.3.../....@V..| +00000020 ec 0a bb 1b 7e 02 20 40 79 fb 1d 28 3c cf fe b1 |....~. @y..(<...| +00000030 15 07 43 0f ef ce a1 0d 09 0d 45 ce 25 b9 b1 12 |..C.......E.%...| +00000040 f2 28 fe a6 78 9f 80 |.(..x..| +2018-01-14 11:45:36.336 UTC [cauthdsl] func2 -> DEBU b72 0xc4200262a0 principal evaluation succeeds for identity 0 +2018-01-14 11:45:36.336 UTC [cauthdsl] func1 -> DEBU b73 0xc4200262a0 gate 1515930336334548364 evaluation succeeds +2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b74 Setting policy for key Readers to +2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b75 Setting policy for key Writers to +2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b76 Setting policy for key Admins to +2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b77 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b78 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.336 UTC [common/configtx] recurseConfigMap -> DEBU b79 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7a Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7b Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7c Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7d Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7e Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b7f Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b80 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b81 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b82 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.337 UTC [common/configtx] recurseConfigMap -> DEBU b83 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:36.338 UTC [common/configtx] recurseConfigMap -> DEBU b84 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.338 UTC [common/configtx] recurseConfigMap -> DEBU b85 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.338 UTC [common/configtx] recurseConfigMap -> DEBU b86 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.338 UTC [common/configtx] processConfig -> DEBU b87 Beginning new config for channel businesschannel +2018-01-14 11:45:36.338 UTC [common/config] NewStandardValues -> DEBU b88 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:36.338 UTC [common/config] initializeProtosStruct -> DEBU b89 Processing field: HashingAlgorithm +2018-01-14 11:45:36.338 UTC [common/config] initializeProtosStruct -> DEBU b8a Processing field: BlockDataHashingStructure +2018-01-14 11:45:36.338 UTC [common/config] initializeProtosStruct -> DEBU b8b Processing field: OrdererAddresses +2018-01-14 11:45:36.338 UTC [common/config] initializeProtosStruct -> DEBU b8c Processing field: Consortium +2018-01-14 11:45:36.338 UTC [policies] ProposePolicy -> DEBU b8d Proposed new policy Admins for Channel +2018-01-14 11:45:36.338 UTC [policies] ProposePolicy -> DEBU b8e Proposed new policy Readers for Channel +2018-01-14 11:45:36.338 UTC [policies] ProposePolicy -> DEBU b8f Proposed new policy Writers for Channel +2018-01-14 11:45:36.338 UTC [common/config] NewStandardValues -> DEBU b90 Initializing protos for *struct {} +2018-01-14 11:45:36.338 UTC [policies] ProposePolicy -> DEBU b91 Proposed new policy Writers for Application +2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b92 Proposed new policy Readers for Application +2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b93 Proposed new policy Admins for Application +2018-01-14 11:45:36.339 UTC [common/config] NewStandardValues -> DEBU b94 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.339 UTC [common/config] initializeProtosStruct -> DEBU b95 Processing field: MSP +2018-01-14 11:45:36.339 UTC [common/config] NewStandardValues -> DEBU b96 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:36.339 UTC [common/config] initializeProtosStruct -> DEBU b97 Processing field: AnchorPeers +2018-01-14 11:45:36.339 UTC [common/config] NewStandardValues -> DEBU b98 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.339 UTC [common/config] initializeProtosStruct -> DEBU b99 Processing field: MSP +2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b9a Proposed new policy Readers for Org2MSP +2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b9b Proposed new policy Writers for Org2MSP +2018-01-14 11:45:36.339 UTC [policies] ProposePolicy -> DEBU b9c Proposed new policy Admins for Org2MSP +2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU b9d Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU b9e Processing field: MSP +2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU b9f Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba0 Processing field: AnchorPeers +2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU ba1 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba2 Processing field: MSP +2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU ba3 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU ba4 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU ba5 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU ba6 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba7 Processing field: ConsensusType +2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba8 Processing field: BatchSize +2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU ba9 Processing field: BatchTimeout +2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU baa Processing field: KafkaBrokers +2018-01-14 11:45:36.340 UTC [common/config] initializeProtosStruct -> DEBU bab Processing field: ChannelRestrictions +2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU bac Proposed new policy Admins for Orderer +2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU bad Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU bae Proposed new policy Readers for Orderer +2018-01-14 11:45:36.340 UTC [policies] ProposePolicy -> DEBU baf Proposed new policy Writers for Orderer +2018-01-14 11:45:36.340 UTC [common/config] NewStandardValues -> DEBU bb0 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.341 UTC [common/config] initializeProtosStruct -> DEBU bb1 Processing field: MSP +2018-01-14 11:45:36.341 UTC [policies] ProposePolicy -> DEBU bb2 Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:36.341 UTC [policies] ProposePolicy -> DEBU bb3 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:36.341 UTC [policies] ProposePolicy -> DEBU bb4 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:36.341 UTC [common/config] Validate -> DEBU bb5 Anchor peers for org Org2MSP are anchor_peers: +2018-01-14 11:45:36.341 UTC [common/config] validateMSP -> DEBU bb6 Setting up MSP for org Org2MSP +2018-01-14 11:45:36.341 UTC [msp] NewBccspMsp -> DEBU bb7 Creating BCCSP-based MSP instance +2018-01-14 11:45:36.341 UTC [msp] Setup -> DEBU bb8 Setting up MSP instance Org2MSP +2018-01-14 11:45:36.341 UTC [msp/identity] newIdentity -> DEBU bb9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -5321,7 +5249,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:51:00.700 UTC [msp/identity] newIdentity -> DEBU bc2 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.342 UTC [msp/identity] newIdentity -> DEBU bba Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5335,7 +5263,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.700 UTC [msp/identity] newIdentity -> DEBU bc3 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.342 UTC [msp/identity] newIdentity -> DEBU bbb Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5349,242 +5277,12 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.701 UTC [msp] Validate -> DEBU bc4 MSP Org2MSP validating identity -2018-01-04 01:51:00.701 UTC [msp] Setup -> DEBU bc5 Setting up the MSP manager (3 msps) -2018-01-04 01:51:00.701 UTC [msp] Setup -> DEBU bc6 MSP manager setup complete, setup 3 msps -2018-01-04 01:51:00.701 UTC [msp] GetLocalMSP -> DEBU bc7 Returning existing local MSP -2018-01-04 01:51:00.701 UTC [msp] GetDefaultSigningIdentity -> DEBU bc8 Obtaining default signing identity -2018-01-04 01:51:00.703 UTC [msp] GetLocalMSP -> DEBU bc9 Returning existing local MSP -2018-01-04 01:51:00.703 UTC [msp] GetDefaultSigningIdentity -> DEBU bca Obtaining default signing identity -2018-01-04 01:51:00.703 UTC [msp/identity] Sign -> DEBU bcb Sign: plaintext: 0AB7060A1B08011A06088491B6D20522...4071163ABB1BCAC996E5B48473BFDAFD -2018-01-04 01:51:00.703 UTC [msp/identity] Sign -> DEBU bcc Sign: digest: BC484172328D861C38696F5619BC82AE965BC26263A192B22F2E4E02E77EEFD3 -2018-01-04 01:51:00.703 UTC [orderer/common/broadcast] Handle -> DEBU bcd [channel: businesschannel] Broadcast is filtering message of type CONFIG -2018-01-04 01:51:00.703 UTC [policies] GetPolicy -> DEBU bce Returning policy Writers for evaluation -2018-01-04 01:51:00.703 UTC [cauthdsl] func1 -> DEBU bcf 0xc4200263c8 gate 1515030660703875100 evaluation starts -2018-01-04 01:51:00.703 UTC [cauthdsl] func2 -> DEBU bd0 0xc4200263c8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.703 UTC [cauthdsl] func2 -> DEBU bd1 0xc4200263c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.704 UTC [msp/identity] newIdentity -> DEBU bd2 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bd3 0xc4200263c8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bd4 0xc4200263c8 principal evaluation fails -2018-01-04 01:51:00.704 UTC [cauthdsl] func1 -> DEBU bd5 0xc4200263c8 gate 1515030660703875100 evaluation fails -2018-01-04 01:51:00.704 UTC [cauthdsl] func1 -> DEBU bd6 0xc4200263d8 gate 1515030660704317000 evaluation starts -2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bd7 0xc4200263d8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bd8 0xc4200263d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.704 UTC [msp/identity] newIdentity -> DEBU bd9 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bda 0xc4200263d8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bdb 0xc4200263d8 principal evaluation fails -2018-01-04 01:51:00.704 UTC [cauthdsl] func1 -> DEBU bdc 0xc4200263d8 gate 1515030660704317000 evaluation fails -2018-01-04 01:51:00.704 UTC [cauthdsl] func1 -> DEBU bdd 0xc4200263e8 gate 1515030660704715400 evaluation starts -2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bde 0xc4200263e8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.704 UTC [cauthdsl] func2 -> DEBU bdf 0xc4200263e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.704 UTC [msp/identity] newIdentity -> DEBU be0 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-04 01:51:00.705 UTC [msp] SatisfiesPrincipal -> DEBU be1 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-04 01:51:00.705 UTC [msp] Validate -> DEBU be2 MSP OrdererMSP validating identity -2018-01-04 01:51:00.705 UTC [cauthdsl] func2 -> DEBU be3 0xc4200263e8 principal matched by identity 0 -2018-01-04 01:51:00.705 UTC [msp/identity] Verify -> DEBU be4 Verify: digest = 00000000 bc 48 41 72 32 8d 86 1c 38 69 6f 56 19 bc 82 ae |.HAr2...8ioV....| -00000010 96 5b c2 62 63 a1 92 b2 2f 2e 4e 02 e7 7e ef d3 |.[.bc.../.N..~..| -2018-01-04 01:51:00.705 UTC [msp/identity] Verify -> DEBU be5 Verify: sig = 00000000 30 44 02 20 65 58 3b cc e1 1f 70 6b 5f 90 21 5c |0D. eX;...pk_.!\| -00000010 fe 29 9c 66 68 fb 55 d3 bc 2d be ea a9 cc d2 7a |.).fh.U..-.....z| -00000020 d9 99 e0 eb 02 20 1b e4 b7 b3 2b b8 38 c7 e4 c8 |..... ....+.8...| -00000030 c1 22 a6 0c ff 14 20 4c 19 d2 3f 57 10 30 81 ab |.".... L..?W.0..| -00000040 e2 1f 25 98 19 53 |..%..S| -2018-01-04 01:51:00.705 UTC [cauthdsl] func2 -> DEBU be6 0xc4200263e8 principal evaluation succeeds for identity 0 -2018-01-04 01:51:00.705 UTC [cauthdsl] func1 -> DEBU be7 0xc4200263e8 gate 1515030660704715400 evaluation succeeds -2018-01-04 01:51:00.705 UTC [orderer/common/sigfilter] Apply -> DEBU be8 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916460 1 [0xc42010eae8 0xc42010eb30]}) %!s(*policies.implicitMetaPolicy=&{0xc420b97e80 1 [0xc42010e9e8]})]} -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU be9 Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bea Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU beb Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bec Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bed Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bee Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bef Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf0 Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf1 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf2 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf3 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf4 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf5 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf6 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.705 UTC [common/configtx] addToMap -> DEBU bf7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.706 UTC [policies] GetPolicy -> DEBU bf8 Returning policy Admins for evaluation -2018-01-04 01:51:00.706 UTC [cauthdsl] func1 -> DEBU bf9 0xc4200269f8 gate 1515030660706061400 evaluation starts -2018-01-04 01:51:00.706 UTC [cauthdsl] func2 -> DEBU bfa 0xc4200269f8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.706 UTC [cauthdsl] func2 -> DEBU bfb 0xc4200269f8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.706 UTC [msp/identity] newIdentity -> DEBU bfc Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:51:00.706 UTC [msp] SatisfiesPrincipal -> DEBU bfd Checking if identity satisfies ADMIN role for Org2MSP -2018-01-04 01:51:00.706 UTC [cauthdsl] func2 -> DEBU bfe 0xc4200269f8 principal matched by identity 0 -2018-01-04 01:51:00.706 UTC [msp/identity] Verify -> DEBU bff Verify: digest = 00000000 1c d5 c2 9c 53 ce a3 c5 b0 ea 98 b7 91 2f f4 52 |....S......../.R| -00000010 f4 f1 8f d9 19 16 77 80 e2 3f 4a 04 63 da 0e ac |......w..?J.c...| -2018-01-04 01:51:00.706 UTC [msp/identity] Verify -> DEBU c00 Verify: sig = 00000000 30 45 02 21 00 ef b8 fb 6a 68 3f bd df 70 a8 37 |0E.!....jh?..p.7| -00000010 17 7b dd e8 51 ed 3d 2d 06 74 bd 70 0e d2 7e 68 |.{..Q.=-.t.p..~h| -00000020 42 d3 e3 80 52 02 20 5e 4b 05 5a 4c d5 0a 42 f8 |B...R. ^K.ZL..B.| -00000030 24 c5 7f 63 f6 32 59 39 92 5f 3f a6 9b 37 fb 4d |$..c.2Y9._?..7.M| -00000040 06 fd fe de 97 ae 1e |.......| -2018-01-04 01:51:00.707 UTC [cauthdsl] func2 -> DEBU c01 0xc4200269f8 principal evaluation succeeds for identity 0 -2018-01-04 01:51:00.707 UTC [cauthdsl] func1 -> DEBU c02 0xc4200269f8 gate 1515030660706061400 evaluation succeeds -2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c03 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c04 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c05 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c06 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.707 UTC [common/configtx] recurseConfigMap -> DEBU c07 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c08 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c09 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0a Setting policy for key Readers to -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0b Setting policy for key Writers to -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0c Setting policy for key Admins to -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0d Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0e Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c0f Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c10 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.708 UTC [common/configtx] recurseConfigMap -> DEBU c11 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.709 UTC [common/configtx] recurseConfigMap -> DEBU c12 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.709 UTC [common/configtx] recurseConfigMap -> DEBU c13 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.709 UTC [common/configtx] recurseConfigMap -> DEBU c14 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.709 UTC [common/configtx] recurseConfigMap -> DEBU c15 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.709 UTC [common/configtx] processConfig -> DEBU c16 Beginning new config for channel businesschannel -2018-01-04 01:51:00.709 UTC [common/config] NewStandardValues -> DEBU c17 Initializing protos for *config.ChannelProtos -2018-01-04 01:51:00.709 UTC [common/config] initializeProtosStruct -> DEBU c18 Processing field: HashingAlgorithm -2018-01-04 01:51:00.709 UTC [common/config] initializeProtosStruct -> DEBU c19 Processing field: BlockDataHashingStructure -2018-01-04 01:51:00.709 UTC [common/config] initializeProtosStruct -> DEBU c1a Processing field: OrdererAddresses -2018-01-04 01:51:00.709 UTC [common/config] initializeProtosStruct -> DEBU c1b Processing field: Consortium -2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c1c Proposed new policy Writers for Channel -2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c1d Proposed new policy Admins for Channel -2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c1e Proposed new policy Readers for Channel -2018-01-04 01:51:00.710 UTC [common/config] NewStandardValues -> DEBU c1f Initializing protos for *config.OrdererProtos -2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c20 Processing field: ConsensusType -2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c21 Processing field: BatchSize -2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c22 Processing field: BatchTimeout -2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c23 Processing field: KafkaBrokers -2018-01-04 01:51:00.710 UTC [common/config] initializeProtosStruct -> DEBU c24 Processing field: ChannelRestrictions -2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c25 Proposed new policy Admins for Orderer -2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c26 Proposed new policy BlockValidation for Orderer -2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c27 Proposed new policy Readers for Orderer -2018-01-04 01:51:00.710 UTC [policies] ProposePolicy -> DEBU c28 Proposed new policy Writers for Orderer -2018-01-04 01:51:00.711 UTC [common/config] NewStandardValues -> DEBU c29 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.711 UTC [common/config] initializeProtosStruct -> DEBU c2a Processing field: MSP -2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c2b Proposed new policy Admins for OrdererOrg -2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c2c Proposed new policy Readers for OrdererOrg -2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c2d Proposed new policy Writers for OrdererOrg -2018-01-04 01:51:00.711 UTC [common/config] NewStandardValues -> DEBU c2e Initializing protos for *struct {} -2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c2f Proposed new policy Admins for Application -2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c30 Proposed new policy Writers for Application -2018-01-04 01:51:00.711 UTC [policies] ProposePolicy -> DEBU c31 Proposed new policy Readers for Application -2018-01-04 01:51:00.711 UTC [common/config] NewStandardValues -> DEBU c32 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.711 UTC [common/config] initializeProtosStruct -> DEBU c33 Processing field: MSP -2018-01-04 01:51:00.711 UTC [common/config] NewStandardValues -> DEBU c34 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:51:00.711 UTC [common/config] initializeProtosStruct -> DEBU c35 Processing field: AnchorPeers -2018-01-04 01:51:00.712 UTC [common/config] NewStandardValues -> DEBU c36 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.712 UTC [common/config] initializeProtosStruct -> DEBU c37 Processing field: MSP -2018-01-04 01:51:00.712 UTC [policies] ProposePolicy -> DEBU c38 Proposed new policy Readers for Org1MSP -2018-01-04 01:51:00.712 UTC [policies] ProposePolicy -> DEBU c39 Proposed new policy Writers for Org1MSP -2018-01-04 01:51:00.712 UTC [policies] ProposePolicy -> DEBU c3a Proposed new policy Admins for Org1MSP -2018-01-04 01:51:00.712 UTC [common/config] NewStandardValues -> DEBU c3b Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.712 UTC [common/config] initializeProtosStruct -> DEBU c3c Processing field: MSP -2018-01-04 01:51:00.712 UTC [common/config] NewStandardValues -> DEBU c3d Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:51:00.712 UTC [common/config] initializeProtosStruct -> DEBU c3e Processing field: AnchorPeers -2018-01-04 01:51:00.712 UTC [common/config] NewStandardValues -> DEBU c3f Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.712 UTC [common/config] initializeProtosStruct -> DEBU c40 Processing field: MSP -2018-01-04 01:51:00.712 UTC [policies] ProposePolicy -> DEBU c41 Proposed new policy Readers for Org2MSP -2018-01-04 01:51:00.713 UTC [policies] ProposePolicy -> DEBU c42 Proposed new policy Writers for Org2MSP -2018-01-04 01:51:00.713 UTC [policies] ProposePolicy -> DEBU c43 Proposed new policy Admins for Org2MSP -2018-01-04 01:51:00.713 UTC [common/config] validateMSP -> DEBU c44 Setting up MSP for org OrdererOrg -2018-01-04 01:51:00.713 UTC [msp] NewBccspMsp -> DEBU c45 Creating BCCSP-based MSP instance -2018-01-04 01:51:00.713 UTC [msp] Setup -> DEBU c46 Setting up MSP instance OrdererMSP -2018-01-04 01:51:00.714 UTC [msp/identity] newIdentity -> DEBU c47 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:51:00.714 UTC [msp/identity] newIdentity -> DEBU c48 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:51:00.714 UTC [msp/identity] newIdentity -> DEBU c49 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:51:00.715 UTC [msp] Validate -> DEBU c4a MSP OrdererMSP validating identity -2018-01-04 01:51:00.715 UTC [common/config] Validate -> DEBU c4b Anchor peers for org Org1MSP are anchor_peers: -2018-01-04 01:51:00.715 UTC [common/config] validateMSP -> DEBU c4c Setting up MSP for org Org1MSP -2018-01-04 01:51:00.715 UTC [msp] NewBccspMsp -> DEBU c4d Creating BCCSP-based MSP instance -2018-01-04 01:51:00.715 UTC [msp] Setup -> DEBU c4e Setting up MSP instance Org1MSP -2018-01-04 01:51:00.716 UTC [msp/identity] newIdentity -> DEBU c4f Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.343 UTC [msp] Validate -> DEBU bbc MSP Org2MSP validating identity +2018-01-14 11:45:36.343 UTC [common/config] Validate -> DEBU bbd Anchor peers for org Org1MSP are anchor_peers: +2018-01-14 11:45:36.343 UTC [common/config] validateMSP -> DEBU bbe Setting up MSP for org Org1MSP +2018-01-14 11:45:36.343 UTC [msp] NewBccspMsp -> DEBU bbf Creating BCCSP-based MSP instance +2018-01-14 11:45:36.343 UTC [msp] Setup -> DEBU bc0 Setting up MSP instance Org1MSP +2018-01-14 11:45:36.343 UTC [msp/identity] newIdentity -> DEBU bc1 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5599,7 +5297,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:51:00.716 UTC [msp/identity] newIdentity -> DEBU c50 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.344 UTC [msp/identity] newIdentity -> DEBU bc2 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5613,7 +5311,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:51:00.717 UTC [msp/identity] newIdentity -> DEBU c51 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.349 UTC [msp/identity] newIdentity -> DEBU bc3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5627,12 +5325,204 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:51:00.717 UTC [msp] Validate -> DEBU c52 MSP Org1MSP validating identity -2018-01-04 01:51:00.718 UTC [common/config] Validate -> DEBU c53 Anchor peers for org Org2MSP are anchor_peers: -2018-01-04 01:51:00.718 UTC [common/config] validateMSP -> DEBU c54 Setting up MSP for org Org2MSP -2018-01-04 01:51:00.718 UTC [msp] NewBccspMsp -> DEBU c55 Creating BCCSP-based MSP instance -2018-01-04 01:51:00.718 UTC [msp] Setup -> DEBU c56 Setting up MSP instance Org2MSP -2018-01-04 01:51:00.718 UTC [msp/identity] newIdentity -> DEBU c57 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.351 UTC [msp] Validate -> DEBU bc4 MSP Org1MSP validating identity +2018-01-14 11:45:36.351 UTC [common/config] validateMSP -> DEBU bc5 Setting up MSP for org OrdererOrg +2018-01-14 11:45:36.351 UTC [msp] NewBccspMsp -> DEBU bc6 Creating BCCSP-based MSP instance +2018-01-14 11:45:36.351 UTC [msp] Setup -> DEBU bc7 Setting up MSP instance OrdererMSP +2018-01-14 11:45:36.352 UTC [msp/identity] newIdentity -> DEBU bc8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:36.352 UTC [msp/identity] newIdentity -> DEBU bc9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:36.352 UTC [msp/identity] newIdentity -> DEBU bca Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:36.353 UTC [msp] Validate -> DEBU bcb MSP OrdererMSP validating identity +2018-01-14 11:45:36.353 UTC [msp] Setup -> DEBU bcc Setting up the MSP manager (3 msps) +2018-01-14 11:45:36.353 UTC [msp] Setup -> DEBU bcd MSP manager setup complete, setup 3 msps +2018-01-14 11:45:36.353 UTC [msp] GetLocalMSP -> DEBU bce Returning existing local MSP +2018-01-14 11:45:36.353 UTC [msp] GetDefaultSigningIdentity -> DEBU bcf Obtaining default signing identity +2018-01-14 11:45:36.353 UTC [msp] GetLocalMSP -> DEBU bd0 Returning existing local MSP +2018-01-14 11:45:36.353 UTC [msp] GetDefaultSigningIdentity -> DEBU bd1 Obtaining default signing identity +2018-01-14 11:45:36.353 UTC [msp/identity] Sign -> DEBU bd2 Sign: plaintext: 0AB7060A1B08011A0608E085EDD20522...8A898DA2D6120AEBE0098A3614A0073A +2018-01-14 11:45:36.353 UTC [msp/identity] Sign -> DEBU bd3 Sign: digest: 8D147CC56C62AA570FA1F00B99D21C969E1EBCD409E5E4157F176059D4E79838 +2018-01-14 11:45:36.354 UTC [orderer/common/broadcast] Handle -> DEBU bd4 [channel: businesschannel] Broadcast is filtering message of type CONFIG +2018-01-14 11:45:36.354 UTC [policies] GetPolicy -> DEBU bd5 Returning policy Writers for evaluation +2018-01-14 11:45:36.354 UTC [cauthdsl] func1 -> DEBU bd6 0xc420026180 gate 1515930336354974264 evaluation starts +2018-01-14 11:45:36.355 UTC [cauthdsl] func2 -> DEBU bd7 0xc420026180 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:36.355 UTC [cauthdsl] func2 -> DEBU bd8 0xc420026180 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:36.355 UTC [msp/identity] newIdentity -> DEBU bd9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-14 11:45:36.355 UTC [msp] SatisfiesPrincipal -> DEBU bda Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:45:36.355 UTC [msp] Validate -> DEBU bdb MSP OrdererMSP validating identity +2018-01-14 11:45:36.355 UTC [cauthdsl] func2 -> DEBU bdc 0xc420026180 principal matched by identity 0 +2018-01-14 11:45:36.355 UTC [msp/identity] Verify -> DEBU bdd Verify: digest = 00000000 8d 14 7c c5 6c 62 aa 57 0f a1 f0 0b 99 d2 1c 96 |..|.lb.W........| +00000010 9e 1e bc d4 09 e5 e4 15 7f 17 60 59 d4 e7 98 38 |..........`Y...8| +2018-01-14 11:45:36.355 UTC [msp/identity] Verify -> DEBU bde Verify: sig = 00000000 30 45 02 21 00 91 24 4a 84 29 74 b4 ce cc 11 f5 |0E.!..$J.)t.....| +00000010 55 7d 89 6d cf 0c d0 53 cb 1f be 7b 51 08 bf c0 |U}.m...S...{Q...| +00000020 c6 18 d8 d5 50 02 20 14 f1 aa 1f de a4 bd 6a 58 |....P. .......jX| +00000030 ee 74 d2 f9 e9 a1 8d 1c 85 9c dc aa 1d f2 33 ef |.t............3.| +00000040 55 38 4f d7 55 1a 25 |U8O.U.%| +2018-01-14 11:45:36.355 UTC [cauthdsl] func2 -> DEBU bdf 0xc420026180 principal evaluation succeeds for identity 0 +2018-01-14 11:45:36.356 UTC [cauthdsl] func1 -> DEBU be0 0xc420026180 gate 1515930336354974264 evaluation succeeds +2018-01-14 11:45:36.356 UTC [orderer/common/sigfilter] Apply -> DEBU be1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b380a0 1 [0xc420150dd8]}) %!s(*policies.implicitMetaPolicy=&{0xc420b386a0 1 [0xc420150e70 0xc4201510e8]})]} +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be2 Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be3 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be4 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be5 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be6 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be8 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU be9 Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bea Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU beb Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bec Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bed Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bee Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bef Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.356 UTC [common/configtx] addToMap -> DEBU bf0 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.357 UTC [policies] GetPolicy -> DEBU bf1 Returning policy Admins for evaluation +2018-01-14 11:45:36.357 UTC [cauthdsl] func1 -> DEBU bf2 0xc420026980 gate 1515930336357197964 evaluation starts +2018-01-14 11:45:36.357 UTC [cauthdsl] func2 -> DEBU bf3 0xc420026980 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:36.357 UTC [cauthdsl] func2 -> DEBU bf4 0xc420026980 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:36.357 UTC [msp/identity] newIdentity -> DEBU bf5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:36.357 UTC [msp] SatisfiesPrincipal -> DEBU bf6 Checking if identity satisfies ADMIN role for Org2MSP +2018-01-14 11:45:36.357 UTC [cauthdsl] func2 -> DEBU bf7 0xc420026980 principal matched by identity 0 +2018-01-14 11:45:36.357 UTC [msp/identity] Verify -> DEBU bf8 Verify: digest = 00000000 c3 7e 13 97 11 8f 8d ae 6e 77 14 93 5d 5e 84 01 |.~......nw..]^..| +00000010 d3 b2 a7 73 06 2c 87 19 e1 94 ff fc b6 28 68 18 |...s.,.......(h.| +2018-01-14 11:45:36.357 UTC [msp/identity] Verify -> DEBU bf9 Verify: sig = 00000000 30 45 02 21 00 81 98 e7 87 77 c4 bf 8d d8 66 34 |0E.!.....w....f4| +00000010 6c 42 b3 33 db 11 f7 2f e2 9f f5 10 40 56 ca 81 |lB.3.../....@V..| +00000020 ec 0a bb 1b 7e 02 20 40 79 fb 1d 28 3c cf fe b1 |....~. @y..(<...| +00000030 15 07 43 0f ef ce a1 0d 09 0d 45 ce 25 b9 b1 12 |..C.......E.%...| +00000040 f2 28 fe a6 78 9f 80 |.(..x..| +2018-01-14 11:45:36.358 UTC [cauthdsl] func2 -> DEBU bfa 0xc420026980 principal evaluation succeeds for identity 0 +2018-01-14 11:45:36.358 UTC [cauthdsl] func1 -> DEBU bfb 0xc420026980 gate 1515930336357197964 evaluation succeeds +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU bfc Setting policy for key Admins to +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU bfd Setting policy for key Readers to +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU bfe Setting policy for key Writers to +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU bff Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c00 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c01 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c02 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c03 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c04 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c05 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c06 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c07 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c08 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c09 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.358 UTC [common/configtx] recurseConfigMap -> DEBU c0a Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.359 UTC [common/configtx] recurseConfigMap -> DEBU c0b Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.359 UTC [common/configtx] recurseConfigMap -> DEBU c0c Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.359 UTC [common/configtx] recurseConfigMap -> DEBU c0d Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.359 UTC [common/configtx] recurseConfigMap -> DEBU c0e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.359 UTC [common/configtx] processConfig -> DEBU c0f Beginning new config for channel businesschannel +2018-01-14 11:45:36.359 UTC [common/config] NewStandardValues -> DEBU c10 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:36.359 UTC [common/config] initializeProtosStruct -> DEBU c11 Processing field: HashingAlgorithm +2018-01-14 11:45:36.359 UTC [common/config] initializeProtosStruct -> DEBU c12 Processing field: BlockDataHashingStructure +2018-01-14 11:45:36.359 UTC [common/config] initializeProtosStruct -> DEBU c13 Processing field: OrdererAddresses +2018-01-14 11:45:36.359 UTC [common/config] initializeProtosStruct -> DEBU c14 Processing field: Consortium +2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c15 Proposed new policy Readers for Channel +2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c16 Proposed new policy Writers for Channel +2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c17 Proposed new policy Admins for Channel +2018-01-14 11:45:36.359 UTC [common/config] NewStandardValues -> DEBU c18 Initializing protos for *struct {} +2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c19 Proposed new policy Writers for Application +2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c1a Proposed new policy Readers for Application +2018-01-14 11:45:36.359 UTC [policies] ProposePolicy -> DEBU c1b Proposed new policy Admins for Application +2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c1c Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c1d Processing field: MSP +2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c1e Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c1f Processing field: AnchorPeers +2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c20 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c21 Processing field: MSP +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c22 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c23 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c24 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c25 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c26 Processing field: MSP +2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c27 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c28 Processing field: AnchorPeers +2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c29 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c2a Processing field: MSP +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c2b Proposed new policy Admins for Org1MSP +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c2c Proposed new policy Readers for Org1MSP +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c2d Proposed new policy Writers for Org1MSP +2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c2e Initializing protos for *config.OrdererProtos +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c2f Processing field: ConsensusType +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c30 Processing field: BatchSize +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c31 Processing field: BatchTimeout +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c32 Processing field: KafkaBrokers +2018-01-14 11:45:36.360 UTC [common/config] initializeProtosStruct -> DEBU c33 Processing field: ChannelRestrictions +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c34 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c35 Proposed new policy Readers for Orderer +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c36 Proposed new policy Writers for Orderer +2018-01-14 11:45:36.360 UTC [policies] ProposePolicy -> DEBU c37 Proposed new policy Admins for Orderer +2018-01-14 11:45:36.360 UTC [common/config] NewStandardValues -> DEBU c38 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.361 UTC [common/config] initializeProtosStruct -> DEBU c39 Processing field: MSP +2018-01-14 11:45:36.361 UTC [policies] ProposePolicy -> DEBU c3a Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:36.361 UTC [policies] ProposePolicy -> DEBU c3b Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:36.361 UTC [policies] ProposePolicy -> DEBU c3c Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:36.361 UTC [common/config] Validate -> DEBU c3d Anchor peers for org Org2MSP are anchor_peers: +2018-01-14 11:45:36.361 UTC [common/config] validateMSP -> DEBU c3e Setting up MSP for org Org2MSP +2018-01-14 11:45:36.361 UTC [msp] NewBccspMsp -> DEBU c3f Creating BCCSP-based MSP instance +2018-01-14 11:45:36.361 UTC [msp] Setup -> DEBU c40 Setting up MSP instance Org2MSP +2018-01-14 11:45:36.361 UTC [msp/identity] newIdentity -> DEBU c41 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -5647,7 +5537,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:51:00.719 UTC [msp/identity] newIdentity -> DEBU c58 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.362 UTC [msp/identity] newIdentity -> DEBU c42 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5661,7 +5551,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.719 UTC [msp/identity] newIdentity -> DEBU c59 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.362 UTC [msp/identity] newIdentity -> DEBU c43 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5675,196 +5565,12 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.719 UTC [msp] Validate -> DEBU c5a MSP Org2MSP validating identity -2018-01-04 01:51:00.720 UTC [msp] Setup -> DEBU c5b Setting up the MSP manager (3 msps) -2018-01-04 01:51:00.720 UTC [msp] Setup -> DEBU c5c MSP manager setup complete, setup 3 msps -2018-01-04 01:51:00.720 UTC [orderer/common/broadcast] Handle -> DEBU c5d [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG -2018-01-04 01:51:00.720 UTC [policies] GetPolicy -> DEBU c5e Returning policy Writers for evaluation -2018-01-04 01:51:00.720 UTC [cauthdsl] func1 -> DEBU c5f 0xc42010e030 gate 1515030660720557600 evaluation starts -2018-01-04 01:51:00.720 UTC [cauthdsl] func2 -> DEBU c60 0xc42010e030 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.720 UTC [cauthdsl] func2 -> DEBU c61 0xc42010e030 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.720 UTC [msp/identity] newIdentity -> DEBU c62 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-04 01:51:00.721 UTC [cauthdsl] func2 -> DEBU c63 0xc42010e030 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -2018-01-04 01:51:00.721 UTC [cauthdsl] func2 -> DEBU c64 0xc42010e030 principal evaluation fails -2018-01-04 01:51:00.721 UTC [cauthdsl] func1 -> DEBU c65 0xc42010e030 gate 1515030660720557600 evaluation fails -2018-01-04 01:51:00.721 UTC [cauthdsl] func1 -> DEBU c66 0xc42010e050 gate 1515030660721209900 evaluation starts -2018-01-04 01:51:00.721 UTC [cauthdsl] func2 -> DEBU c67 0xc42010e050 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.721 UTC [cauthdsl] func2 -> DEBU c68 0xc42010e050 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.721 UTC [msp/identity] newIdentity -> DEBU c69 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c6a 0xc42010e050 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c6b 0xc42010e050 principal evaluation fails -2018-01-04 01:51:00.722 UTC [cauthdsl] func1 -> DEBU c6c 0xc42010e050 gate 1515030660721209900 evaluation fails -2018-01-04 01:51:00.722 UTC [cauthdsl] func1 -> DEBU c6d 0xc42010e068 gate 1515030660722275300 evaluation starts -2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c6e 0xc42010e068 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c6f 0xc42010e068 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.722 UTC [msp/identity] newIdentity -> DEBU c70 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz -MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN -RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH -/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl ------END CERTIFICATE----- -2018-01-04 01:51:00.722 UTC [msp] SatisfiesPrincipal -> DEBU c71 Checking if identity satisfies MEMBER role for OrdererMSP -2018-01-04 01:51:00.722 UTC [msp] Validate -> DEBU c72 MSP OrdererMSP validating identity -2018-01-04 01:51:00.722 UTC [cauthdsl] func2 -> DEBU c73 0xc42010e068 principal matched by identity 0 -2018-01-04 01:51:00.723 UTC [msp/identity] Verify -> DEBU c74 Verify: digest = 00000000 bc 48 41 72 32 8d 86 1c 38 69 6f 56 19 bc 82 ae |.HAr2...8ioV....| -00000010 96 5b c2 62 63 a1 92 b2 2f 2e 4e 02 e7 7e ef d3 |.[.bc.../.N..~..| -2018-01-04 01:51:00.723 UTC [msp/identity] Verify -> DEBU c75 Verify: sig = 00000000 30 44 02 20 65 58 3b cc e1 1f 70 6b 5f 90 21 5c |0D. eX;...pk_.!\| -00000010 fe 29 9c 66 68 fb 55 d3 bc 2d be ea a9 cc d2 7a |.).fh.U..-.....z| -00000020 d9 99 e0 eb 02 20 1b e4 b7 b3 2b b8 38 c7 e4 c8 |..... ....+.8...| -00000030 c1 22 a6 0c ff 14 20 4c 19 d2 3f 57 10 30 81 ab |.".... L..?W.0..| -00000040 e2 1f 25 98 19 53 |..%..S| -2018-01-04 01:51:00.723 UTC [cauthdsl] func2 -> DEBU c76 0xc42010e068 principal evaluation succeeds for identity 0 -2018-01-04 01:51:00.723 UTC [cauthdsl] func1 -> DEBU c77 0xc42010e068 gate 1515030660722275300 evaluation succeeds -2018-01-04 01:51:00.723 UTC [orderer/common/sigfilter] Apply -> DEBU c78 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916460 1 [0xc42010eae8 0xc42010eb30]}) %!s(*policies.implicitMetaPolicy=&{0xc420b97e80 1 [0xc42010e9e8]})]} -2018-01-04 01:51:00.723 UTC [common/configtx] addToMap -> DEBU c79 Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7a Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7b Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7c Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7d Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7e Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c7f Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c80 Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c81 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.724 UTC [common/configtx] addToMap -> DEBU c82 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.725 UTC [common/configtx] addToMap -> DEBU c83 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.725 UTC [common/configtx] addToMap -> DEBU c84 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-04 01:51:00.725 UTC [orderer/common/deliver] Handle -> WARN c86 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:51:00.725 UTC [orderer/main] func1 -> DEBU c87 Closing Deliver stream -2018-01-04 01:51:00.725 UTC [common/configtx] addToMap -> DEBU c85 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.726 UTC [common/configtx] addToMap -> DEBU c88 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.726 UTC [common/configtx] addToMap -> DEBU c89 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.726 UTC [policies] GetPolicy -> DEBU c8a Returning policy Admins for evaluation -2018-01-04 01:51:00.726 UTC [cauthdsl] func1 -> DEBU c8b 0xc42010ec80 gate 1515030660726538200 evaluation starts -2018-01-04 01:51:00.726 UTC [cauthdsl] func2 -> DEBU c8c 0xc42010ec80 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.726 UTC [cauthdsl] func2 -> DEBU c8d 0xc42010ec80 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.727 UTC [msp/identity] newIdentity -> DEBU c8e Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:51:00.727 UTC [msp] SatisfiesPrincipal -> DEBU c8f Checking if identity satisfies ADMIN role for Org2MSP -2018-01-04 01:51:00.727 UTC [cauthdsl] func2 -> DEBU c90 0xc42010ec80 principal matched by identity 0 -2018-01-04 01:51:00.727 UTC [msp/identity] Verify -> DEBU c91 Verify: digest = 00000000 1c d5 c2 9c 53 ce a3 c5 b0 ea 98 b7 91 2f f4 52 |....S......../.R| -00000010 f4 f1 8f d9 19 16 77 80 e2 3f 4a 04 63 da 0e ac |......w..?J.c...| -2018-01-04 01:51:00.727 UTC [msp/identity] Verify -> DEBU c92 Verify: sig = 00000000 30 45 02 21 00 ef b8 fb 6a 68 3f bd df 70 a8 37 |0E.!....jh?..p.7| -00000010 17 7b dd e8 51 ed 3d 2d 06 74 bd 70 0e d2 7e 68 |.{..Q.=-.t.p..~h| -00000020 42 d3 e3 80 52 02 20 5e 4b 05 5a 4c d5 0a 42 f8 |B...R. ^K.ZL..B.| -00000030 24 c5 7f 63 f6 32 59 39 92 5f 3f a6 9b 37 fb 4d |$..c.2Y9._?..7.M| -00000040 06 fd fe de 97 ae 1e |.......| -2018-01-04 01:51:00.727 UTC [cauthdsl] func2 -> DEBU c93 0xc42010ec80 principal evaluation succeeds for identity 0 -2018-01-04 01:51:00.727 UTC [cauthdsl] func1 -> DEBU c94 0xc42010ec80 gate 1515030660726538200 evaluation succeeds -2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c95 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c96 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c97 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c98 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.727 UTC [common/configtx] recurseConfigMap -> DEBU c99 Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9a Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9b Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9c Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9d Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9e Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.728 UTC [common/configtx] recurseConfigMap -> DEBU c9f Setting policy for key Readers to -2018-01-04 01:51:00.729 UTC [common/configtx] recurseConfigMap -> DEBU ca0 Setting policy for key Writers to -2018-01-04 01:51:00.729 UTC [common/configtx] recurseConfigMap -> DEBU ca1 Setting policy for key Admins to -2018-01-04 01:51:00.730 UTC [common/configtx] recurseConfigMap -> DEBU ca2 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.730 UTC [common/configtx] recurseConfigMap -> DEBU ca3 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.730 UTC [common/configtx] recurseConfigMap -> DEBU ca4 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.730 UTC [orderer/common/broadcast] Handle -> WARN ca6 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:51:00.730 UTC [orderer/main] func1 -> DEBU ca7 Closing Broadcast stream -2018-01-04 01:51:00.730 UTC [common/configtx] recurseConfigMap -> DEBU ca5 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.732 UTC [common/configtx] recurseConfigMap -> DEBU ca8 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.733 UTC [common/configtx] recurseConfigMap -> DEBU ca9 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.733 UTC [common/configtx] processConfig -> DEBU caa Beginning new config for channel businesschannel -2018-01-04 01:51:00.734 UTC [common/config] NewStandardValues -> DEBU cab Initializing protos for *config.ChannelProtos -2018-01-04 01:51:00.734 UTC [common/config] initializeProtosStruct -> DEBU cac Processing field: HashingAlgorithm -2018-01-04 01:51:00.734 UTC [common/config] initializeProtosStruct -> DEBU cad Processing field: BlockDataHashingStructure -2018-01-04 01:51:00.734 UTC [common/config] initializeProtosStruct -> DEBU cae Processing field: OrdererAddresses -2018-01-04 01:51:00.734 UTC [common/config] initializeProtosStruct -> DEBU caf Processing field: Consortium -2018-01-04 01:51:00.734 UTC [policies] ProposePolicy -> DEBU cb0 Proposed new policy Writers for Channel -2018-01-04 01:51:00.734 UTC [policies] ProposePolicy -> DEBU cb1 Proposed new policy Admins for Channel -2018-01-04 01:51:00.735 UTC [policies] ProposePolicy -> DEBU cb2 Proposed new policy Readers for Channel -2018-01-04 01:51:00.735 UTC [common/config] NewStandardValues -> DEBU cb3 Initializing protos for *struct {} -2018-01-04 01:51:00.735 UTC [policies] ProposePolicy -> DEBU cb4 Proposed new policy Writers for Application -2018-01-04 01:51:00.735 UTC [policies] ProposePolicy -> DEBU cb5 Proposed new policy Readers for Application -2018-01-04 01:51:00.735 UTC [policies] ProposePolicy -> DEBU cb6 Proposed new policy Admins for Application -2018-01-04 01:51:00.735 UTC [common/config] NewStandardValues -> DEBU cb7 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.735 UTC [common/config] initializeProtosStruct -> DEBU cb8 Processing field: MSP -2018-01-04 01:51:00.735 UTC [common/config] NewStandardValues -> DEBU cb9 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:51:00.735 UTC [common/config] initializeProtosStruct -> DEBU cba Processing field: AnchorPeers -2018-01-04 01:51:00.735 UTC [common/config] NewStandardValues -> DEBU cbb Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.735 UTC [common/config] initializeProtosStruct -> DEBU cbc Processing field: MSP -2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cbd Proposed new policy Admins for Org1MSP -2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cbe Proposed new policy Readers for Org1MSP -2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cbf Proposed new policy Writers for Org1MSP -2018-01-04 01:51:00.736 UTC [common/config] NewStandardValues -> DEBU cc0 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cc1 Processing field: MSP -2018-01-04 01:51:00.736 UTC [common/config] NewStandardValues -> DEBU cc2 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cc3 Processing field: AnchorPeers -2018-01-04 01:51:00.736 UTC [common/config] NewStandardValues -> DEBU cc4 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cc5 Processing field: MSP -2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cc6 Proposed new policy Readers for Org2MSP -2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cc7 Proposed new policy Writers for Org2MSP -2018-01-04 01:51:00.736 UTC [policies] ProposePolicy -> DEBU cc8 Proposed new policy Admins for Org2MSP -2018-01-04 01:51:00.736 UTC [common/config] NewStandardValues -> DEBU cc9 Initializing protos for *config.OrdererProtos -2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cca Processing field: ConsensusType -2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU ccb Processing field: BatchSize -2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU ccc Processing field: BatchTimeout -2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU ccd Processing field: KafkaBrokers -2018-01-04 01:51:00.736 UTC [common/config] initializeProtosStruct -> DEBU cce Processing field: ChannelRestrictions -2018-01-04 01:51:00.737 UTC [policies] ProposePolicy -> DEBU ccf Proposed new policy Readers for Orderer -2018-01-04 01:51:00.737 UTC [policies] ProposePolicy -> DEBU cd0 Proposed new policy Writers for Orderer -2018-01-04 01:51:00.737 UTC [policies] ProposePolicy -> DEBU cd1 Proposed new policy Admins for Orderer -2018-01-04 01:51:00.737 UTC [policies] ProposePolicy -> DEBU cd2 Proposed new policy BlockValidation for Orderer -2018-01-04 01:51:00.737 UTC [common/config] NewStandardValues -> DEBU cd3 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.737 UTC [common/config] initializeProtosStruct -> DEBU cd4 Processing field: MSP -2018-01-04 01:51:00.738 UTC [policies] ProposePolicy -> DEBU cd5 Proposed new policy Admins for OrdererOrg -2018-01-04 01:51:00.738 UTC [policies] ProposePolicy -> DEBU cd6 Proposed new policy Readers for OrdererOrg -2018-01-04 01:51:00.738 UTC [policies] ProposePolicy -> DEBU cd7 Proposed new policy Writers for OrdererOrg -2018-01-04 01:51:00.738 UTC [common/config] Validate -> DEBU cd8 Anchor peers for org Org1MSP are anchor_peers: -2018-01-04 01:51:00.739 UTC [common/config] validateMSP -> DEBU cd9 Setting up MSP for org Org1MSP -2018-01-04 01:51:00.739 UTC [msp] NewBccspMsp -> DEBU cda Creating BCCSP-based MSP instance -2018-01-04 01:51:00.740 UTC [msp] Setup -> DEBU cdb Setting up MSP instance Org1MSP -2018-01-04 01:51:00.740 UTC [msp/identity] newIdentity -> DEBU cdc Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.363 UTC [msp] Validate -> DEBU c44 MSP Org2MSP validating identity +2018-01-14 11:45:36.363 UTC [common/config] Validate -> DEBU c45 Anchor peers for org Org1MSP are anchor_peers: +2018-01-14 11:45:36.363 UTC [common/config] validateMSP -> DEBU c46 Setting up MSP for org Org1MSP +2018-01-14 11:45:36.363 UTC [msp] NewBccspMsp -> DEBU c47 Creating BCCSP-based MSP instance +2018-01-14 11:45:36.363 UTC [msp] Setup -> DEBU c48 Setting up MSP instance Org1MSP +2018-01-14 11:45:36.363 UTC [msp/identity] newIdentity -> DEBU c49 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5879,7 +5585,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:51:00.741 UTC [msp/identity] newIdentity -> DEBU cdd Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.364 UTC [msp/identity] newIdentity -> DEBU c4a Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5893,7 +5599,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:51:00.741 UTC [msp/identity] newIdentity -> DEBU cde Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.364 UTC [msp/identity] newIdentity -> DEBU c4b Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5907,12 +5613,198 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:51:00.741 UTC [msp] Validate -> DEBU cdf MSP Org1MSP validating identity -2018-01-04 01:51:00.742 UTC [common/config] Validate -> DEBU ce0 Anchor peers for org Org2MSP are anchor_peers: -2018-01-04 01:51:00.742 UTC [common/config] validateMSP -> DEBU ce1 Setting up MSP for org Org2MSP -2018-01-04 01:51:00.742 UTC [msp] NewBccspMsp -> DEBU ce2 Creating BCCSP-based MSP instance -2018-01-04 01:51:00.742 UTC [msp] Setup -> DEBU ce3 Setting up MSP instance Org2MSP -2018-01-04 01:51:00.742 UTC [msp/identity] newIdentity -> DEBU ce4 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.365 UTC [msp] Validate -> DEBU c4c MSP Org1MSP validating identity +2018-01-14 11:45:36.365 UTC [common/config] validateMSP -> DEBU c4d Setting up MSP for org OrdererOrg +2018-01-14 11:45:36.365 UTC [msp] NewBccspMsp -> DEBU c4e Creating BCCSP-based MSP instance +2018-01-14 11:45:36.365 UTC [msp] Setup -> DEBU c4f Setting up MSP instance OrdererMSP +2018-01-14 11:45:36.365 UTC [msp/identity] newIdentity -> DEBU c50 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:36.366 UTC [msp/identity] newIdentity -> DEBU c51 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:36.366 UTC [msp/identity] newIdentity -> DEBU c52 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:36.367 UTC [msp] Validate -> DEBU c53 MSP OrdererMSP validating identity +2018-01-14 11:45:36.367 UTC [msp] Setup -> DEBU c54 Setting up the MSP manager (3 msps) +2018-01-14 11:45:36.367 UTC [msp] Setup -> DEBU c55 MSP manager setup complete, setup 3 msps +2018-01-14 11:45:36.367 UTC [orderer/common/broadcast] Handle -> DEBU c56 [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG +2018-01-14 11:45:36.367 UTC [policies] GetPolicy -> DEBU c57 Returning policy Writers for evaluation +2018-01-14 11:45:36.367 UTC [cauthdsl] func1 -> DEBU c58 0xc420150108 gate 1515930336367610064 evaluation starts +2018-01-14 11:45:36.367 UTC [cauthdsl] func2 -> DEBU c59 0xc420150108 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:36.367 UTC [cauthdsl] func2 -> DEBU c5a 0xc420150108 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624b6741774942416749514d46773551685666776b64767242332b59665966707a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e566f58445449344d4445774d54457a4d446b314e566f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e4341415269636b52674754716f7542614f2b49564c392b5730633030537537783136725838496a4e476a6f36675a6b5541596a707a0a4d4b6d423143525733656f5532745564367249424d586a344d514655524539577a4f65746f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a4441696743415a487961684e622b704b6f656930683449696732387858506278436d4e0a52765a4e4c612b314b38754e716a414b42676771686b6a4f5051514441674e49414442464169454176547249334279344d52702b334a3142574f6b75613848480a2f345677594636346a6e324f4c496c4e2f2f304349443639536e387273476e6a787234536a46346b373373486f3064336457593958706e374d4d4770442b766c0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:36.367 UTC [msp/identity] newIdentity -> DEBU c5b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +hkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz +MKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw +DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN +RvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH +/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl +-----END CERTIFICATE----- +2018-01-14 11:45:36.368 UTC [msp] SatisfiesPrincipal -> DEBU c5c Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:45:36.368 UTC [msp] Validate -> DEBU c5d MSP OrdererMSP validating identity +2018-01-14 11:45:36.368 UTC [cauthdsl] func2 -> DEBU c5e 0xc420150108 principal matched by identity 0 +2018-01-14 11:45:36.368 UTC [msp/identity] Verify -> DEBU c5f Verify: digest = 00000000 8d 14 7c c5 6c 62 aa 57 0f a1 f0 0b 99 d2 1c 96 |..|.lb.W........| +00000010 9e 1e bc d4 09 e5 e4 15 7f 17 60 59 d4 e7 98 38 |..........`Y...8| +2018-01-14 11:45:36.368 UTC [msp/identity] Verify -> DEBU c60 Verify: sig = 00000000 30 45 02 21 00 91 24 4a 84 29 74 b4 ce cc 11 f5 |0E.!..$J.)t.....| +00000010 55 7d 89 6d cf 0c d0 53 cb 1f be 7b 51 08 bf c0 |U}.m...S...{Q...| +00000020 c6 18 d8 d5 50 02 20 14 f1 aa 1f de a4 bd 6a 58 |....P. .......jX| +00000030 ee 74 d2 f9 e9 a1 8d 1c 85 9c dc aa 1d f2 33 ef |.t............3.| +00000040 55 38 4f d7 55 1a 25 |U8O.U.%| +2018-01-14 11:45:36.368 UTC [cauthdsl] func2 -> DEBU c61 0xc420150108 principal evaluation succeeds for identity 0 +2018-01-14 11:45:36.368 UTC [cauthdsl] func1 -> DEBU c62 0xc420150108 gate 1515930336367610064 evaluation succeeds +2018-01-14 11:45:36.368 UTC [orderer/common/sigfilter] Apply -> DEBU c63 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b380a0 1 [0xc420150dd8]}) %!s(*policies.implicitMetaPolicy=&{0xc420b386a0 1 [0xc420150e70 0xc4201510e8]})]} +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c64 Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c65 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c66 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c67 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c68 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c69 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6a Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6b Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6c Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6d Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6e Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c6f Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c70 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.369 UTC [common/configtx] addToMap -> DEBU c71 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.370 UTC [common/configtx] addToMap -> DEBU c72 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.370 UTC [policies] GetPolicy -> DEBU c73 Returning policy Admins for evaluation +2018-01-14 11:45:36.370 UTC [cauthdsl] func1 -> DEBU c74 0xc420150ec0 gate 1515930336370132064 evaluation starts +2018-01-14 11:45:36.370 UTC [cauthdsl] func2 -> DEBU c75 0xc420150ec0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:36.370 UTC [cauthdsl] func2 -> DEBU c76 0xc420150ec0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:36.370 UTC [msp/identity] newIdentity -> DEBU c77 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:36.370 UTC [msp] SatisfiesPrincipal -> DEBU c78 Checking if identity satisfies ADMIN role for Org2MSP +2018-01-14 11:45:36.370 UTC [cauthdsl] func2 -> DEBU c79 0xc420150ec0 principal matched by identity 0 +2018-01-14 11:45:36.370 UTC [msp/identity] Verify -> DEBU c7a Verify: digest = 00000000 c3 7e 13 97 11 8f 8d ae 6e 77 14 93 5d 5e 84 01 |.~......nw..]^..| +00000010 d3 b2 a7 73 06 2c 87 19 e1 94 ff fc b6 28 68 18 |...s.,.......(h.| +2018-01-14 11:45:36.370 UTC [msp/identity] Verify -> DEBU c7b Verify: sig = 00000000 30 45 02 21 00 81 98 e7 87 77 c4 bf 8d d8 66 34 |0E.!.....w....f4| +00000010 6c 42 b3 33 db 11 f7 2f e2 9f f5 10 40 56 ca 81 |lB.3.../....@V..| +00000020 ec 0a bb 1b 7e 02 20 40 79 fb 1d 28 3c cf fe b1 |....~. @y..(<...| +00000030 15 07 43 0f ef ce a1 0d 09 0d 45 ce 25 b9 b1 12 |..C.......E.%...| +00000040 f2 28 fe a6 78 9f 80 |.(..x..| +2018-01-14 11:45:36.371 UTC [cauthdsl] func2 -> DEBU c7c 0xc420150ec0 principal evaluation succeeds for identity 0 +2018-01-14 11:45:36.371 UTC [cauthdsl] func1 -> DEBU c7d 0xc420150ec0 gate 1515930336370132064 evaluation succeeds +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c7e Setting policy for key Readers to +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c7f Setting policy for key Writers to +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c80 Setting policy for key Admins to +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c81 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c82 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c83 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c84 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c85 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c86 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.371 UTC [common/configtx] recurseConfigMap -> DEBU c87 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c88 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c89 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8a Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8b Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8c Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8d Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c8f Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] recurseConfigMap -> DEBU c90 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.372 UTC [common/configtx] processConfig -> DEBU c91 Beginning new config for channel businesschannel +2018-01-14 11:45:36.372 UTC [common/config] NewStandardValues -> DEBU c92 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:36.372 UTC [common/config] initializeProtosStruct -> DEBU c93 Processing field: HashingAlgorithm +2018-01-14 11:45:36.372 UTC [common/config] initializeProtosStruct -> DEBU c94 Processing field: BlockDataHashingStructure +2018-01-14 11:45:36.372 UTC [common/config] initializeProtosStruct -> DEBU c95 Processing field: OrdererAddresses +2018-01-14 11:45:36.372 UTC [common/config] initializeProtosStruct -> DEBU c96 Processing field: Consortium +2018-01-14 11:45:36.372 UTC [policies] ProposePolicy -> DEBU c97 Proposed new policy Admins for Channel +2018-01-14 11:45:36.372 UTC [policies] ProposePolicy -> DEBU c98 Proposed new policy Readers for Channel +2018-01-14 11:45:36.372 UTC [policies] ProposePolicy -> DEBU c99 Proposed new policy Writers for Channel +2018-01-14 11:45:36.372 UTC [common/config] NewStandardValues -> DEBU c9a Initializing protos for *struct {} +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU c9b Proposed new policy Writers for Application +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU c9c Proposed new policy Readers for Application +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU c9d Proposed new policy Admins for Application +2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU c9e Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU c9f Processing field: MSP +2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU ca0 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU ca1 Processing field: AnchorPeers +2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU ca2 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU ca3 Processing field: MSP +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU ca4 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU ca5 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU ca6 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU ca7 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU ca8 Processing field: MSP +2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU ca9 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU caa Processing field: AnchorPeers +2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU cab Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cac Processing field: MSP +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU cad Proposed new policy Admins for Org1MSP +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU cae Proposed new policy Readers for Org1MSP +2018-01-14 11:45:36.373 UTC [policies] ProposePolicy -> DEBU caf Proposed new policy Writers for Org1MSP +2018-01-14 11:45:36.373 UTC [common/config] NewStandardValues -> DEBU cb0 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb1 Processing field: ConsensusType +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb2 Processing field: BatchSize +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb3 Processing field: BatchTimeout +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb4 Processing field: KafkaBrokers +2018-01-14 11:45:36.373 UTC [common/config] initializeProtosStruct -> DEBU cb5 Processing field: ChannelRestrictions +2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cb6 Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cb7 Proposed new policy Readers for Orderer +2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cb8 Proposed new policy Writers for Orderer +2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cb9 Proposed new policy Admins for Orderer +2018-01-14 11:45:36.374 UTC [common/config] NewStandardValues -> DEBU cba Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.374 UTC [common/config] initializeProtosStruct -> DEBU cbb Processing field: MSP +2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cbc Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cbd Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:36.374 UTC [policies] ProposePolicy -> DEBU cbe Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:36.374 UTC [common/config] Validate -> DEBU cbf Anchor peers for org Org2MSP are anchor_peers: +2018-01-14 11:45:36.374 UTC [common/config] validateMSP -> DEBU cc0 Setting up MSP for org Org2MSP +2018-01-14 11:45:36.374 UTC [msp] NewBccspMsp -> DEBU cc1 Creating BCCSP-based MSP instance +2018-01-14 11:45:36.374 UTC [msp] Setup -> DEBU cc2 Setting up MSP instance Org2MSP +2018-01-14 11:45:36.375 UTC [msp/identity] newIdentity -> DEBU cc3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -5927,7 +5819,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:51:00.742 UTC [msp/identity] newIdentity -> DEBU ce5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.375 UTC [msp/identity] newIdentity -> DEBU cc4 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5941,7 +5833,9 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.743 UTC [msp/identity] newIdentity -> DEBU ce6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.377 UTC [orderer/common/deliver] Handle -> WARN cc5 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:45:36.377 UTC [orderer/main] func1 -> DEBU cc6 Closing Deliver stream +2018-01-14 11:45:36.378 UTC [msp/identity] newIdentity -> DEBU cc7 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -5955,254 +5849,14 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.743 UTC [msp] Validate -> DEBU ce7 MSP Org2MSP validating identity -2018-01-04 01:51:00.743 UTC [common/config] validateMSP -> DEBU ce8 Setting up MSP for org OrdererOrg -2018-01-04 01:51:00.743 UTC [msp] NewBccspMsp -> DEBU ce9 Creating BCCSP-based MSP instance -2018-01-04 01:51:00.743 UTC [msp] Setup -> DEBU cea Setting up MSP instance OrdererMSP -2018-01-04 01:51:00.744 UTC [msp/identity] newIdentity -> DEBU ceb Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:51:00.744 UTC [msp/identity] newIdentity -> DEBU cec Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:51:00.744 UTC [msp/identity] newIdentity -> DEBU ced Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:51:00.745 UTC [msp] Validate -> DEBU cee MSP OrdererMSP validating identity -2018-01-04 01:51:00.745 UTC [msp] Setup -> DEBU cef Setting up the MSP manager (3 msps) -2018-01-04 01:51:00.745 UTC [msp] Setup -> DEBU cf0 MSP manager setup complete, setup 3 msps -2018-01-04 01:51:00.745 UTC [orderer/common/blockcutter] Ordered -> DEBU cf1 Found message which requested to be isolated, cutting into its own batch -2018-01-04 01:51:00.745 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU cf2 retrieveBlockByNumber() - blockNum = [1] -2018-01-04 01:51:00.745 UTC [fsblkstorage] newBlockfileStream -> DEBU cf3 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] -2018-01-04 01:51:00.745 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU cf4 Remaining bytes=[13732], Going to peek [8] bytes -2018-01-04 01:51:00.745 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU cf5 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} -2018-01-04 01:51:00.745 UTC [common/configtx] addToMap -> DEBU cf6 Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cf7 Adding to config map: [Groups] /Channel/Orderer -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cf8 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cf9 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfa Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfb Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfc Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfd Adding to config map: [Values] /Channel/Orderer/ConsensusType -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cfe Adding to config map: [Values] /Channel/Orderer/BatchSize -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU cff Adding to config map: [Values] /Channel/Orderer/BatchTimeout -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d00 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d01 Adding to config map: [Policy] /Channel/Orderer/Admins -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d02 Adding to config map: [Policy] /Channel/Orderer/BlockValidation -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d03 Adding to config map: [Policy] /Channel/Orderer/Readers -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d04 Adding to config map: [Policy] /Channel/Orderer/Writers -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d05 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d06 Adding to config map: [Groups] /Channel/Application/Org1MSP -2018-01-04 01:51:00.746 UTC [common/configtx] addToMap -> DEBU d07 Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d08 Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d09 Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0a Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0b Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0c Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0d Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0e Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d0f Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d10 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d11 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d12 Adding to config map: [Policy] /Channel/Application/Readers -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d13 Adding to config map: [Policy] /Channel/Application/Admins -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d14 Adding to config map: [Policy] /Channel/Application/Writers -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d15 Adding to config map: [Values] /Channel/Consortium -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d16 Adding to config map: [Values] /Channel/HashingAlgorithm -2018-01-04 01:51:00.747 UTC [common/configtx] addToMap -> DEBU d17 Adding to config map: [Values] /Channel/BlockDataHashingStructure -2018-01-04 01:51:00.748 UTC [common/configtx] addToMap -> DEBU d18 Adding to config map: [Values] /Channel/OrdererAddresses -2018-01-04 01:51:00.749 UTC [common/configtx] addToMap -> DEBU d19 Adding to config map: [Policy] /Channel/Writers -2018-01-04 01:51:00.749 UTC [common/configtx] addToMap -> DEBU d1a Adding to config map: [Policy] /Channel/Admins -2018-01-04 01:51:00.750 UTC [common/configtx] addToMap -> DEBU d1b Adding to config map: [Policy] /Channel/Readers -2018-01-04 01:51:00.753 UTC [common/configtx] addToMap -> DEBU d1c Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.753 UTC [common/configtx] addToMap -> DEBU d1d Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.754 UTC [common/configtx] addToMap -> DEBU d1e Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.754 UTC [common/configtx] addToMap -> DEBU d1f Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.754 UTC [common/configtx] addToMap -> DEBU d20 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.754 UTC [common/configtx] addToMap -> DEBU d21 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d22 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d23 Adding to config map: [Groups] /Channel -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d24 Adding to config map: [Groups] /Channel/Application -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d25 Adding to config map: [Groups] /Channel/Application/Org2MSP -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d26 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d27 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d28 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d29 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -2018-01-04 01:51:00.755 UTC [common/configtx] addToMap -> DEBU d2a Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -2018-01-04 01:51:00.755 UTC [policies] GetPolicy -> DEBU d2b Returning policy Admins for evaluation -2018-01-04 01:51:00.756 UTC [cauthdsl] func1 -> DEBU d2c 0xc42010e740 gate 1515030660755992200 evaluation starts -2018-01-04 01:51:00.756 UTC [cauthdsl] func2 -> DEBU d2d 0xc42010e740 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:00.756 UTC [cauthdsl] func2 -> DEBU d2e 0xc42010e740 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:00.756 UTC [msp/identity] newIdentity -> DEBU d2f Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:51:00.756 UTC [msp] SatisfiesPrincipal -> DEBU d30 Checking if identity satisfies ADMIN role for Org2MSP -2018-01-04 01:51:00.756 UTC [cauthdsl] func2 -> DEBU d31 0xc42010e740 principal matched by identity 0 -2018-01-04 01:51:00.756 UTC [msp/identity] Verify -> DEBU d32 Verify: digest = 00000000 1c d5 c2 9c 53 ce a3 c5 b0 ea 98 b7 91 2f f4 52 |....S......../.R| -00000010 f4 f1 8f d9 19 16 77 80 e2 3f 4a 04 63 da 0e ac |......w..?J.c...| -2018-01-04 01:51:00.756 UTC [msp/identity] Verify -> DEBU d33 Verify: sig = 00000000 30 45 02 21 00 ef b8 fb 6a 68 3f bd df 70 a8 37 |0E.!....jh?..p.7| -00000010 17 7b dd e8 51 ed 3d 2d 06 74 bd 70 0e d2 7e 68 |.{..Q.=-.t.p..~h| -00000020 42 d3 e3 80 52 02 20 5e 4b 05 5a 4c d5 0a 42 f8 |B...R. ^K.ZL..B.| -00000030 24 c5 7f 63 f6 32 59 39 92 5f 3f a6 9b 37 fb 4d |$..c.2Y9._?..7.M| -00000040 06 fd fe de 97 ae 1e |.......| -2018-01-04 01:51:00.756 UTC [cauthdsl] func2 -> DEBU d34 0xc42010e740 principal evaluation succeeds for identity 0 -2018-01-04 01:51:00.756 UTC [cauthdsl] func1 -> DEBU d35 0xc42010e740 gate 1515030660755992200 evaluation succeeds -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d36 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d37 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d38 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d39 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3a Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3b Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3c Setting policy for key BlockValidation to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3d Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3e Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d3f Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.757 UTC [common/configtx] recurseConfigMap -> DEBU d40 Setting policy for key Readers to -2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d41 Setting policy for key Writers to -2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d42 Setting policy for key Admins to -2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d43 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d44 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d45 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d46 Setting policy for key Readers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d47 Setting policy for key Writers to policy: mod_policy:"Admins" -2018-01-04 01:51:00.758 UTC [common/configtx] recurseConfigMap -> DEBU d48 Setting policy for key Admins to policy: mod_policy:"Admins" -2018-01-04 01:51:00.758 UTC [common/configtx] processConfig -> DEBU d49 Beginning new config for channel businesschannel -2018-01-04 01:51:00.758 UTC [common/config] NewStandardValues -> DEBU d4a Initializing protos for *config.ChannelProtos -2018-01-04 01:51:00.758 UTC [common/config] initializeProtosStruct -> DEBU d4b Processing field: HashingAlgorithm -2018-01-04 01:51:00.758 UTC [common/config] initializeProtosStruct -> DEBU d4c Processing field: BlockDataHashingStructure -2018-01-04 01:51:00.758 UTC [common/config] initializeProtosStruct -> DEBU d4d Processing field: OrdererAddresses -2018-01-04 01:51:00.758 UTC [common/config] initializeProtosStruct -> DEBU d4e Processing field: Consortium -2018-01-04 01:51:00.758 UTC [policies] ProposePolicy -> DEBU d4f Proposed new policy Readers for Channel -2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d50 Proposed new policy Writers for Channel -2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d51 Proposed new policy Admins for Channel -2018-01-04 01:51:00.760 UTC [common/config] NewStandardValues -> DEBU d52 Initializing protos for *config.OrdererProtos -2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d53 Processing field: ConsensusType -2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d54 Processing field: BatchSize -2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d55 Processing field: BatchTimeout -2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d56 Processing field: KafkaBrokers -2018-01-04 01:51:00.760 UTC [common/config] initializeProtosStruct -> DEBU d57 Processing field: ChannelRestrictions -2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d58 Proposed new policy Admins for Orderer -2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d59 Proposed new policy BlockValidation for Orderer -2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d5a Proposed new policy Readers for Orderer -2018-01-04 01:51:00.760 UTC [policies] ProposePolicy -> DEBU d5b Proposed new policy Writers for Orderer -2018-01-04 01:51:00.761 UTC [common/config] NewStandardValues -> DEBU d5c Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.761 UTC [common/config] initializeProtosStruct -> DEBU d5d Processing field: MSP -2018-01-04 01:51:00.761 UTC [policies] ProposePolicy -> DEBU d5e Proposed new policy Writers for OrdererOrg -2018-01-04 01:51:00.761 UTC [policies] ProposePolicy -> DEBU d5f Proposed new policy Admins for OrdererOrg -2018-01-04 01:51:00.761 UTC [policies] ProposePolicy -> DEBU d60 Proposed new policy Readers for OrdererOrg -2018-01-04 01:51:00.761 UTC [common/config] NewStandardValues -> DEBU d61 Initializing protos for *struct {} -2018-01-04 01:51:00.762 UTC [policies] ProposePolicy -> DEBU d62 Proposed new policy Writers for Application -2018-01-04 01:51:00.762 UTC [policies] ProposePolicy -> DEBU d63 Proposed new policy Readers for Application -2018-01-04 01:51:00.762 UTC [policies] ProposePolicy -> DEBU d64 Proposed new policy Admins for Application -2018-01-04 01:51:00.762 UTC [common/config] NewStandardValues -> DEBU d65 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.762 UTC [common/config] initializeProtosStruct -> DEBU d66 Processing field: MSP -2018-01-04 01:51:00.762 UTC [common/config] NewStandardValues -> DEBU d67 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:51:00.765 UTC [common/config] initializeProtosStruct -> DEBU d68 Processing field: AnchorPeers -2018-01-04 01:51:00.765 UTC [common/config] NewStandardValues -> DEBU d69 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.765 UTC [common/config] initializeProtosStruct -> DEBU d6a Processing field: MSP -2018-01-04 01:51:00.766 UTC [policies] ProposePolicy -> DEBU d6b Proposed new policy Writers for Org1MSP -2018-01-04 01:51:00.766 UTC [policies] ProposePolicy -> DEBU d6c Proposed new policy Admins for Org1MSP -2018-01-04 01:51:00.766 UTC [policies] ProposePolicy -> DEBU d6d Proposed new policy Readers for Org1MSP -2018-01-04 01:51:00.766 UTC [common/config] NewStandardValues -> DEBU d6e Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.766 UTC [common/config] initializeProtosStruct -> DEBU d6f Processing field: MSP -2018-01-04 01:51:00.766 UTC [common/config] NewStandardValues -> DEBU d70 Initializing protos for *config.ApplicationOrgProtos -2018-01-04 01:51:00.766 UTC [common/config] initializeProtosStruct -> DEBU d71 Processing field: AnchorPeers -2018-01-04 01:51:00.766 UTC [common/config] NewStandardValues -> DEBU d72 Initializing protos for *config.OrganizationProtos -2018-01-04 01:51:00.766 UTC [common/config] initializeProtosStruct -> DEBU d73 Processing field: MSP -2018-01-04 01:51:00.767 UTC [policies] ProposePolicy -> DEBU d74 Proposed new policy Writers for Org2MSP -2018-01-04 01:51:00.767 UTC [policies] ProposePolicy -> DEBU d75 Proposed new policy Admins for Org2MSP -2018-01-04 01:51:00.767 UTC [policies] ProposePolicy -> DEBU d76 Proposed new policy Readers for Org2MSP -2018-01-04 01:51:00.767 UTC [common/config] validateMSP -> DEBU d77 Setting up MSP for org OrdererOrg -2018-01-04 01:51:00.767 UTC [msp] NewBccspMsp -> DEBU d78 Creating BCCSP-based MSP instance -2018-01-04 01:51:00.767 UTC [msp] Setup -> DEBU d79 Setting up MSP instance OrdererMSP -2018-01-04 01:51:00.767 UTC [msp/identity] newIdentity -> DEBU d7a Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW -gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK -BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs -KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= ------END CERTIFICATE----- -2018-01-04 01:51:00.767 UTC [msp/identity] newIdentity -> DEBU d7b Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:51:00.768 UTC [msp/identity] newIdentity -> DEBU d7c Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX -yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 -TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh -EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 ------END CERTIFICATE----- -2018-01-04 01:51:00.768 UTC [msp] Validate -> DEBU d7d MSP OrdererMSP validating identity -2018-01-04 01:51:00.769 UTC [common/config] Validate -> DEBU d7e Anchor peers for org Org1MSP are anchor_peers: -2018-01-04 01:51:00.769 UTC [common/config] validateMSP -> DEBU d7f Setting up MSP for org Org1MSP -2018-01-04 01:51:00.769 UTC [msp] NewBccspMsp -> DEBU d80 Creating BCCSP-based MSP instance -2018-01-04 01:51:00.769 UTC [msp] Setup -> DEBU d81 Setting up MSP instance Org1MSP -2018-01-04 01:51:00.770 UTC [msp/identity] newIdentity -> DEBU d82 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.379 UTC [orderer/common/broadcast] Handle -> WARN cc8 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:45:36.379 UTC [orderer/main] func1 -> DEBU cc9 Closing Broadcast stream +2018-01-14 11:45:36.379 UTC [msp] Validate -> DEBU cca MSP Org2MSP validating identity +2018-01-14 11:45:36.379 UTC [common/config] Validate -> DEBU ccb Anchor peers for org Org1MSP are anchor_peers: +2018-01-14 11:45:36.380 UTC [common/config] validateMSP -> DEBU ccc Setting up MSP for org Org1MSP +2018-01-14 11:45:36.380 UTC [msp] NewBccspMsp -> DEBU ccd Creating BCCSP-based MSP instance +2018-01-14 11:45:36.380 UTC [msp] Setup -> DEBU cce Setting up MSP instance Org1MSP +2018-01-14 11:45:36.380 UTC [msp/identity] newIdentity -> DEBU ccf Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6217,7 +5871,7 @@ JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi /IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ H7n8z1pj5w== -----END CERTIFICATE----- -2018-01-04 01:51:00.770 UTC [msp/identity] newIdentity -> DEBU d83 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.381 UTC [msp/identity] newIdentity -> DEBU cd0 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6231,7 +5885,7 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:51:00.771 UTC [msp/identity] newIdentity -> DEBU d84 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.382 UTC [msp/identity] newIdentity -> DEBU cd1 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6245,12 +5899,210 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:51:00.772 UTC [msp] Validate -> DEBU d85 MSP Org1MSP validating identity -2018-01-04 01:51:00.772 UTC [common/config] Validate -> DEBU d86 Anchor peers for org Org2MSP are anchor_peers: -2018-01-04 01:51:00.772 UTC [common/config] validateMSP -> DEBU d87 Setting up MSP for org Org2MSP -2018-01-04 01:51:00.773 UTC [msp] NewBccspMsp -> DEBU d88 Creating BCCSP-based MSP instance -2018-01-04 01:51:00.773 UTC [msp] Setup -> DEBU d89 Setting up MSP instance Org2MSP -2018-01-04 01:51:00.774 UTC [msp/identity] newIdentity -> DEBU d8a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.383 UTC [msp] Validate -> DEBU cd2 MSP Org1MSP validating identity +2018-01-14 11:45:36.383 UTC [common/config] validateMSP -> DEBU cd3 Setting up MSP for org OrdererOrg +2018-01-14 11:45:36.383 UTC [msp] NewBccspMsp -> DEBU cd4 Creating BCCSP-based MSP instance +2018-01-14 11:45:36.383 UTC [msp] Setup -> DEBU cd5 Setting up MSP instance OrdererMSP +2018-01-14 11:45:36.384 UTC [msp/identity] newIdentity -> DEBU cd6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:36.384 UTC [msp/identity] newIdentity -> DEBU cd7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:36.384 UTC [msp/identity] newIdentity -> DEBU cd8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:36.385 UTC [msp] Validate -> DEBU cd9 MSP OrdererMSP validating identity +2018-01-14 11:45:36.385 UTC [msp] Setup -> DEBU cda Setting up the MSP manager (3 msps) +2018-01-14 11:45:36.385 UTC [msp] Setup -> DEBU cdb MSP manager setup complete, setup 3 msps +2018-01-14 11:45:36.385 UTC [orderer/common/blockcutter] Ordered -> DEBU cdc Found message which requested to be isolated, cutting into its own batch +2018-01-14 11:45:36.385 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU cdd retrieveBlockByNumber() - blockNum = [1] +2018-01-14 11:45:36.385 UTC [fsblkstorage] newBlockfileStream -> DEBU cde newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] +2018-01-14 11:45:36.385 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU cdf Remaining bytes=[13733], Going to peek [8] bytes +2018-01-14 11:45:36.385 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ce0 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} +2018-01-14 11:45:36.385 UTC [common/configtx] addToMap -> DEBU ce1 Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce2 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce3 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce4 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce5 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce6 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce7 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce8 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ce9 Adding to config map: [Groups] /Channel/Application/Org1MSP +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cea Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ceb Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cec Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU ced Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cee Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cef Adding to config map: [Policy] /Channel/Application/Readers +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf0 Adding to config map: [Policy] /Channel/Application/Admins +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf1 Adding to config map: [Policy] /Channel/Application/Writers +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf2 Adding to config map: [Groups] /Channel/Orderer +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf3 Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +2018-01-14 11:45:36.386 UTC [common/configtx] addToMap -> DEBU cf4 Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf5 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf6 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf7 Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf8 Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cf9 Adding to config map: [Values] /Channel/Orderer/ConsensusType +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfa Adding to config map: [Values] /Channel/Orderer/BatchSize +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfb Adding to config map: [Values] /Channel/Orderer/BatchTimeout +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfc Adding to config map: [Policy] /Channel/Orderer/Writers +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfd Adding to config map: [Policy] /Channel/Orderer/Admins +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cfe Adding to config map: [Policy] /Channel/Orderer/BlockValidation +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU cff Adding to config map: [Policy] /Channel/Orderer/Readers +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d00 Adding to config map: [Values] /Channel/HashingAlgorithm +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d01 Adding to config map: [Values] /Channel/BlockDataHashingStructure +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d02 Adding to config map: [Values] /Channel/Consortium +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d03 Adding to config map: [Values] /Channel/OrdererAddresses +2018-01-14 11:45:36.387 UTC [common/configtx] addToMap -> DEBU d04 Adding to config map: [Policy] /Channel/Admins +2018-01-14 11:45:36.392 UTC [common/configtx] addToMap -> DEBU d05 Adding to config map: [Policy] /Channel/Readers +2018-01-14 11:45:36.392 UTC [common/configtx] addToMap -> DEBU d06 Adding to config map: [Policy] /Channel/Writers +2018-01-14 11:45:36.393 UTC [common/configtx] addToMap -> DEBU d07 Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.393 UTC [common/configtx] addToMap -> DEBU d08 Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d09 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0a Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0b Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0c Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0d Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0e Adding to config map: [Groups] /Channel +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d0f Adding to config map: [Groups] /Channel/Application +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d10 Adding to config map: [Groups] /Channel/Application/Org2MSP +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d11 Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d12 Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d13 Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d14 Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +2018-01-14 11:45:36.394 UTC [common/configtx] addToMap -> DEBU d15 Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +2018-01-14 11:45:36.394 UTC [policies] GetPolicy -> DEBU d16 Returning policy Admins for evaluation +2018-01-14 11:45:36.394 UTC [cauthdsl] func1 -> DEBU d17 0xc420150870 gate 1515930336394829864 evaluation starts +2018-01-14 11:45:36.394 UTC [cauthdsl] func2 -> DEBU d18 0xc420150870 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:36.394 UTC [cauthdsl] func2 -> DEBU d19 0xc420150870 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:36.395 UTC [msp/identity] newIdentity -> DEBU d1a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 +mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr +ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ +84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS +AXYxULZpXYDQXt1KaLI= +-----END CERTIFICATE----- +2018-01-14 11:45:36.395 UTC [msp] SatisfiesPrincipal -> DEBU d1b Checking if identity satisfies ADMIN role for Org2MSP +2018-01-14 11:45:36.395 UTC [cauthdsl] func2 -> DEBU d1c 0xc420150870 principal matched by identity 0 +2018-01-14 11:45:36.395 UTC [msp/identity] Verify -> DEBU d1d Verify: digest = 00000000 c3 7e 13 97 11 8f 8d ae 6e 77 14 93 5d 5e 84 01 |.~......nw..]^..| +00000010 d3 b2 a7 73 06 2c 87 19 e1 94 ff fc b6 28 68 18 |...s.,.......(h.| +2018-01-14 11:45:36.395 UTC [msp/identity] Verify -> DEBU d1e Verify: sig = 00000000 30 45 02 21 00 81 98 e7 87 77 c4 bf 8d d8 66 34 |0E.!.....w....f4| +00000010 6c 42 b3 33 db 11 f7 2f e2 9f f5 10 40 56 ca 81 |lB.3.../....@V..| +00000020 ec 0a bb 1b 7e 02 20 40 79 fb 1d 28 3c cf fe b1 |....~. @y..(<...| +00000030 15 07 43 0f ef ce a1 0d 09 0d 45 ce 25 b9 b1 12 |..C.......E.%...| +00000040 f2 28 fe a6 78 9f 80 |.(..x..| +2018-01-14 11:45:36.395 UTC [cauthdsl] func2 -> DEBU d1f 0xc420150870 principal evaluation succeeds for identity 0 +2018-01-14 11:45:36.396 UTC [cauthdsl] func1 -> DEBU d20 0xc420150870 gate 1515930336394829864 evaluation succeeds +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d21 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d22 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d23 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d24 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d25 Setting policy for key BlockValidation to policy: mod_policy:"Admins" +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d26 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d27 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d28 Setting policy for key Readers to +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d29 Setting policy for key Writers to +2018-01-14 11:45:36.397 UTC [common/configtx] recurseConfigMap -> DEBU d2a Setting policy for key Admins to +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2b Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2c Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2d Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2e Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d2f Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d30 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d31 Setting policy for key Writers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d32 Setting policy for key Admins to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] recurseConfigMap -> DEBU d33 Setting policy for key Readers to policy: mod_policy:"Admins" +2018-01-14 11:45:36.398 UTC [common/configtx] processConfig -> DEBU d34 Beginning new config for channel businesschannel +2018-01-14 11:45:36.398 UTC [common/config] NewStandardValues -> DEBU d35 Initializing protos for *config.ChannelProtos +2018-01-14 11:45:36.398 UTC [common/config] initializeProtosStruct -> DEBU d36 Processing field: HashingAlgorithm +2018-01-14 11:45:36.398 UTC [common/config] initializeProtosStruct -> DEBU d37 Processing field: BlockDataHashingStructure +2018-01-14 11:45:36.398 UTC [common/config] initializeProtosStruct -> DEBU d38 Processing field: OrdererAddresses +2018-01-14 11:45:36.398 UTC [common/config] initializeProtosStruct -> DEBU d39 Processing field: Consortium +2018-01-14 11:45:36.398 UTC [policies] ProposePolicy -> DEBU d3a Proposed new policy Admins for Channel +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d3b Proposed new policy Readers for Channel +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d3c Proposed new policy Writers for Channel +2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d3d Initializing protos for *struct {} +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d3e Proposed new policy Writers for Application +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d3f Proposed new policy Readers for Application +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d40 Proposed new policy Admins for Application +2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d41 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d42 Processing field: MSP +2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d43 Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d44 Processing field: AnchorPeers +2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d45 Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d46 Processing field: MSP +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d47 Proposed new policy Admins for Org2MSP +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d48 Proposed new policy Readers for Org2MSP +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d49 Proposed new policy Writers for Org2MSP +2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d4a Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d4b Processing field: MSP +2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d4c Initializing protos for *config.ApplicationOrgProtos +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d4d Processing field: AnchorPeers +2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d4e Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d4f Processing field: MSP +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d50 Proposed new policy Admins for Org1MSP +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d51 Proposed new policy Readers for Org1MSP +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d52 Proposed new policy Writers for Org1MSP +2018-01-14 11:45:36.399 UTC [common/config] NewStandardValues -> DEBU d53 Initializing protos for *config.OrdererProtos +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d54 Processing field: ConsensusType +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d55 Processing field: BatchSize +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d56 Processing field: BatchTimeout +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d57 Processing field: KafkaBrokers +2018-01-14 11:45:36.399 UTC [common/config] initializeProtosStruct -> DEBU d58 Processing field: ChannelRestrictions +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d59 Proposed new policy Writers for Orderer +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d5a Proposed new policy Admins for Orderer +2018-01-14 11:45:36.399 UTC [policies] ProposePolicy -> DEBU d5b Proposed new policy BlockValidation for Orderer +2018-01-14 11:45:36.400 UTC [policies] ProposePolicy -> DEBU d5c Proposed new policy Readers for Orderer +2018-01-14 11:45:36.400 UTC [common/config] NewStandardValues -> DEBU d5d Initializing protos for *config.OrganizationProtos +2018-01-14 11:45:36.400 UTC [common/config] initializeProtosStruct -> DEBU d5e Processing field: MSP +2018-01-14 11:45:36.400 UTC [policies] ProposePolicy -> DEBU d5f Proposed new policy Writers for OrdererOrg +2018-01-14 11:45:36.400 UTC [policies] ProposePolicy -> DEBU d60 Proposed new policy Admins for OrdererOrg +2018-01-14 11:45:36.400 UTC [policies] ProposePolicy -> DEBU d61 Proposed new policy Readers for OrdererOrg +2018-01-14 11:45:36.400 UTC [common/config] Validate -> DEBU d62 Anchor peers for org Org2MSP are anchor_peers: +2018-01-14 11:45:36.400 UTC [common/config] validateMSP -> DEBU d63 Setting up MSP for org Org2MSP +2018-01-14 11:45:36.400 UTC [msp] NewBccspMsp -> DEBU d64 Creating BCCSP-based MSP instance +2018-01-14 11:45:36.400 UTC [msp] Setup -> DEBU d65 Setting up MSP instance Org2MSP +2018-01-14 11:45:36.400 UTC [msp/identity] newIdentity -> DEBU d66 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQMAa8FZI5On3gBiNJtpsilTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -6265,7 +6117,7 @@ xhePNN+o5VCT3Zvjj91TlO4wCgYIKoZIzj0EAwIDSAAwRQIhAPwafFHd9pw+rinv WIyiu5WzmGiDSJu6UUJUE3+qEuWMAiBTTgJjldHGUwSBIVWqosSgr6D6n9FJmonk SCjyRdD3aQ== -----END CERTIFICATE----- -2018-01-04 01:51:00.776 UTC [msp/identity] newIdentity -> DEBU d8b Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.401 UTC [msp/identity] newIdentity -> DEBU d67 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6279,7 +6131,7 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.777 UTC [msp/identity] newIdentity -> DEBU d8c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.401 UTC [msp/identity] newIdentity -> DEBU d68 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6293,116 +6145,208 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:00.777 UTC [msp] Validate -> DEBU d8d MSP Org2MSP validating identity -2018-01-04 01:51:00.777 UTC [msp] Setup -> DEBU d8e Setting up the MSP manager (3 msps) -2018-01-04 01:51:00.777 UTC [msp] Setup -> DEBU d8f MSP manager setup complete, setup 3 msps -2018-01-04 01:51:00.777 UTC [policies] GetPolicy -> DEBU d90 Returning policy Writers for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d91 In commit adding relative sub-policy OrdererOrg/Writers to Orderer -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d92 Returning policy Admins for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d93 In commit adding relative sub-policy OrdererOrg/Admins to Orderer -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d94 Returning policy Readers for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d95 In commit adding relative sub-policy OrdererOrg/Readers to Orderer -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d96 Returning policy Admins for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d97 Returning policy Writers for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d98 Returning policy Readers for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d99 Returning policy Writers for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d9a Returning policy Admins for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d9b In commit adding relative sub-policy Org1MSP/Admins to Application -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d9c Returning policy Readers for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d9d In commit adding relative sub-policy Org1MSP/Readers to Application -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU d9e Returning policy Writers for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU d9f In commit adding relative sub-policy Org1MSP/Writers to Application -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da0 Returning policy Writers for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU da1 In commit adding relative sub-policy Org2MSP/Writers to Application -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da2 Returning policy Admins for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU da3 In commit adding relative sub-policy Org2MSP/Admins to Application -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da4 Returning policy Readers for evaluation -2018-01-04 01:51:00.778 UTC [policies] CommitProposals -> DEBU da5 In commit adding relative sub-policy Org2MSP/Readers to Application -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da6 Returning policy Writers for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da7 Returning policy Writers for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da8 Returning policy Readers for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU da9 Returning policy Readers for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU daa Returning policy Admins for evaluation -2018-01-04 01:51:00.778 UTC [policies] GetPolicy -> DEBU dab Returning policy Admins for evaluation -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dac Returning policy OrdererOrg/Readers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dad In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dae Returning policy Admins for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU daf In commit adding relative sub-policy Orderer/Admins to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db0 Returning policy BlockValidation for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db1 In commit adding relative sub-policy Orderer/BlockValidation to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db2 Returning policy Readers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db3 In commit adding relative sub-policy Orderer/Readers to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db4 Returning policy Writers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db5 In commit adding relative sub-policy Orderer/Writers to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db6 Returning policy OrdererOrg/Writers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db7 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU db8 Returning policy OrdererOrg/Admins for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU db9 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dba Returning policy Org1MSP/Admins for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dbb In commit adding relative sub-policy Application/Org1MSP/Admins to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dbc Returning policy Org1MSP/Readers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dbd In commit adding relative sub-policy Application/Org1MSP/Readers to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dbe Returning policy Org1MSP/Writers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dbf In commit adding relative sub-policy Application/Org1MSP/Writers to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dc0 Returning policy Org2MSP/Writers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dc1 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dc2 Returning policy Org2MSP/Admins for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dc3 In commit adding relative sub-policy Application/Org2MSP/Admins to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dc4 Returning policy Org2MSP/Readers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dc5 In commit adding relative sub-policy Application/Org2MSP/Readers to Channel -2018-01-04 01:51:00.779 UTC [policies] GetPolicy -> DEBU dc6 Returning policy Writers for evaluation -2018-01-04 01:51:00.779 UTC [policies] CommitProposals -> DEBU dc7 In commit adding relative sub-policy Application/Writers to Channel -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dc8 Returning policy Readers for evaluation -2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dc9 In commit adding relative sub-policy Application/Readers to Channel -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dca Returning policy Admins for evaluation -2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dcb In commit adding relative sub-policy Application/Admins to Channel -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dcc Returning policy Readers for evaluation -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dcd Returning policy Readers for evaluation -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dce Returning policy Writers for evaluation -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dcf Returning policy Writers for evaluation -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd0 Returning policy Admins for evaluation -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd1 Returning policy Admins for evaluation -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd2 Returning policy Readers for evaluation -2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dd3 As expected, current configuration has policy '/Channel/Readers' -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd4 Returning policy Writers for evaluation -2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dd5 As expected, current configuration has policy '/Channel/Writers' -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd6 Returning policy Application/Readers for evaluation -2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dd7 As expected, current configuration has policy '/Channel/Application/Readers' -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dd8 Returning policy Application/Writers for evaluation -2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU dd9 As expected, current configuration has policy '/Channel/Application/Writers' -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU dda Returning policy Application/Admins for evaluation -2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU ddb As expected, current configuration has policy '/Channel/Application/Admins' -2018-01-04 01:51:00.780 UTC [policies] GetPolicy -> DEBU ddc Returning policy Orderer/BlockValidation for evaluation -2018-01-04 01:51:00.780 UTC [policies] CommitProposals -> DEBU ddd As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -2018-01-04 01:51:00.780 UTC [orderer/multichain] addBlockSignature -> DEBU dde &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:1 lastConfigSeq:2} -2018-01-04 01:51:00.780 UTC [orderer/multichain] addBlockSignature -> DEBU ddf &{} -2018-01-04 01:51:00.781 UTC [msp] GetLocalMSP -> DEBU de0 Returning existing local MSP -2018-01-04 01:51:00.781 UTC [msp] GetDefaultSigningIdentity -> DEBU de1 Obtaining default signing identity -2018-01-04 01:51:00.781 UTC [msp] GetLocalMSP -> DEBU de2 Returning existing local MSP -2018-01-04 01:51:00.781 UTC [msp] GetDefaultSigningIdentity -> DEBU de3 Obtaining default signing identity -2018-01-04 01:51:00.781 UTC [msp/identity] Sign -> DEBU de4 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...62BE7429EEFCA94D3900F653F1BC4D60 -2018-01-04 01:51:00.781 UTC [msp/identity] Sign -> DEBU de5 Sign: digest: 2797399937621A3CAB0C7DA4431B740030516E0CBCFBD7FBF2C6959AA5324294 -2018-01-04 01:51:00.781 UTC [orderer/multichain] addLastConfigSignature -> DEBU de6 [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 -2018-01-04 01:51:00.781 UTC [msp] GetLocalMSP -> DEBU de7 Returning existing local MSP -2018-01-04 01:51:00.781 UTC [msp] GetDefaultSigningIdentity -> DEBU de8 Obtaining default signing identity -2018-01-04 01:51:00.781 UTC [orderer/multichain] addLastConfigSignature -> DEBU de9 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-04 01:51:00.781 UTC [msp] GetLocalMSP -> DEBU dea Returning existing local MSP -2018-01-04 01:51:00.781 UTC [msp] GetDefaultSigningIdentity -> DEBU deb Obtaining default signing identity -2018-01-04 01:51:00.781 UTC [msp/identity] Sign -> DEBU dec Sign: plaintext: 08020AFA050A0A4F7264657265724D53...62BE7429EEFCA94D3900F653F1BC4D60 -2018-01-04 01:51:00.781 UTC [msp/identity] Sign -> DEBU ded Sign: digest: CA6C3453CB001781ED37CC0F58025942CC80168531C708D96DE314B92960B6DD -2018-01-04 01:51:00.784 UTC [fsblkstorage] indexBlock -> DEBU dee Indexing block [blockNum=2, blockHash=[]byte{0x8b, 0x73, 0x62, 0xf8, 0xa2, 0xa6, 0xcb, 0xf, 0x2a, 0x4e, 0xc3, 0x3a, 0xf, 0x19, 0x6c, 0x27, 0x97, 0xa5, 0xbf, 0x5e, 0x9, 0x65, 0x6b, 0x60, 0x29, 0xce, 0xda, 0x37, 0xfb, 0x33, 0x6, 0x65} txOffsets= -txId= locPointer=offset=70, bytesLength=11972 +2018-01-14 11:45:36.402 UTC [msp] Validate -> DEBU d69 MSP Org2MSP validating identity +2018-01-14 11:45:36.402 UTC [common/config] Validate -> DEBU d6a Anchor peers for org Org1MSP are anchor_peers: +2018-01-14 11:45:36.402 UTC [common/config] validateMSP -> DEBU d6b Setting up MSP for org Org1MSP +2018-01-14 11:45:36.402 UTC [msp] NewBccspMsp -> DEBU d6c Creating BCCSP-based MSP instance +2018-01-14 11:45:36.402 UTC [msp] Setup -> DEBU d6d Setting up MSP instance Org1MSP +2018-01-14 11:45:36.402 UTC [msp/identity] newIdentity -> DEBU d6e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICQzCCAeqgAwIBAgIRAIhIr5gUi+ye7DNknGQXBXswCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE +AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA +BPLOzCIytSnMNGtdCJjtdcBWmPgvYaJryS8lp3Jzo7E/kU5jitiSQrLHHlvgw8cf +db/cHzfxmXVFRvi5PQOc4yCjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG +BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEICKbVYgqqe6iftb7gBsx +JR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIAi+fQIljwJuSaXi +/IGZVmwdA0gMVUP2//iHvQYEsaL8AiBOWnmVXXMdxcfHu7Vmypd342lQGA+3gMzQ +H7n8z1pj5w== +-----END CERTIFICATE----- +2018-01-14 11:45:36.403 UTC [msp/identity] newIdentity -> DEBU d6f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:36.403 UTC [msp/identity] newIdentity -> DEBU d70 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:45:36.404 UTC [msp] Validate -> DEBU d71 MSP Org1MSP validating identity +2018-01-14 11:45:36.404 UTC [common/config] validateMSP -> DEBU d72 Setting up MSP for org OrdererOrg +2018-01-14 11:45:36.404 UTC [msp] NewBccspMsp -> DEBU d73 Creating BCCSP-based MSP instance +2018-01-14 11:45:36.404 UTC [msp] Setup -> DEBU d74 Setting up MSP instance OrdererMSP +2018-01-14 11:45:36.404 UTC [msp/identity] newIdentity -> DEBU d75 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICLzCCAdagAwIBAgIRAJ+yzbH/UC7d1+5ycRzodYUwCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMDMxMzA5NTVaFw0yODAxMDExMzA5NTVaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATXITtMFyu5YrBCbk7otQa0PJsW +gdrtiCIXIciPXE8HwJ9MLAf+9DPXV6+o7fmUnWYjNHz7rxZzQz/7rTPCh+Hbo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCAZHyahNb+pKoei0h4Iig28xXPbxCmNRvZNLa+1K8uNqjAK +BggqhkjOPQQDAgNHADBEAiB/XwanLaD/Nkm3nFIjBjFGLyqOtMcIdFa01QP04oRs +KQIgUs1Bbci6IVdRg+h2krVlcL50pi+ZXHjYW9KTJXFJpEA= +-----END CERTIFICATE----- +2018-01-14 11:45:36.404 UTC [msp/identity] newIdentity -> DEBU d76 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:36.405 UTC [msp/identity] newIdentity -> DEBU d77 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:45:36.405 UTC [msp] Validate -> DEBU d78 MSP OrdererMSP validating identity +2018-01-14 11:45:36.405 UTC [msp] Setup -> DEBU d79 Setting up the MSP manager (3 msps) +2018-01-14 11:45:36.405 UTC [msp] Setup -> DEBU d7a MSP manager setup complete, setup 3 msps +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d7b Returning policy Admins for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d7c In commit adding relative sub-policy Org2MSP/Admins to Application +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d7d Returning policy Readers for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d7e In commit adding relative sub-policy Org2MSP/Readers to Application +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d7f Returning policy Writers for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d80 In commit adding relative sub-policy Org2MSP/Writers to Application +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d81 Returning policy Writers for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d82 In commit adding relative sub-policy Org1MSP/Writers to Application +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d83 Returning policy Admins for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d84 In commit adding relative sub-policy Org1MSP/Admins to Application +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d85 Returning policy Readers for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d86 In commit adding relative sub-policy Org1MSP/Readers to Application +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d87 Returning policy Writers for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d88 Returning policy Writers for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d89 Returning policy Readers for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8a Returning policy Readers for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8b Returning policy Admins for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8c Returning policy Admins for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8d Returning policy Writers for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d8e In commit adding relative sub-policy OrdererOrg/Writers to Orderer +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d8f Returning policy Admins for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d90 In commit adding relative sub-policy OrdererOrg/Admins to Orderer +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d91 Returning policy Readers for evaluation +2018-01-14 11:45:36.406 UTC [policies] CommitProposals -> DEBU d92 In commit adding relative sub-policy OrdererOrg/Readers to Orderer +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d93 Returning policy Writers for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d94 Returning policy Admins for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d95 Returning policy Writers for evaluation +2018-01-14 11:45:36.406 UTC [policies] GetPolicy -> DEBU d96 Returning policy Readers for evaluation +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d97 Returning policy Writers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU d98 In commit adding relative sub-policy Application/Writers to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d99 Returning policy Readers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU d9a In commit adding relative sub-policy Application/Readers to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d9b Returning policy Org2MSP/Admins for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU d9c In commit adding relative sub-policy Application/Org2MSP/Admins to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d9d Returning policy Org2MSP/Readers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU d9e In commit adding relative sub-policy Application/Org2MSP/Readers to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU d9f Returning policy Org2MSP/Writers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da0 In commit adding relative sub-policy Application/Org2MSP/Writers to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da1 Returning policy Org1MSP/Writers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da2 In commit adding relative sub-policy Application/Org1MSP/Writers to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da3 Returning policy Org1MSP/Admins for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da4 In commit adding relative sub-policy Application/Org1MSP/Admins to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da5 Returning policy Admins for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da6 In commit adding relative sub-policy Application/Admins to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da7 Returning policy Org1MSP/Readers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU da8 In commit adding relative sub-policy Application/Org1MSP/Readers to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU da9 Returning policy Writers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU daa In commit adding relative sub-policy Orderer/Writers to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU dab Returning policy Admins for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU dac In commit adding relative sub-policy Orderer/Admins to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU dad Returning policy BlockValidation for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU dae In commit adding relative sub-policy Orderer/BlockValidation to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU daf Returning policy Readers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU db0 In commit adding relative sub-policy Orderer/Readers to Channel +2018-01-14 11:45:36.407 UTC [policies] GetPolicy -> DEBU db1 Returning policy OrdererOrg/Writers for evaluation +2018-01-14 11:45:36.407 UTC [policies] CommitProposals -> DEBU db2 In commit adding relative sub-policy Orderer/OrdererOrg/Writers to Channel +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db3 Returning policy OrdererOrg/Admins for evaluation +2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU db4 In commit adding relative sub-policy Orderer/OrdererOrg/Admins to Channel +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db5 Returning policy OrdererOrg/Readers for evaluation +2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU db6 In commit adding relative sub-policy Orderer/OrdererOrg/Readers to Channel +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db7 Returning policy Admins for evaluation +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db8 Returning policy Admins for evaluation +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU db9 Returning policy Readers for evaluation +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dba Returning policy Readers for evaluation +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dbb Returning policy Writers for evaluation +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dbc Returning policy Writers for evaluation +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dbd Returning policy Readers for evaluation +2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dbe As expected, current configuration has policy '/Channel/Readers' +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dbf Returning policy Writers for evaluation +2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc0 As expected, current configuration has policy '/Channel/Writers' +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dc1 Returning policy Application/Readers for evaluation +2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc2 As expected, current configuration has policy '/Channel/Application/Readers' +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dc3 Returning policy Application/Writers for evaluation +2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc4 As expected, current configuration has policy '/Channel/Application/Writers' +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dc5 Returning policy Application/Admins for evaluation +2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc6 As expected, current configuration has policy '/Channel/Application/Admins' +2018-01-14 11:45:36.408 UTC [policies] GetPolicy -> DEBU dc7 Returning policy Orderer/BlockValidation for evaluation +2018-01-14 11:45:36.408 UTC [policies] CommitProposals -> DEBU dc8 As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +2018-01-14 11:45:36.408 UTC [orderer/multichain] addBlockSignature -> DEBU dc9 &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:1 lastConfigSeq:2} +2018-01-14 11:45:36.408 UTC [orderer/multichain] addBlockSignature -> DEBU dca &{} +2018-01-14 11:45:36.408 UTC [msp] GetLocalMSP -> DEBU dcb Returning existing local MSP +2018-01-14 11:45:36.408 UTC [msp] GetDefaultSigningIdentity -> DEBU dcc Obtaining default signing identity +2018-01-14 11:45:36.408 UTC [msp] GetLocalMSP -> DEBU dcd Returning existing local MSP +2018-01-14 11:45:36.408 UTC [msp] GetDefaultSigningIdentity -> DEBU dce Obtaining default signing identity +2018-01-14 11:45:36.408 UTC [msp/identity] Sign -> DEBU dcf Sign: plaintext: 0AFA050A0A4F7264657265724D535012...DC38C8D138802B09833C93850A5A9B0F +2018-01-14 11:45:36.408 UTC [msp/identity] Sign -> DEBU dd0 Sign: digest: A6613FC4D4B18AA6BF539E858DF7D751A280885F5B10C2DE360373BBA2F34B69 +2018-01-14 11:45:36.409 UTC [orderer/multichain] addLastConfigSignature -> DEBU dd1 [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfig from 1 to 2 +2018-01-14 11:45:36.409 UTC [msp] GetLocalMSP -> DEBU dd2 Returning existing local MSP +2018-01-14 11:45:36.409 UTC [msp] GetDefaultSigningIdentity -> DEBU dd3 Obtaining default signing identity +2018-01-14 11:45:36.409 UTC [orderer/multichain] addLastConfigSignature -> DEBU dd4 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-14 11:45:36.409 UTC [msp] GetLocalMSP -> DEBU dd5 Returning existing local MSP +2018-01-14 11:45:36.409 UTC [msp] GetDefaultSigningIdentity -> DEBU dd6 Obtaining default signing identity +2018-01-14 11:45:36.409 UTC [msp/identity] Sign -> DEBU dd7 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...DC38C8D138802B09833C93850A5A9B0F +2018-01-14 11:45:36.409 UTC [msp/identity] Sign -> DEBU dd8 Sign: digest: 1F5B51E7CC68092D20BDB325CC4AD81AF553F22EDFABCE151A04C1ADD033F0B7 +2018-01-14 11:45:36.514 UTC [fsblkstorage] indexBlock -> DEBU dd9 Indexing block [blockNum=2, blockHash=[]byte{0xb9, 0x70, 0xfc, 0x86, 0xfa, 0x16, 0xa, 0x76, 0xc0, 0x74, 0xfe, 0xf4, 0x31, 0x60, 0x81, 0x1, 0x3f, 0x85, 0x4f, 0x9c, 0xcf, 0xe9, 0xaf, 0x6b, 0xf7, 0x1a, 0xbf, 0x6b, 0x65, 0x32, 0x5c, 0xd7} txOffsets= +txId= locPointer=offset=70, bytesLength=11973 ] -2018-01-04 01:51:00.785 UTC [fsblkstorage] updateCheckpoint -> DEBU def Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39458], isChainEmpty=[false], lastBlockNumber=[2] -2018-01-04 01:51:00.785 UTC [orderer/multichain] WriteBlock -> DEBU df0 [channel: businesschannel] Wrote block 2 -2018-01-04 01:51:03.773 UTC [orderer/main] Deliver -> DEBU df1 Starting new Deliver handler -2018-01-04 01:51:03.774 UTC [orderer/common/deliver] Handle -> DEBU df2 Starting new deliver loop -2018-01-04 01:51:03.774 UTC [orderer/common/deliver] Handle -> DEBU df3 Attempting to read seek info message -2018-01-04 01:51:03.775 UTC [policies] GetPolicy -> DEBU df4 Returning policy Readers for evaluation -2018-01-04 01:51:03.775 UTC [cauthdsl] func1 -> DEBU df5 0xc42010ebf8 gate 1515030663775534900 evaluation starts -2018-01-04 01:51:03.775 UTC [cauthdsl] func2 -> DEBU df6 0xc42010ebf8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:03.775 UTC [cauthdsl] func2 -> DEBU df7 0xc42010ebf8 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:03.776 UTC [msp/identity] newIdentity -> DEBU df8 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:36.515 UTC [fsblkstorage] updateCheckpoint -> DEBU dda Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39458], isChainEmpty=[false], lastBlockNumber=[2] +2018-01-14 11:45:36.515 UTC [orderer/multichain] WriteBlock -> DEBU ddb [channel: businesschannel] Wrote block 2 +2018-01-14 11:45:39.163 UTC [orderer/main] Deliver -> DEBU ddc Starting new Deliver handler +2018-01-14 11:45:39.163 UTC [orderer/common/deliver] Handle -> DEBU ddd Starting new deliver loop +2018-01-14 11:45:39.163 UTC [orderer/common/deliver] Handle -> DEBU dde Attempting to read seek info message +2018-01-14 11:45:39.164 UTC [policies] GetPolicy -> DEBU ddf Returning policy Readers for evaluation +2018-01-14 11:45:39.164 UTC [cauthdsl] func1 -> DEBU de0 0xc420150c00 gate 1515930339164631864 evaluation starts +2018-01-14 11:45:39.164 UTC [cauthdsl] func2 -> DEBU de1 0xc420150c00 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:39.165 UTC [cauthdsl] func2 -> DEBU de2 0xc420150c00 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:39.165 UTC [msp/identity] newIdentity -> DEBU de3 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6416,13 +6360,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -2018-01-04 01:51:03.778 UTC [cauthdsl] func2 -> DEBU df9 0xc42010ebf8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -2018-01-04 01:51:03.778 UTC [cauthdsl] func2 -> DEBU dfa 0xc42010ebf8 principal evaluation fails -2018-01-04 01:51:03.778 UTC [cauthdsl] func1 -> DEBU dfb 0xc42010ebf8 gate 1515030663775534900 evaluation fails -2018-01-04 01:51:03.778 UTC [cauthdsl] func1 -> DEBU dfc 0xc42010ec08 gate 1515030663778402400 evaluation starts -2018-01-04 01:51:03.778 UTC [cauthdsl] func2 -> DEBU dfd 0xc42010ec08 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:03.778 UTC [cauthdsl] func2 -> DEBU dfe 0xc42010ec08 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:03.778 UTC [msp/identity] newIdentity -> DEBU dff Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:39.166 UTC [cauthdsl] func2 -> DEBU de4 0xc420150c00 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-14 11:45:39.166 UTC [cauthdsl] func2 -> DEBU de5 0xc420150c00 principal evaluation fails +2018-01-14 11:45:39.166 UTC [cauthdsl] func1 -> DEBU de6 0xc420150c00 gate 1515930339164631864 evaluation fails +2018-01-14 11:45:39.166 UTC [cauthdsl] func1 -> DEBU de7 0xc420150c10 gate 1515930339166737864 evaluation starts +2018-01-14 11:45:39.166 UTC [cauthdsl] func2 -> DEBU de8 0xc420150c10 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:39.166 UTC [cauthdsl] func2 -> DEBU de9 0xc420150c10 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414c77306a542f4649616e4d78506736773275554d536f77436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424b71666457462f6f592b32796d716a6b2b416c424e2b524254687850702f6b0a6c552b42686d474172706e6c474e643769543670696c2f69534474664135785a397765354e496654656846716d5a63493667314e3137326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413063414d45514349414c534a7147630a76645a48434a305265635651325264746b646e6f6b353770363858466c524279326c34784169414a53365a32797879456c4275625049304d426e2f2f5873396c0a30356e304d624c772f55673365674a334a413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:39.168 UTC [msp/identity] newIdentity -> DEBU dea Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6436,38 +6380,38 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -2018-01-04 01:51:03.779 UTC [msp] SatisfiesPrincipal -> DEBU e00 Checking if identity satisfies MEMBER role for Org1MSP -2018-01-04 01:51:03.779 UTC [msp] Validate -> DEBU e01 MSP Org1MSP validating identity -2018-01-04 01:51:03.779 UTC [cauthdsl] func2 -> DEBU e02 0xc42010ec08 principal matched by identity 0 -2018-01-04 01:51:03.779 UTC [msp/identity] Verify -> DEBU e03 Verify: digest = 00000000 e4 63 28 5f 49 84 3f cc 8e 32 9c e8 f8 da 46 ad |.c(_I.?..2....F.| -00000010 af 5c b1 7e 13 4d e4 ea 60 04 39 5d b7 fe 57 d2 |.\.~.M..`.9]..W.| -2018-01-04 01:51:03.779 UTC [msp/identity] Verify -> DEBU e04 Verify: sig = 00000000 30 44 02 20 14 7f 3c dd fb e8 96 fe 53 75 68 3b |0D. ..<.....Suh;| -00000010 5f 36 c6 01 c8 be b5 2c 50 8c ab 9f b3 91 6e 81 |_6.....,P.....n.| -00000020 99 be e4 40 02 20 6d ef 39 6f bf d1 34 83 f5 8c |...@. m.9o..4...| -00000030 e4 b3 ff 1e e7 3a a6 fb 86 87 3d 84 05 4f 3c 76 |.....:....=..O DEBU e05 0xc42010ec08 principal evaluation succeeds for identity 0 -2018-01-04 01:51:03.780 UTC [cauthdsl] func1 -> DEBU e06 0xc42010ec08 gate 1515030663778402400 evaluation succeeds -2018-01-04 01:51:03.780 UTC [orderer/common/sigfilter] Apply -> DEBU e07 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209168c0 1 [0xc42010e810]}) %!s(*policies.implicitMetaPolicy=&{0xc420917020 1 [0xc42010e8c0 0xc42010e960]})]} -2018-01-04 01:51:03.780 UTC [orderer/common/deliver] Handle -> DEBU e08 [channel: businesschannel] Received seekInfo (0xc42027ed80) start: > stop: > -2018-01-04 01:51:03.780 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e09 retrieveBlockByNumber() - blockNum = [1] -2018-01-04 01:51:03.781 UTC [fsblkstorage] newBlockfileStream -> DEBU e0a newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] -2018-01-04 01:51:03.781 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e0b Remaining bytes=[27525], Going to peek [8] bytes -2018-01-04 01:51:03.781 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e0c Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} -2018-01-04 01:51:03.781 UTC [orderer/common/deliver] Handle -> DEBU e0d [channel: businesschannel] Delivering block for (0xc42027ed80) -2018-01-04 01:51:03.782 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e0e retrieveBlockByNumber() - blockNum = [2] -2018-01-04 01:51:03.782 UTC [fsblkstorage] newBlockfileStream -> DEBU e0f newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25665] -2018-01-04 01:51:03.782 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e10 Remaining bytes=[13793], Going to peek [8] bytes -2018-01-04 01:51:03.783 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e11 Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25665], bytesOffset=[25667]} -2018-01-04 01:51:03.783 UTC [orderer/common/deliver] Handle -> DEBU e12 [channel: businesschannel] Delivering block for (0xc42027ed80) -2018-01-04 01:51:04.066 UTC [orderer/main] Deliver -> DEBU e13 Starting new Deliver handler -2018-01-04 01:51:04.067 UTC [orderer/common/deliver] Handle -> DEBU e14 Starting new deliver loop -2018-01-04 01:51:04.068 UTC [orderer/common/deliver] Handle -> DEBU e15 Attempting to read seek info message -2018-01-04 01:51:04.068 UTC [policies] GetPolicy -> DEBU e16 Returning policy Readers for evaluation -2018-01-04 01:51:04.069 UTC [cauthdsl] func1 -> DEBU e17 0xc420026028 gate 1515030664069075500 evaluation starts -2018-01-04 01:51:04.069 UTC [cauthdsl] func2 -> DEBU e18 0xc420026028 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:04.069 UTC [cauthdsl] func2 -> DEBU e19 0xc420026028 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:04.070 UTC [msp/identity] newIdentity -> DEBU e1a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:39.169 UTC [msp] SatisfiesPrincipal -> DEBU deb Checking if identity satisfies MEMBER role for Org1MSP +2018-01-14 11:45:39.169 UTC [msp] Validate -> DEBU dec MSP Org1MSP validating identity +2018-01-14 11:45:39.170 UTC [cauthdsl] func2 -> DEBU ded 0xc420150c10 principal matched by identity 0 +2018-01-14 11:45:39.170 UTC [msp/identity] Verify -> DEBU dee Verify: digest = 00000000 46 f3 26 da 1a 4a 78 63 13 ae a0 e3 d5 9e 97 36 |F.&..Jxc.......6| +00000010 1a 8f e8 f6 e7 66 c7 b1 55 87 48 22 ad e5 13 4c |.....f..U.H"...L| +2018-01-14 11:45:39.170 UTC [msp/identity] Verify -> DEBU def Verify: sig = 00000000 30 44 02 20 5b c1 2e a1 a9 92 67 aa 5c 77 55 6e |0D. [.....g.\wUn| +00000010 b5 40 ba 75 e1 07 12 ae 1a 5d ff 2a 13 c3 76 4f |.@.u.....].*..vO| +00000020 88 11 3f f6 02 20 72 4d 85 22 63 53 e7 05 a0 be |..?.. rM."cS....| +00000030 6a 78 5e ef 21 40 2d 37 16 2e 9c b9 59 a6 8e 52 |jx^.!@-7....Y..R| +00000040 ee 70 bd 89 63 38 |.p..c8| +2018-01-14 11:45:39.170 UTC [cauthdsl] func2 -> DEBU df0 0xc420150c10 principal evaluation succeeds for identity 0 +2018-01-14 11:45:39.170 UTC [cauthdsl] func1 -> DEBU df1 0xc420150c10 gate 1515930339166737864 evaluation succeeds +2018-01-14 11:45:39.170 UTC [orderer/common/sigfilter] Apply -> DEBU df2 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:45:39.171 UTC [orderer/common/deliver] Handle -> DEBU df3 [channel: businesschannel] Received seekInfo (0xc420373960) start: > stop: > +2018-01-14 11:45:39.171 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU df4 retrieveBlockByNumber() - blockNum = [1] +2018-01-14 11:45:39.171 UTC [fsblkstorage] newBlockfileStream -> DEBU df5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] +2018-01-14 11:45:39.171 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU df6 Remaining bytes=[27525], Going to peek [8] bytes +2018-01-14 11:45:39.171 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU df7 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} +2018-01-14 11:45:39.172 UTC [orderer/common/deliver] Handle -> DEBU df8 [channel: businesschannel] Delivering block for (0xc420373960) +2018-01-14 11:45:39.172 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU df9 retrieveBlockByNumber() - blockNum = [2] +2018-01-14 11:45:39.172 UTC [fsblkstorage] newBlockfileStream -> DEBU dfa newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +2018-01-14 11:45:39.173 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU dfb Remaining bytes=[13792], Going to peek [8] bytes +2018-01-14 11:45:39.173 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU dfc Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +2018-01-14 11:45:39.173 UTC [orderer/common/deliver] Handle -> DEBU dfd [channel: businesschannel] Delivering block for (0xc420373960) +2018-01-14 11:45:39.602 UTC [orderer/main] Deliver -> DEBU dfe Starting new Deliver handler +2018-01-14 11:45:39.602 UTC [orderer/common/deliver] Handle -> DEBU dff Starting new deliver loop +2018-01-14 11:45:39.602 UTC [orderer/common/deliver] Handle -> DEBU e00 Attempting to read seek info message +2018-01-14 11:45:39.608 UTC [policies] GetPolicy -> DEBU e01 Returning policy Readers for evaluation +2018-01-14 11:45:39.609 UTC [cauthdsl] func1 -> DEBU e02 0xc420026028 gate 1515930339609038364 evaluation starts +2018-01-14 11:45:39.609 UTC [cauthdsl] func2 -> DEBU e03 0xc420026028 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:45:39.609 UTC [cauthdsl] func2 -> DEBU e04 0xc420026028 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:45:39.609 UTC [msp/identity] newIdentity -> DEBU e05 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6481,163 +6425,38 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU Cp7fopYLAR0CUyw+Xyk= -----END CERTIFICATE----- -2018-01-04 01:51:04.071 UTC [cauthdsl] func2 -> DEBU e1b 0xc420026028 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -2018-01-04 01:51:04.071 UTC [cauthdsl] func2 -> DEBU e1c 0xc420026028 principal evaluation fails -2018-01-04 01:51:04.071 UTC [cauthdsl] func1 -> DEBU e1d 0xc420026028 gate 1515030664069075500 evaluation fails -2018-01-04 01:51:04.072 UTC [cauthdsl] func1 -> DEBU e1e 0xc420026060 gate 1515030664072385200 evaluation starts -2018-01-04 01:51:04.072 UTC [cauthdsl] func2 -> DEBU e1f 0xc420026060 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:04.072 UTC [cauthdsl] func2 -> DEBU e20 0xc420026060 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:04.073 UTC [msp/identity] newIdentity -> DEBU e21 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -Cp7fopYLAR0CUyw+Xyk= ------END CERTIFICATE----- -2018-01-04 01:51:04.074 UTC [cauthdsl] func2 -> DEBU e22 0xc420026060 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-04 01:51:04.074 UTC [cauthdsl] func2 -> DEBU e23 0xc420026060 principal evaluation fails -2018-01-04 01:51:04.074 UTC [cauthdsl] func1 -> DEBU e24 0xc420026060 gate 1515030664072385200 evaluation fails -2018-01-04 01:51:04.074 UTC [cauthdsl] func1 -> DEBU e25 0xc420026178 gate 1515030664074321600 evaluation starts -2018-01-04 01:51:04.074 UTC [cauthdsl] func2 -> DEBU e26 0xc420026178 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:04.074 UTC [cauthdsl] func2 -> DEBU e27 0xc420026178 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952415077537a796731505072436556685271446f3449526377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a417562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d343941774548413049414248494f3843636b4e3548675931692f376730494a647a6b31373245327834440a6c45796d73507842544336534d78324837366779415a626155484c7a444f633033575875784e6d2f35434562305043756734674c6d59716a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495144754d4344310a63427a353934367a51536178435875616e626c7676506d446f34454a6a33664e3154546c347749674b364f4a4e6f693555594668762f43577448767238364a550a437037666f70594c415230435579772b58796b3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:04.074 UTC [msp/identity] newIdentity -> DEBU e28 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAPwSzyg1PPrCeVhRqDo4IRcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjAub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABHIO8CckN5HgY1i/7g0IJdzk172E2x4D -lEymsPxBTC6SMx2H76gyAZbaUHLzDOc03WXuxNm/5CEb0PCug4gLmYqjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQDuMCD1 -cBz5946zQSaxCXuanblvvPmDo4EJj3fN1TTl4wIgK6OJNoi5UYFhv/CWtHvr86JU -Cp7fopYLAR0CUyw+Xyk= ------END CERTIFICATE----- -2018-01-04 01:51:04.075 UTC [msp] SatisfiesPrincipal -> DEBU e29 Checking if identity satisfies MEMBER role for Org2MSP -2018-01-04 01:51:04.075 UTC [msp] Validate -> DEBU e2a MSP Org2MSP validating identity -2018-01-04 01:51:04.075 UTC [cauthdsl] func2 -> DEBU e2b 0xc420026178 principal matched by identity 0 -2018-01-04 01:51:04.075 UTC [msp/identity] Verify -> DEBU e2c Verify: digest = 00000000 36 1e 09 c2 4f 87 c7 4c 8b 51 d7 1a 2d bd 9b 5d |6...O..L.Q..-..]| -00000010 9c 58 62 61 35 7c 9a 35 28 94 05 b9 9f 82 a2 43 |.Xba5|.5(......C| -2018-01-04 01:51:04.075 UTC [msp/identity] Verify -> DEBU e2d Verify: sig = 00000000 30 44 02 20 60 1e 59 e6 0d 8f 95 88 91 d7 eb 64 |0D. `.Y........d| -00000010 d6 ea 9b 72 08 25 35 a8 81 16 3d d3 91 02 f3 14 |...r.%5...=.....| -00000020 c2 3b 16 10 02 20 1a c0 02 bf b1 49 29 b3 39 3c |.;... .....I).9<| -00000030 68 ab 0d cf 21 00 fb d0 ac 29 18 1d e2 db 7a 4f |h...!....)....zO| -00000040 21 12 46 ad bf fd |!.F...| -2018-01-04 01:51:04.075 UTC [cauthdsl] func2 -> DEBU e2e 0xc420026178 principal evaluation succeeds for identity 0 -2018-01-04 01:51:04.076 UTC [cauthdsl] func1 -> DEBU e2f 0xc420026178 gate 1515030664074321600 evaluation succeeds -2018-01-04 01:51:04.076 UTC [orderer/common/sigfilter] Apply -> DEBU e30 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209168c0 1 [0xc42010e810]}) %!s(*policies.implicitMetaPolicy=&{0xc420917020 1 [0xc42010e8c0 0xc42010e960]})]} -2018-01-04 01:51:04.076 UTC [orderer/common/deliver] Handle -> DEBU e31 [channel: businesschannel] Received seekInfo (0xc4201f9360) start: > stop: > -2018-01-04 01:51:04.076 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e32 retrieveBlockByNumber() - blockNum = [1] -2018-01-04 01:51:04.076 UTC [fsblkstorage] newBlockfileStream -> DEBU e33 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] -2018-01-04 01:51:04.076 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e34 Remaining bytes=[27525], Going to peek [8] bytes -2018-01-04 01:51:04.076 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e35 Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} -2018-01-04 01:51:04.076 UTC [orderer/common/deliver] Handle -> DEBU e36 [channel: businesschannel] Delivering block for (0xc4201f9360) -2018-01-04 01:51:04.078 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e37 retrieveBlockByNumber() - blockNum = [2] -2018-01-04 01:51:04.079 UTC [fsblkstorage] newBlockfileStream -> DEBU e38 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25665] -2018-01-04 01:51:04.079 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e39 Remaining bytes=[13793], Going to peek [8] bytes -2018-01-04 01:51:04.079 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e3a Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25665], bytesOffset=[25667]} -2018-01-04 01:51:04.079 UTC [orderer/common/deliver] Handle -> DEBU e3b [channel: businesschannel] Delivering block for (0xc4201f9360) -2018-01-04 01:51:04.221 UTC [orderer/main] Deliver -> DEBU e3c Starting new Deliver handler -2018-01-04 01:51:04.221 UTC [orderer/common/deliver] Handle -> DEBU e3d Starting new deliver loop -2018-01-04 01:51:04.221 UTC [orderer/common/deliver] Handle -> DEBU e3e Attempting to read seek info message -2018-01-04 01:51:04.224 UTC [policies] GetPolicy -> DEBU e3f Returning policy Readers for evaluation -2018-01-04 01:51:04.224 UTC [cauthdsl] func1 -> DEBU e40 0xc420026408 gate 1515030664224825900 evaluation starts -2018-01-04 01:51:04.225 UTC [cauthdsl] func2 -> DEBU e41 0xc420026408 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:04.226 UTC [cauthdsl] func2 -> DEBU e42 0xc420026408 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b45494b4f734b726e62316c7478484d61703670455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f4566476a433856624d457a435943504b4c4a475364727259645a666552410a464857435832542b36554b32755553724c365933436a476841306b39646351556c767a362f4a6862464d68554445384971395665724f536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413063414d45514349414c44527075340a36726c524771775a455249553042686336456a4644724f4c79382b615174753576663549416942737834765a6171767552314a79565a4a782f357973552b6a370a3778706e666b4e2f54784e427353333156413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:04.229 UTC [msp/identity] newIdentity -> DEBU e43 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -7xpnfkN/TxNBsS31VA== ------END CERTIFICATE----- -2018-01-04 01:51:04.230 UTC [cauthdsl] func2 -> DEBU e44 0xc420026408 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -2018-01-04 01:51:04.230 UTC [cauthdsl] func2 -> DEBU e45 0xc420026408 principal evaluation fails -2018-01-04 01:51:04.230 UTC [cauthdsl] func1 -> DEBU e46 0xc420026408 gate 1515030664224825900 evaluation fails -2018-01-04 01:51:04.230 UTC [cauthdsl] func1 -> DEBU e47 0xc420026418 gate 1515030664230884500 evaluation starts -2018-01-04 01:51:04.230 UTC [cauthdsl] func2 -> DEBU e48 0xc420026418 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:04.230 UTC [cauthdsl] func2 -> DEBU e49 0xc420026418 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b45494b4f734b726e62316c7478484d61703670455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f4566476a433856624d457a435943504b4c4a475364727259645a666552410a464857435832542b36554b32755553724c365933436a476841306b39646351556c767a362f4a6862464d68554445384971395665724f536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413063414d45514349414c44527075340a36726c524771775a455249553042686336456a4644724f4c79382b615174753576663549416942737834765a6171767552314a79565a4a782f357973552b6a370a3778706e666b4e2f54784e427353333156413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:04.232 UTC [msp/identity] newIdentity -> DEBU e4a Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -7xpnfkN/TxNBsS31VA== ------END CERTIFICATE----- -2018-01-04 01:51:04.241 UTC [cauthdsl] func2 -> DEBU e4b 0xc420026418 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-04 01:51:04.243 UTC [cauthdsl] func2 -> DEBU e4c 0xc420026418 principal evaluation fails -2018-01-04 01:51:04.245 UTC [cauthdsl] func1 -> DEBU e4d 0xc420026418 gate 1515030664230884500 evaluation fails -2018-01-04 01:51:04.246 UTC [cauthdsl] func1 -> DEBU e4e 0xc420026428 gate 1515030664246692400 evaluation starts -2018-01-04 01:51:04.247 UTC [cauthdsl] func2 -> DEBU e4f 0xc420026428 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:04.248 UTC [cauthdsl] func2 -> DEBU e50 0xc420026428 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d49494347544343416343674177494241674952414b45494b4f734b726e62316c7478484d61703670455577436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424f4566476a433856624d457a435943504b4c4a475364727259645a666552410a464857435832542b36554b32755553724c365933436a476841306b39646351556c767a362f4a6862464d68554445384971395665724f536a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413063414d45514349414c44527075340a36726c524771775a455249553042686336456a4644724f4c79382b615174753576663549416942737834765a6171767552314a79565a4a782f357973552b6a370a3778706e666b4e2f54784e427353333156413d3d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:04.252 UTC [msp/identity] newIdentity -> DEBU e51 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKEIKOsKrnb1ltxHMap6pEUwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOEfGjC8VbMEzCYCPKLJGSdrrYdZfeRA -FHWCX2T+6UK2uUSrL6Y3CjGhA0k9dcQUlvz6/JhbFMhUDE8Iq9VerOSjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0cAMEQCIALDRpu4 -6rlRGqwZERIU0Bhc6EjFDrOLy8+aQtu5vf5IAiBsx4vZaqvuR1JyVZJx/5ysU+j7 -7xpnfkN/TxNBsS31VA== ------END CERTIFICATE----- -2018-01-04 01:51:04.254 UTC [msp] SatisfiesPrincipal -> DEBU e52 Checking if identity satisfies MEMBER role for Org2MSP -2018-01-04 01:51:04.255 UTC [msp] Validate -> DEBU e53 MSP Org2MSP validating identity -2018-01-04 01:51:04.255 UTC [cauthdsl] func2 -> DEBU e54 0xc420026428 principal matched by identity 0 -2018-01-04 01:51:04.256 UTC [msp/identity] Verify -> DEBU e55 Verify: digest = 00000000 8c 26 95 94 64 b8 01 25 87 e6 db 0b c0 09 d8 18 |.&..d..%........| -00000010 fe 24 c8 f3 7c 5a c2 a5 b1 89 d6 55 2c 8e 8c b6 |.$..|Z.....U,...| -2018-01-04 01:51:04.257 UTC [msp/identity] Verify -> DEBU e56 Verify: sig = 00000000 30 44 02 20 3a 03 23 0d a0 16 17 95 0d 00 82 b3 |0D. :.#.........| -00000010 73 47 6a 2a 99 14 d1 07 a7 7c 91 2f 9e c8 35 61 |sGj*.....|./..5a| -00000020 01 c6 fb 5a 02 20 77 5c fb 47 70 8d 13 2e bf 12 |...Z. w\.Gp.....| -00000030 d5 6c 15 66 48 7b 5f 87 8b 9d 32 18 21 0e 27 bf |.l.fH{_...2.!.'.| -00000040 a8 14 63 54 41 23 |..cTA#| -2018-01-04 01:51:04.257 UTC [cauthdsl] func2 -> DEBU e57 0xc420026428 principal evaluation succeeds for identity 0 -2018-01-04 01:51:04.257 UTC [cauthdsl] func1 -> DEBU e58 0xc420026428 gate 1515030664246692400 evaluation succeeds -2018-01-04 01:51:04.257 UTC [orderer/common/sigfilter] Apply -> DEBU e59 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc4209168c0 1 [0xc42010e810]}) %!s(*policies.implicitMetaPolicy=&{0xc420917020 1 [0xc42010e8c0 0xc42010e960]})]} -2018-01-04 01:51:04.260 UTC [orderer/common/deliver] Handle -> DEBU e5a [channel: businesschannel] Received seekInfo (0xc42007b860) start: > stop: > -2018-01-04 01:51:04.260 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e5b retrieveBlockByNumber() - blockNum = [1] -2018-01-04 01:51:04.261 UTC [fsblkstorage] newBlockfileStream -> DEBU e5c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] -2018-01-04 01:51:04.261 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e5d Remaining bytes=[27525], Going to peek [8] bytes -2018-01-04 01:51:04.261 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e5e Returning blockbytes - length=[13730], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} -2018-01-04 01:51:04.261 UTC [orderer/common/deliver] Handle -> DEBU e5f [channel: businesschannel] Delivering block for (0xc42007b860) -2018-01-04 01:51:04.262 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e60 retrieveBlockByNumber() - blockNum = [2] -2018-01-04 01:51:04.263 UTC [fsblkstorage] newBlockfileStream -> DEBU e61 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25665] -2018-01-04 01:51:04.263 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e62 Remaining bytes=[13793], Going to peek [8] bytes -2018-01-04 01:51:04.263 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e63 Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25665], bytesOffset=[25667]} -2018-01-04 01:51:04.263 UTC [orderer/common/deliver] Handle -> DEBU e64 [channel: businesschannel] Delivering block for (0xc42007b860) -2018-01-04 01:51:05.445 UTC [orderer/main] Broadcast -> DEBU e65 Starting new Broadcast handler -2018-01-04 01:51:05.445 UTC [orderer/common/broadcast] Handle -> DEBU e66 Starting new broadcast loop -2018-01-04 01:51:26.289 UTC [orderer/common/broadcast] Handle -> DEBU e67 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -2018-01-04 01:51:26.290 UTC [policies] GetPolicy -> DEBU e68 Returning policy Writers for evaluation -2018-01-04 01:51:26.290 UTC [cauthdsl] func1 -> DEBU e69 0xc420026480 gate 1515030686290408600 evaluation starts -2018-01-04 01:51:26.290 UTC [cauthdsl] func2 -> DEBU e6a 0xc420026480 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:26.290 UTC [cauthdsl] func2 -> DEBU e6b 0xc420026480 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:26.292 UTC [msp/identity] newIdentity -> DEBU e6c Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:45:39.610 UTC [msp] SatisfiesPrincipal -> DEBU e06 Checking if identity satisfies MEMBER role for Org2MSP +2018-01-14 11:45:39.610 UTC [msp] Validate -> DEBU e07 MSP Org2MSP validating identity +2018-01-14 11:45:39.611 UTC [cauthdsl] func2 -> DEBU e08 0xc420026028 principal matched by identity 0 +2018-01-14 11:45:39.611 UTC [msp/identity] Verify -> DEBU e09 Verify: digest = 00000000 04 df fb 71 bd 61 d1 0a c0 26 36 7e f8 ce 68 b6 |...q.a...&6~..h.| +00000010 b9 1f 44 7c f0 49 8d 25 ec c9 00 d1 bf 16 31 80 |..D|.I.%......1.| +2018-01-14 11:45:39.611 UTC [msp/identity] Verify -> DEBU e0a Verify: sig = 00000000 30 44 02 20 74 83 61 59 4e 75 ef c4 be 18 d9 94 |0D. t.aYNu......| +00000010 a9 fe dc 02 92 67 a7 f8 d0 d6 c6 2b dd 79 22 e9 |.....g.....+.y".| +00000020 25 38 28 f4 02 20 46 09 13 72 42 50 d9 95 46 e0 |%8(.. F..rBP..F.| +00000030 28 df cc 49 24 3f 1b 22 09 6d 48 4c ed dc 4f d0 |(..I$?.".mHL..O.| +00000040 c1 82 0c 9c f2 5b |.....[| +2018-01-14 11:45:39.611 UTC [cauthdsl] func2 -> DEBU e0b 0xc420026028 principal evaluation succeeds for identity 0 +2018-01-14 11:45:39.611 UTC [cauthdsl] func1 -> DEBU e0c 0xc420026028 gate 1515930339609038364 evaluation succeeds +2018-01-14 11:45:39.611 UTC [orderer/common/sigfilter] Apply -> DEBU e0d Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:45:39.611 UTC [orderer/common/deliver] Handle -> DEBU e0e [channel: businesschannel] Received seekInfo (0xc42034dc80) start: > stop: > +2018-01-14 11:45:39.612 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e0f retrieveBlockByNumber() - blockNum = [1] +2018-01-14 11:45:39.612 UTC [fsblkstorage] newBlockfileStream -> DEBU e10 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] +2018-01-14 11:45:39.612 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e11 Remaining bytes=[27525], Going to peek [8] bytes +2018-01-14 11:45:39.612 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e12 Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} +2018-01-14 11:45:39.612 UTC [orderer/common/deliver] Handle -> DEBU e13 [channel: businesschannel] Delivering block for (0xc42034dc80) +2018-01-14 11:45:39.613 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e14 retrieveBlockByNumber() - blockNum = [2] +2018-01-14 11:45:39.613 UTC [fsblkstorage] newBlockfileStream -> DEBU e15 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +2018-01-14 11:45:39.613 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e16 Remaining bytes=[13792], Going to peek [8] bytes +2018-01-14 11:45:39.613 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e17 Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +2018-01-14 11:45:39.613 UTC [orderer/common/deliver] Handle -> DEBU e18 [channel: businesschannel] Delivering block for (0xc42034dc80) +2018-01-14 11:45:41.094 UTC [orderer/main] Broadcast -> DEBU e19 Starting new Broadcast handler +2018-01-14 11:45:41.094 UTC [orderer/common/broadcast] Handle -> DEBU e1a Starting new broadcast loop +2018-01-14 11:46:00.613 UTC [orderer/common/broadcast] Handle -> DEBU e1b [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +2018-01-14 11:46:00.613 UTC [policies] GetPolicy -> DEBU e1c Returning policy Writers for evaluation +2018-01-14 11:46:00.613 UTC [cauthdsl] func1 -> DEBU e1d 0xc4200260b0 gate 1515930360613725364 evaluation starts +2018-01-14 11:46:00.613 UTC [cauthdsl] func2 -> DEBU e1e 0xc4200260b0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:00.614 UTC [cauthdsl] func2 -> DEBU e1f 0xc4200260b0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:00.614 UTC [msp/identity] newIdentity -> DEBU e20 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6651,25 +6470,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:51:26.292 UTC [msp] SatisfiesPrincipal -> DEBU e6d Checking if identity satisfies MEMBER role for Org1MSP -2018-01-04 01:51:26.293 UTC [msp] Validate -> DEBU e6e MSP Org1MSP validating identity -2018-01-04 01:51:26.293 UTC [cauthdsl] func2 -> DEBU e6f 0xc420026480 principal matched by identity 0 -2018-01-04 01:51:26.293 UTC [msp/identity] Verify -> DEBU e70 Verify: digest = 00000000 cc 15 55 9a c9 0a 38 69 c2 3a d8 7e d8 2e 83 2e |..U...8i.:.~....| -00000010 f8 e2 2c 4a 76 1d b2 1f cc 34 53 e9 76 e0 3a f1 |..,Jv....4S.v.:.| -2018-01-04 01:51:26.294 UTC [msp/identity] Verify -> DEBU e71 Verify: sig = 00000000 30 45 02 21 00 ea ba 42 6a 0d 7f 8f 92 c1 6c f6 |0E.!...Bj.....l.| -00000010 03 a4 3e b1 24 12 c8 f0 19 42 d4 87 ca cf a4 88 |..>.$....B......| -00000020 00 77 73 9b aa 02 20 06 0f 01 29 0a a2 fc 8c ee |.ws... ...).....| -00000030 ed 98 57 92 8f 02 4c 90 b6 33 7f 9a 62 ab 79 19 |..W...L..3..b.y.| -00000040 ff cb 11 91 da a4 5d |......]| -2018-01-04 01:51:26.294 UTC [cauthdsl] func2 -> DEBU e72 0xc420026480 principal evaluation succeeds for identity 0 -2018-01-04 01:51:26.294 UTC [cauthdsl] func1 -> DEBU e73 0xc420026480 gate 1515030686290408600 evaluation succeeds -2018-01-04 01:51:26.294 UTC [orderer/common/sigfilter] Apply -> DEBU e74 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -2018-01-04 01:51:26.295 UTC [orderer/common/broadcast] Handle -> DEBU e75 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -2018-01-04 01:51:26.296 UTC [policies] GetPolicy -> DEBU e76 Returning policy Writers for evaluation -2018-01-04 01:51:26.296 UTC [cauthdsl] func1 -> DEBU e77 0xc4200264a0 gate 1515030686296720600 evaluation starts -2018-01-04 01:51:26.296 UTC [cauthdsl] func2 -> DEBU e78 0xc4200264a0 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:26.296 UTC [cauthdsl] func2 -> DEBU e79 0xc4200264a0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:26.297 UTC [msp/identity] newIdentity -> DEBU e7a Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:46:00.615 UTC [cauthdsl] func2 -> DEBU e21 0xc4200260b0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-14 11:46:00.615 UTC [cauthdsl] func2 -> DEBU e22 0xc4200260b0 principal evaluation fails +2018-01-14 11:46:00.615 UTC [cauthdsl] func1 -> DEBU e23 0xc4200260b0 gate 1515930360613725364 evaluation fails +2018-01-14 11:46:00.615 UTC [cauthdsl] func1 -> DEBU e24 0xc4200260c0 gate 1515930360615707864 evaluation starts +2018-01-14 11:46:00.615 UTC [cauthdsl] func2 -> DEBU e25 0xc4200260c0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:00.615 UTC [cauthdsl] func2 -> DEBU e26 0xc4200260c0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:00.615 UTC [msp/identity] newIdentity -> DEBU e27 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6683,72 +6490,117 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:51:26.297 UTC [msp] SatisfiesPrincipal -> DEBU e7b Checking if identity satisfies MEMBER role for Org1MSP -2018-01-04 01:51:26.297 UTC [msp] Validate -> DEBU e7c MSP Org1MSP validating identity -2018-01-04 01:51:26.297 UTC [cauthdsl] func2 -> DEBU e7d 0xc4200264a0 principal matched by identity 0 -2018-01-04 01:51:26.297 UTC [msp/identity] Verify -> DEBU e7e Verify: digest = 00000000 cc 15 55 9a c9 0a 38 69 c2 3a d8 7e d8 2e 83 2e |..U...8i.:.~....| -00000010 f8 e2 2c 4a 76 1d b2 1f cc 34 53 e9 76 e0 3a f1 |..,Jv....4S.v.:.| -2018-01-04 01:51:26.297 UTC [msp/identity] Verify -> DEBU e7f Verify: sig = 00000000 30 45 02 21 00 ea ba 42 6a 0d 7f 8f 92 c1 6c f6 |0E.!...Bj.....l.| -00000010 03 a4 3e b1 24 12 c8 f0 19 42 d4 87 ca cf a4 88 |..>.$....B......| -00000020 00 77 73 9b aa 02 20 06 0f 01 29 0a a2 fc 8c ee |.ws... ...).....| -00000030 ed 98 57 92 8f 02 4c 90 b6 33 7f 9a 62 ab 79 19 |..W...L..3..b.y.| -00000040 ff cb 11 91 da a4 5d |......]| -2018-01-04 01:51:26.298 UTC [cauthdsl] func2 -> DEBU e80 0xc4200264a0 principal evaluation succeeds for identity 0 -2018-01-04 01:51:26.298 UTC [cauthdsl] func1 -> DEBU e81 0xc4200264a0 gate 1515030686296720600 evaluation succeeds -2018-01-04 01:51:26.298 UTC [orderer/common/sigfilter] Apply -> DEBU e82 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -2018-01-04 01:51:26.298 UTC [orderer/common/blockcutter] Ordered -> DEBU e83 Enqueuing message into batch -2018-01-04 01:51:26.298 UTC [orderer/common/broadcast] Handle -> WARN e84 Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:51:26.298 UTC [orderer/main] func1 -> DEBU e85 Closing Broadcast stream -2018-01-04 01:51:26.457 UTC [orderer/main] Broadcast -> DEBU e86 Starting new Broadcast handler -2018-01-04 01:51:26.457 UTC [orderer/common/broadcast] Handle -> DEBU e87 Starting new broadcast loop -2018-01-04 01:51:28.298 UTC [orderer/solo] main -> DEBU e88 Batch timer expired, creating block -2018-01-04 01:51:28.298 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e89 retrieveBlockByNumber() - blockNum = [2] -2018-01-04 01:51:28.298 UTC [fsblkstorage] newBlockfileStream -> DEBU e8a newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25665] -2018-01-04 01:51:28.298 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8b Remaining bytes=[13793], Going to peek [8] bytes -2018-01-04 01:51:28.298 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8c Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25665], bytesOffset=[25667]} -2018-01-04 01:51:28.299 UTC [orderer/multichain] addBlockSignature -> DEBU e8d &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -2018-01-04 01:51:28.299 UTC [orderer/multichain] addBlockSignature -> DEBU e8e &{} -2018-01-04 01:51:28.299 UTC [msp] GetLocalMSP -> DEBU e8f Returning existing local MSP -2018-01-04 01:51:28.299 UTC [msp] GetDefaultSigningIdentity -> DEBU e90 Obtaining default signing identity -2018-01-04 01:51:28.299 UTC [msp] GetLocalMSP -> DEBU e91 Returning existing local MSP -2018-01-04 01:51:28.299 UTC [msp] GetDefaultSigningIdentity -> DEBU e92 Obtaining default signing identity -2018-01-04 01:51:28.299 UTC [msp/identity] Sign -> DEBU e93 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...7CA4BAA58DB293A7E89C1BF8F55BFE4C -2018-01-04 01:51:28.299 UTC [msp/identity] Sign -> DEBU e94 Sign: digest: F97E86C9B58ABAF9E7C743F010271279872FAC36826057DDB70ED56075D22BD4 -2018-01-04 01:51:28.299 UTC [msp] GetLocalMSP -> DEBU e95 Returning existing local MSP -2018-01-04 01:51:28.299 UTC [msp] GetDefaultSigningIdentity -> DEBU e96 Obtaining default signing identity -2018-01-04 01:51:28.299 UTC [orderer/multichain] addLastConfigSignature -> DEBU e97 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-04 01:51:28.300 UTC [msp] GetLocalMSP -> DEBU e98 Returning existing local MSP -2018-01-04 01:51:28.300 UTC [msp] GetDefaultSigningIdentity -> DEBU e99 Obtaining default signing identity -2018-01-04 01:51:28.300 UTC [msp/identity] Sign -> DEBU e9a Sign: plaintext: 08020AFA050A0A4F7264657265724D53...7CA4BAA58DB293A7E89C1BF8F55BFE4C -2018-01-04 01:51:28.300 UTC [msp/identity] Sign -> DEBU e9b Sign: digest: EC05286F65241A880D2B54D1DF543A7A1C3FE1C70F38C80B956379485AD3EEFD -2018-01-04 01:51:28.303 UTC [fsblkstorage] indexBlock -> DEBU e9c Indexing block [blockNum=3, blockHash=[]byte{0x1, 0x89, 0x46, 0x2c, 0xf9, 0x7a, 0xc5, 0x26, 0xa0, 0x0, 0x75, 0xd, 0x2c, 0xe4, 0xad, 0x19, 0xe1, 0x78, 0x94, 0x3b, 0x7f, 0xa4, 0x2b, 0xe, 0x79, 0xfc, 0x32, 0xb3, 0x54, 0x7b, 0x83, 0x63} txOffsets= -txId=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa locPointer=offset=70, bytesLength=3389 +2018-01-14 11:46:00.616 UTC [msp] SatisfiesPrincipal -> DEBU e28 Checking if identity satisfies MEMBER role for Org1MSP +2018-01-14 11:46:00.616 UTC [msp] Validate -> DEBU e29 MSP Org1MSP validating identity +2018-01-14 11:46:00.616 UTC [cauthdsl] func2 -> DEBU e2a 0xc4200260c0 principal matched by identity 0 +2018-01-14 11:46:00.617 UTC [msp/identity] Verify -> DEBU e2b Verify: digest = 00000000 90 d9 40 5a f7 c9 1b 46 58 bf 15 6a 11 07 e0 1b |..@Z...FX..j....| +00000010 d0 a6 0e 16 1b b3 d0 b2 05 39 ce b8 4e 0f 86 95 |.........9..N...| +2018-01-14 11:46:00.617 UTC [msp/identity] Verify -> DEBU e2c Verify: sig = 00000000 30 45 02 21 00 e7 c4 78 21 ef 88 05 bd ea 1a 6c |0E.!...x!......l| +00000010 1f 76 c4 5b 74 cb 8a b2 39 21 00 ae 28 6c 6d fc |.v.[t...9!..(lm.| +00000020 8a 88 8b 7c 57 02 20 06 f5 8a 10 dd d5 94 6f 95 |...|W. .......o.| +00000030 1f 2b 78 a8 83 17 de 43 c9 8e 61 a4 e2 c7 b5 36 |.+x....C..a....6| +00000040 51 b2 b9 b2 be d0 f7 |Q......| +2018-01-14 11:46:00.617 UTC [cauthdsl] func2 -> DEBU e2d 0xc4200260c0 principal evaluation succeeds for identity 0 +2018-01-14 11:46:00.617 UTC [cauthdsl] func1 -> DEBU e2e 0xc4200260c0 gate 1515930360615707864 evaluation succeeds +2018-01-14 11:46:00.617 UTC [orderer/common/sigfilter] Apply -> DEBU e2f Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +2018-01-14 11:46:00.617 UTC [orderer/common/broadcast] Handle -> DEBU e30 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +2018-01-14 11:46:00.618 UTC [policies] GetPolicy -> DEBU e31 Returning policy Writers for evaluation +2018-01-14 11:46:00.618 UTC [cauthdsl] func1 -> DEBU e32 0xc420150c78 gate 1515930360618240364 evaluation starts +2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e33 0xc420150c78 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e34 0xc420150c78 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:00.618 UTC [msp/identity] newIdentity -> DEBU e35 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e36 0xc420150c78 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e37 0xc420150c78 principal evaluation fails +2018-01-14 11:46:00.618 UTC [cauthdsl] func1 -> DEBU e38 0xc420150c78 gate 1515930360618240364 evaluation fails +2018-01-14 11:46:00.618 UTC [cauthdsl] func1 -> DEBU e39 0xc420150c88 gate 1515930360618954764 evaluation starts +2018-01-14 11:46:00.618 UTC [cauthdsl] func2 -> DEBU e3a 0xc420150c88 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:00.619 UTC [cauthdsl] func2 -> DEBU e3b 0xc420150c88 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:00.619 UTC [msp/identity] newIdentity -> DEBU e3c Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:46:00.619 UTC [msp] SatisfiesPrincipal -> DEBU e3d Checking if identity satisfies MEMBER role for Org1MSP +2018-01-14 11:46:00.620 UTC [msp] Validate -> DEBU e3e MSP Org1MSP validating identity +2018-01-14 11:46:00.620 UTC [cauthdsl] func2 -> DEBU e3f 0xc420150c88 principal matched by identity 0 +2018-01-14 11:46:00.620 UTC [msp/identity] Verify -> DEBU e40 Verify: digest = 00000000 90 d9 40 5a f7 c9 1b 46 58 bf 15 6a 11 07 e0 1b |..@Z...FX..j....| +00000010 d0 a6 0e 16 1b b3 d0 b2 05 39 ce b8 4e 0f 86 95 |.........9..N...| +2018-01-14 11:46:00.620 UTC [msp/identity] Verify -> DEBU e41 Verify: sig = 00000000 30 45 02 21 00 e7 c4 78 21 ef 88 05 bd ea 1a 6c |0E.!...x!......l| +00000010 1f 76 c4 5b 74 cb 8a b2 39 21 00 ae 28 6c 6d fc |.v.[t...9!..(lm.| +00000020 8a 88 8b 7c 57 02 20 06 f5 8a 10 dd d5 94 6f 95 |...|W. .......o.| +00000030 1f 2b 78 a8 83 17 de 43 c9 8e 61 a4 e2 c7 b5 36 |.+x....C..a....6| +00000040 51 b2 b9 b2 be d0 f7 |Q......| +2018-01-14 11:46:00.621 UTC [cauthdsl] func2 -> DEBU e42 0xc420150c88 principal evaluation succeeds for identity 0 +2018-01-14 11:46:00.621 UTC [cauthdsl] func1 -> DEBU e43 0xc420150c88 gate 1515930360618954764 evaluation succeeds +2018-01-14 11:46:00.621 UTC [orderer/common/sigfilter] Apply -> DEBU e44 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +2018-01-14 11:46:00.621 UTC [orderer/common/blockcutter] Ordered -> DEBU e45 Enqueuing message into batch +2018-01-14 11:46:00.622 UTC [orderer/common/broadcast] Handle -> WARN e46 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:46:00.622 UTC [orderer/main] func1 -> DEBU e47 Closing Broadcast stream +2018-01-14 11:46:00.773 UTC [orderer/main] Broadcast -> DEBU e48 Starting new Broadcast handler +2018-01-14 11:46:00.773 UTC [orderer/common/broadcast] Handle -> DEBU e49 Starting new broadcast loop +2018-01-14 11:46:02.622 UTC [orderer/solo] main -> DEBU e4a Batch timer expired, creating block +2018-01-14 11:46:02.623 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e4b retrieveBlockByNumber() - blockNum = [2] +2018-01-14 11:46:02.624 UTC [fsblkstorage] newBlockfileStream -> DEBU e4c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +2018-01-14 11:46:02.624 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e4d Remaining bytes=[13792], Going to peek [8] bytes +2018-01-14 11:46:02.625 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e4e Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +2018-01-14 11:46:02.625 UTC [orderer/multichain] addBlockSignature -> DEBU e4f &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +2018-01-14 11:46:02.625 UTC [orderer/multichain] addBlockSignature -> DEBU e50 &{} +2018-01-14 11:46:02.625 UTC [msp] GetLocalMSP -> DEBU e51 Returning existing local MSP +2018-01-14 11:46:02.625 UTC [msp] GetDefaultSigningIdentity -> DEBU e52 Obtaining default signing identity +2018-01-14 11:46:02.626 UTC [msp] GetLocalMSP -> DEBU e53 Returning existing local MSP +2018-01-14 11:46:02.626 UTC [msp] GetDefaultSigningIdentity -> DEBU e54 Obtaining default signing identity +2018-01-14 11:46:02.626 UTC [msp/identity] Sign -> DEBU e55 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...5D6340F2F922DF5F60A7A910D4273A51 +2018-01-14 11:46:02.626 UTC [msp/identity] Sign -> DEBU e56 Sign: digest: E92F73C428534CA50BE125EEF0EF6505FFE713D9ED20A6F1CB26FAA5FE1299E2 +2018-01-14 11:46:02.626 UTC [msp] GetLocalMSP -> DEBU e57 Returning existing local MSP +2018-01-14 11:46:02.626 UTC [msp] GetDefaultSigningIdentity -> DEBU e58 Obtaining default signing identity +2018-01-14 11:46:02.626 UTC [orderer/multichain] addLastConfigSignature -> DEBU e59 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-14 11:46:02.626 UTC [msp] GetLocalMSP -> DEBU e5a Returning existing local MSP +2018-01-14 11:46:02.626 UTC [msp] GetDefaultSigningIdentity -> DEBU e5b Obtaining default signing identity +2018-01-14 11:46:02.626 UTC [msp/identity] Sign -> DEBU e5c Sign: plaintext: 08020AFA050A0A4F7264657265724D53...5D6340F2F922DF5F60A7A910D4273A51 +2018-01-14 11:46:02.626 UTC [msp/identity] Sign -> DEBU e5d Sign: digest: 53352678F607C203EA5E24CA1F992F3FDD962D09E3D32D24AF8D859C849A1D77 +2018-01-14 11:46:02.630 UTC [fsblkstorage] indexBlock -> DEBU e5e Indexing block [blockNum=3, blockHash=[]byte{0xba, 0x24, 0x96, 0x98, 0xea, 0x83, 0xc, 0x88, 0x92, 0x2d, 0x8d, 0xe0, 0x99, 0x42, 0x2d, 0x3a, 0xe0, 0x84, 0xec, 0x46, 0x3c, 0xa6, 0xc, 0x6, 0xc2, 0x1e, 0xe1, 0x1a, 0x22, 0xb8, 0xa2, 0x6b} txOffsets= +txId=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d locPointer=offset=70, bytesLength=3394 ] -2018-01-04 01:51:28.303 UTC [fsblkstorage] updateCheckpoint -> DEBU e9d Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44668], isChainEmpty=[false], lastBlockNumber=[3] -2018-01-04 01:51:28.304 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e9f retrieveBlockByNumber() - blockNum = [3] -2018-01-04 01:51:28.304 UTC [fsblkstorage] newBlockfileStream -> DEBU ea0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] -2018-01-04 01:51:28.304 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea1 Remaining bytes=[5210], Going to peek [8] bytes -2018-01-04 01:51:28.304 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea2 Returning blockbytes - length=[5208], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} -2018-01-04 01:51:28.304 UTC [orderer/common/deliver] Handle -> DEBU ea3 [channel: businesschannel] Delivering block for (0xc42007b860) -2018-01-04 01:51:28.304 UTC [orderer/common/deliver] Handle -> WARN ea4 [channel: businesschannel] Error sending to stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:51:28.304 UTC [orderer/main] func1 -> DEBU ea5 Closing Deliver stream -2018-01-04 01:51:28.304 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea6 retrieveBlockByNumber() - blockNum = [3] -2018-01-04 01:51:28.304 UTC [fsblkstorage] newBlockfileStream -> DEBU ea7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] -2018-01-04 01:51:28.305 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea8 Remaining bytes=[5210], Going to peek [8] bytes -2018-01-04 01:51:28.305 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea9 Returning blockbytes - length=[5208], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} -2018-01-04 01:51:28.305 UTC [orderer/common/deliver] Handle -> DEBU eaa [channel: businesschannel] Delivering block for (0xc4201f9360) -2018-01-04 01:51:28.304 UTC [orderer/multichain] WriteBlock -> DEBU e9e [channel: businesschannel] Wrote block 3 -2018-01-04 01:51:28.305 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU eab retrieveBlockByNumber() - blockNum = [3] -2018-01-04 01:51:28.308 UTC [fsblkstorage] newBlockfileStream -> DEBU eac newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] -2018-01-04 01:51:28.308 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ead Remaining bytes=[5210], Going to peek [8] bytes -2018-01-04 01:51:28.308 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU eae Returning blockbytes - length=[5208], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} -2018-01-04 01:51:28.308 UTC [orderer/common/deliver] Handle -> DEBU eaf [channel: businesschannel] Delivering block for (0xc42027ed80) -2018-01-04 01:51:45.808 UTC [orderer/common/broadcast] Handle -> DEBU eb0 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -2018-01-04 01:51:45.808 UTC [policies] GetPolicy -> DEBU eb1 Returning policy Writers for evaluation -2018-01-04 01:51:45.808 UTC [cauthdsl] func1 -> DEBU eb2 0xc42010ecc8 gate 1515030705808845300 evaluation starts -2018-01-04 01:51:45.808 UTC [cauthdsl] func2 -> DEBU eb3 0xc42010ecc8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:45.809 UTC [cauthdsl] func2 -> DEBU eb4 0xc42010ecc8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:45.811 UTC [msp/identity] newIdentity -> DEBU eb5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:46:02.630 UTC [fsblkstorage] updateCheckpoint -> DEBU e5f Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] +2018-01-14 11:46:02.630 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e60 retrieveBlockByNumber() - blockNum = [3] +2018-01-14 11:46:02.631 UTC [fsblkstorage] newBlockfileStream -> DEBU e61 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-14 11:46:02.631 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e62 Remaining bytes=[5214], Going to peek [8] bytes +2018-01-14 11:46:02.631 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e63 Returning blockbytes - length=[5212], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-14 11:46:02.631 UTC [orderer/common/deliver] Handle -> DEBU e64 [channel: businesschannel] Delivering block for (0xc42034dc80) +2018-01-14 11:46:02.635 UTC [orderer/multichain] WriteBlock -> DEBU e66 [channel: businesschannel] Wrote block 3 +2018-01-14 11:46:02.635 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e65 retrieveBlockByNumber() - blockNum = [3] +2018-01-14 11:46:02.635 UTC [fsblkstorage] newBlockfileStream -> DEBU e67 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-14 11:46:02.636 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e68 Remaining bytes=[5214], Going to peek [8] bytes +2018-01-14 11:46:02.636 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e69 Returning blockbytes - length=[5212], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-14 11:46:02.636 UTC [orderer/common/deliver] Handle -> DEBU e6a [channel: businesschannel] Delivering block for (0xc420373960) +2018-01-14 11:46:18.341 UTC [orderer/common/broadcast] Handle -> DEBU e6b [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +2018-01-14 11:46:18.342 UTC [policies] GetPolicy -> DEBU e6c Returning policy Writers for evaluation +2018-01-14 11:46:18.342 UTC [cauthdsl] func1 -> DEBU e6d 0xc420150cf8 gate 1515930378342137164 evaluation starts +2018-01-14 11:46:18.342 UTC [cauthdsl] func2 -> DEBU e6e 0xc420150cf8 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:18.342 UTC [cauthdsl] func2 -> DEBU e6f 0xc420150cf8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:18.342 UTC [msp/identity] newIdentity -> DEBU e70 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6762,13 +6614,25 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:45.812 UTC [cauthdsl] func2 -> DEBU eb6 0xc42010ecc8 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-04 01:51:45.813 UTC [cauthdsl] func2 -> DEBU eb7 0xc42010ecc8 principal evaluation fails -2018-01-04 01:51:45.813 UTC [cauthdsl] func1 -> DEBU eb8 0xc42010ecc8 gate 1515030705808845300 evaluation fails -2018-01-04 01:51:45.813 UTC [cauthdsl] func1 -> DEBU eb9 0xc42010ecd8 gate 1515030705813705400 evaluation starts -2018-01-04 01:51:45.814 UTC [cauthdsl] func2 -> DEBU eba 0xc42010ecd8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:45.814 UTC [cauthdsl] func2 -> DEBU ebb 0xc42010ecd8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:45.815 UTC [msp/identity] newIdentity -> DEBU ebc Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:46:18.343 UTC [msp] SatisfiesPrincipal -> DEBU e71 Checking if identity satisfies MEMBER role for Org2MSP +2018-01-14 11:46:18.343 UTC [msp] Validate -> DEBU e72 MSP Org2MSP validating identity +2018-01-14 11:46:18.343 UTC [cauthdsl] func2 -> DEBU e73 0xc420150cf8 principal matched by identity 0 +2018-01-14 11:46:18.343 UTC [msp/identity] Verify -> DEBU e74 Verify: digest = 00000000 fd 8e e4 98 84 ad 46 84 7b 94 99 4d 23 e6 46 82 |......F.{..M#.F.| +00000010 4d a5 e9 a8 42 15 a7 0a 2a 53 f1 9d 36 ea 67 c6 |M...B...*S..6.g.| +2018-01-14 11:46:18.343 UTC [msp/identity] Verify -> DEBU e75 Verify: sig = 00000000 30 45 02 21 00 e5 32 b2 b5 f1 d6 b2 9c 5f 6b 47 |0E.!..2......_kG| +00000010 ab cf c4 61 cd 85 fc 4d 3e 63 5a 08 f5 dc 95 e8 |...a...M>cZ.....| +00000020 99 58 df 37 64 02 20 1b 05 0a 39 53 e7 a7 54 b3 |.X.7d. ...9S..T.| +00000030 ba 89 be 35 cc a6 83 85 54 1d 6b db 74 73 e8 50 |...5....T.k.ts.P| +00000040 8e af d0 01 f8 d0 d4 |.......| +2018-01-14 11:46:18.344 UTC [cauthdsl] func2 -> DEBU e76 0xc420150cf8 principal evaluation succeeds for identity 0 +2018-01-14 11:46:18.344 UTC [cauthdsl] func1 -> DEBU e77 0xc420150cf8 gate 1515930378342137164 evaluation succeeds +2018-01-14 11:46:18.344 UTC [orderer/common/sigfilter] Apply -> DEBU e78 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +2018-01-14 11:46:18.344 UTC [orderer/common/broadcast] Handle -> DEBU e79 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +2018-01-14 11:46:18.345 UTC [policies] GetPolicy -> DEBU e7a Returning policy Writers for evaluation +2018-01-14 11:46:18.345 UTC [cauthdsl] func1 -> DEBU e7b 0xc420150d10 gate 1515930378345273664 evaluation starts +2018-01-14 11:46:18.345 UTC [cauthdsl] func2 -> DEBU e7c 0xc420150d10 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:18.345 UTC [cauthdsl] func2 -> DEBU e7d 0xc420150d10 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:18.345 UTC [msp/identity] newIdentity -> DEBU e7e Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6782,117 +6646,65 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:51:45.816 UTC [msp] SatisfiesPrincipal -> DEBU ebd Checking if identity satisfies MEMBER role for Org2MSP -2018-01-04 01:51:45.816 UTC [msp] Validate -> DEBU ebe MSP Org2MSP validating identity -2018-01-04 01:51:45.816 UTC [cauthdsl] func2 -> DEBU ebf 0xc42010ecd8 principal matched by identity 0 -2018-01-04 01:51:45.817 UTC [msp/identity] Verify -> DEBU ec0 Verify: digest = 00000000 26 91 28 27 94 d8 66 66 3c d3 1c 90 0f 1e 97 50 |&.('..ff<......P| -00000010 ee 6c 33 a5 0c de 74 98 85 93 27 9d d7 85 41 9b |.l3...t...'...A.| -2018-01-04 01:51:45.817 UTC [msp/identity] Verify -> DEBU ec1 Verify: sig = 00000000 30 44 02 20 5a 88 e5 f2 94 c5 c5 5c 9b ed 7e 6e |0D. Z......\..~n| -00000010 74 cf 2b 06 ef 92 16 0c 90 e3 46 ee 9d b9 ec aa |t.+.......F.....| -00000020 72 dd ee 79 02 20 6d e7 22 11 05 e7 90 de c3 6c |r..y. m."......l| -00000030 63 bb 03 ba 98 4d 0b 38 c0 af 59 55 d1 b8 16 85 |c....M.8..YU....| -00000040 07 8d 3b 8a fd 49 |..;..I| -2018-01-04 01:51:45.817 UTC [cauthdsl] func2 -> DEBU ec2 0xc42010ecd8 principal evaluation succeeds for identity 0 -2018-01-04 01:51:45.817 UTC [cauthdsl] func1 -> DEBU ec3 0xc42010ecd8 gate 1515030705813705400 evaluation succeeds -2018-01-04 01:51:45.817 UTC [orderer/common/sigfilter] Apply -> DEBU ec4 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -2018-01-04 01:51:45.818 UTC [orderer/common/broadcast] Handle -> DEBU ec5 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -2018-01-04 01:51:45.819 UTC [policies] GetPolicy -> DEBU ec6 Returning policy Writers for evaluation -2018-01-04 01:51:45.819 UTC [cauthdsl] func1 -> DEBU ec7 0xc420026510 gate 1515030705819090300 evaluation starts -2018-01-04 01:51:45.819 UTC [cauthdsl] func2 -> DEBU ec8 0xc420026510 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:45.819 UTC [cauthdsl] func2 -> DEBU ec9 0xc420026510 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:45.820 UTC [msp/identity] newIdentity -> DEBU eca Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:51:45.820 UTC [cauthdsl] func2 -> DEBU ecb 0xc420026510 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-04 01:51:45.820 UTC [cauthdsl] func2 -> DEBU ecc 0xc420026510 principal evaluation fails -2018-01-04 01:51:45.820 UTC [cauthdsl] func1 -> DEBU ecd 0xc420026510 gate 1515030705819090300 evaluation fails -2018-01-04 01:51:45.820 UTC [cauthdsl] func1 -> DEBU ece 0xc420026520 gate 1515030705820460800 evaluation starts -2018-01-04 01:51:45.820 UTC [cauthdsl] func2 -> DEBU ecf 0xc420026520 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:51:45.820 UTC [cauthdsl] func2 -> DEBU ed0 0xc420026520 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:51:45.820 UTC [msp/identity] newIdentity -> DEBU ed1 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= ------END CERTIFICATE----- -2018-01-04 01:51:45.821 UTC [msp] SatisfiesPrincipal -> DEBU ed2 Checking if identity satisfies MEMBER role for Org2MSP -2018-01-04 01:51:45.821 UTC [msp] Validate -> DEBU ed3 MSP Org2MSP validating identity -2018-01-04 01:51:45.821 UTC [cauthdsl] func2 -> DEBU ed4 0xc420026520 principal matched by identity 0 -2018-01-04 01:51:45.821 UTC [msp/identity] Verify -> DEBU ed5 Verify: digest = 00000000 26 91 28 27 94 d8 66 66 3c d3 1c 90 0f 1e 97 50 |&.('..ff<......P| -00000010 ee 6c 33 a5 0c de 74 98 85 93 27 9d d7 85 41 9b |.l3...t...'...A.| -2018-01-04 01:51:45.821 UTC [msp/identity] Verify -> DEBU ed6 Verify: sig = 00000000 30 44 02 20 5a 88 e5 f2 94 c5 c5 5c 9b ed 7e 6e |0D. Z......\..~n| -00000010 74 cf 2b 06 ef 92 16 0c 90 e3 46 ee 9d b9 ec aa |t.+.......F.....| -00000020 72 dd ee 79 02 20 6d e7 22 11 05 e7 90 de c3 6c |r..y. m."......l| -00000030 63 bb 03 ba 98 4d 0b 38 c0 af 59 55 d1 b8 16 85 |c....M.8..YU....| -00000040 07 8d 3b 8a fd 49 |..;..I| -2018-01-04 01:51:45.821 UTC [cauthdsl] func2 -> DEBU ed7 0xc420026520 principal evaluation succeeds for identity 0 -2018-01-04 01:51:45.821 UTC [cauthdsl] func1 -> DEBU ed8 0xc420026520 gate 1515030705820460800 evaluation succeeds -2018-01-04 01:51:45.821 UTC [orderer/common/sigfilter] Apply -> DEBU ed9 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -2018-01-04 01:51:45.838 UTC [orderer/common/broadcast] Handle -> WARN eda Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:51:45.838 UTC [orderer/main] func1 -> DEBU edb Closing Broadcast stream -2018-01-04 01:51:45.838 UTC [orderer/common/blockcutter] Ordered -> DEBU edc Enqueuing message into batch -2018-01-04 01:51:47.839 UTC [orderer/solo] main -> DEBU edd Batch timer expired, creating block -2018-01-04 01:51:47.840 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ede retrieveBlockByNumber() - blockNum = [3] -2018-01-04 01:51:47.841 UTC [fsblkstorage] newBlockfileStream -> DEBU edf newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] -2018-01-04 01:51:47.842 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee0 Remaining bytes=[5210], Going to peek [8] bytes -2018-01-04 01:51:47.842 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ee1 Returning blockbytes - length=[5208], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} -2018-01-04 01:51:47.843 UTC [orderer/multichain] addBlockSignature -> DEBU ee2 &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -2018-01-04 01:51:47.843 UTC [orderer/multichain] addBlockSignature -> DEBU ee3 &{} -2018-01-04 01:51:47.844 UTC [msp] GetLocalMSP -> DEBU ee4 Returning existing local MSP -2018-01-04 01:51:47.845 UTC [msp] GetDefaultSigningIdentity -> DEBU ee5 Obtaining default signing identity -2018-01-04 01:51:47.846 UTC [msp] GetLocalMSP -> DEBU ee6 Returning existing local MSP -2018-01-04 01:51:47.846 UTC [msp] GetDefaultSigningIdentity -> DEBU ee7 Obtaining default signing identity -2018-01-04 01:51:47.847 UTC [msp/identity] Sign -> DEBU ee8 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...7851BD8A85BFC961410A32179394FF3D -2018-01-04 01:51:47.848 UTC [msp/identity] Sign -> DEBU ee9 Sign: digest: 2987BB0601C3ED10C7022E86BDF1C23D53895D139CC8E4A5552CE885C88B6FA0 -2018-01-04 01:51:47.849 UTC [msp] GetLocalMSP -> DEBU eea Returning existing local MSP -2018-01-04 01:51:47.849 UTC [msp] GetDefaultSigningIdentity -> DEBU eeb Obtaining default signing identity -2018-01-04 01:51:47.849 UTC [orderer/multichain] addLastConfigSignature -> DEBU eec [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-04 01:51:47.850 UTC [msp] GetLocalMSP -> DEBU eed Returning existing local MSP -2018-01-04 01:51:47.850 UTC [msp] GetDefaultSigningIdentity -> DEBU eee Obtaining default signing identity -2018-01-04 01:51:47.850 UTC [msp/identity] Sign -> DEBU eef Sign: plaintext: 08020AFA050A0A4F7264657265724D53...7851BD8A85BFC961410A32179394FF3D -2018-01-04 01:51:47.851 UTC [msp/identity] Sign -> DEBU ef0 Sign: digest: 76AA4ED837FA886F1A13A37D7D47E2D8DAB0125960511E843782359BEF511064 -2018-01-04 01:51:47.854 UTC [fsblkstorage] indexBlock -> DEBU ef1 Indexing block [blockNum=4, blockHash=[]byte{0xce, 0x54, 0x20, 0x1a, 0xf4, 0x6a, 0xac, 0x8f, 0xbc, 0x59, 0x8, 0xbf, 0xd7, 0xbd, 0x23, 0x20, 0x17, 0xe6, 0x36, 0xd, 0xbe, 0xfa, 0x91, 0x3, 0x38, 0x61, 0x2e, 0xf1, 0x4, 0x9f, 0x6e, 0xa2} txOffsets= -txId=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 locPointer=offset=70, bytesLength=3388 +2018-01-14 11:46:18.346 UTC [msp] SatisfiesPrincipal -> DEBU e7f Checking if identity satisfies MEMBER role for Org2MSP +2018-01-14 11:46:18.346 UTC [msp] Validate -> DEBU e80 MSP Org2MSP validating identity +2018-01-14 11:46:18.346 UTC [cauthdsl] func2 -> DEBU e81 0xc420150d10 principal matched by identity 0 +2018-01-14 11:46:18.346 UTC [msp/identity] Verify -> DEBU e82 Verify: digest = 00000000 fd 8e e4 98 84 ad 46 84 7b 94 99 4d 23 e6 46 82 |......F.{..M#.F.| +00000010 4d a5 e9 a8 42 15 a7 0a 2a 53 f1 9d 36 ea 67 c6 |M...B...*S..6.g.| +2018-01-14 11:46:18.347 UTC [msp/identity] Verify -> DEBU e83 Verify: sig = 00000000 30 45 02 21 00 e5 32 b2 b5 f1 d6 b2 9c 5f 6b 47 |0E.!..2......_kG| +00000010 ab cf c4 61 cd 85 fc 4d 3e 63 5a 08 f5 dc 95 e8 |...a...M>cZ.....| +00000020 99 58 df 37 64 02 20 1b 05 0a 39 53 e7 a7 54 b3 |.X.7d. ...9S..T.| +00000030 ba 89 be 35 cc a6 83 85 54 1d 6b db 74 73 e8 50 |...5....T.k.ts.P| +00000040 8e af d0 01 f8 d0 d4 |.......| +2018-01-14 11:46:18.347 UTC [cauthdsl] func2 -> DEBU e84 0xc420150d10 principal evaluation succeeds for identity 0 +2018-01-14 11:46:18.347 UTC [cauthdsl] func1 -> DEBU e85 0xc420150d10 gate 1515930378345273664 evaluation succeeds +2018-01-14 11:46:18.347 UTC [orderer/common/sigfilter] Apply -> DEBU e86 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +2018-01-14 11:46:18.347 UTC [orderer/common/blockcutter] Ordered -> DEBU e87 Enqueuing message into batch +2018-01-14 11:46:18.349 UTC [orderer/common/broadcast] Handle -> WARN e88 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:46:18.349 UTC [orderer/main] func1 -> DEBU e89 Closing Broadcast stream +2018-01-14 11:46:20.348 UTC [orderer/solo] main -> DEBU e8a Batch timer expired, creating block +2018-01-14 11:46:20.350 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU e8b retrieveBlockByNumber() - blockNum = [3] +2018-01-14 11:46:20.350 UTC [fsblkstorage] newBlockfileStream -> DEBU e8c newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-14 11:46:20.350 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8d Remaining bytes=[5214], Going to peek [8] bytes +2018-01-14 11:46:20.351 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU e8e Returning blockbytes - length=[5212], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-14 11:46:20.351 UTC [orderer/multichain] addBlockSignature -> DEBU e8f &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +2018-01-14 11:46:20.351 UTC [orderer/multichain] addBlockSignature -> DEBU e90 &{} +2018-01-14 11:46:20.351 UTC [msp] GetLocalMSP -> DEBU e91 Returning existing local MSP +2018-01-14 11:46:20.351 UTC [msp] GetDefaultSigningIdentity -> DEBU e92 Obtaining default signing identity +2018-01-14 11:46:20.352 UTC [msp] GetLocalMSP -> DEBU e93 Returning existing local MSP +2018-01-14 11:46:20.352 UTC [msp] GetDefaultSigningIdentity -> DEBU e94 Obtaining default signing identity +2018-01-14 11:46:20.352 UTC [msp/identity] Sign -> DEBU e95 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...CE40CD81DBD263DEAC9BDBB8DF2E12D4 +2018-01-14 11:46:20.352 UTC [msp/identity] Sign -> DEBU e96 Sign: digest: 0D921CCE52C1DEF8D5CD73D9AA13F9BFFA3857338FFCAFCCE35310107852839A +2018-01-14 11:46:20.353 UTC [msp] GetLocalMSP -> DEBU e97 Returning existing local MSP +2018-01-14 11:46:20.353 UTC [msp] GetDefaultSigningIdentity -> DEBU e98 Obtaining default signing identity +2018-01-14 11:46:20.353 UTC [orderer/multichain] addLastConfigSignature -> DEBU e99 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-14 11:46:20.353 UTC [msp] GetLocalMSP -> DEBU e9a Returning existing local MSP +2018-01-14 11:46:20.353 UTC [msp] GetDefaultSigningIdentity -> DEBU e9b Obtaining default signing identity +2018-01-14 11:46:20.354 UTC [msp/identity] Sign -> DEBU e9c Sign: plaintext: 08020AFA050A0A4F7264657265724D53...CE40CD81DBD263DEAC9BDBB8DF2E12D4 +2018-01-14 11:46:20.354 UTC [msp/identity] Sign -> DEBU e9d Sign: digest: 557D0E03D2CDAE786234FC6C8774245A336AACC9AE2D1873839E6F5CA5AF4697 +2018-01-14 11:46:20.360 UTC [fsblkstorage] indexBlock -> DEBU e9e Indexing block [blockNum=4, blockHash=[]byte{0x3e, 0xa5, 0xb9, 0x9c, 0xb8, 0xc5, 0x29, 0x6f, 0xda, 0xd3, 0xfd, 0xc3, 0x49, 0x31, 0x1d, 0xc8, 0xf5, 0x6d, 0xce, 0x76, 0x5e, 0x7f, 0x6e, 0x5c, 0xf0, 0x98, 0xb6, 0x7b, 0x85, 0xb8, 0x9, 0x2b} txOffsets= +txId=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee locPointer=offset=70, bytesLength=3395 ] -2018-01-04 01:51:47.854 UTC [fsblkstorage] updateCheckpoint -> DEBU ef2 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49876], isChainEmpty=[false], lastBlockNumber=[4] -2018-01-04 01:51:47.854 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ef4 retrieveBlockByNumber() - blockNum = [4] -2018-01-04 01:51:47.854 UTC [orderer/multichain] WriteBlock -> DEBU ef3 [channel: businesschannel] Wrote block 4 -2018-01-04 01:51:47.854 UTC [fsblkstorage] newBlockfileStream -> DEBU ef5 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -2018-01-04 01:51:47.855 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ef6 retrieveBlockByNumber() - blockNum = [4] -2018-01-04 01:51:47.855 UTC [fsblkstorage] newBlockfileStream -> DEBU ef8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -2018-01-04 01:51:47.855 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef7 Remaining bytes=[5208], Going to peek [8] bytes -2018-01-04 01:51:47.855 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef9 Remaining bytes=[5208], Going to peek [8] bytes -2018-01-04 01:51:47.855 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU efb Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -2018-01-04 01:51:47.855 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU efa Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -2018-01-04 01:51:47.855 UTC [orderer/common/deliver] Handle -> DEBU efd [channel: businesschannel] Delivering block for (0xc42027ed80) -2018-01-04 01:51:47.855 UTC [orderer/common/deliver] Handle -> DEBU efc [channel: businesschannel] Delivering block for (0xc4201f9360) -2018-01-04 01:52:07.248 UTC [orderer/main] Broadcast -> DEBU efe Starting new Broadcast handler -2018-01-04 01:52:07.248 UTC [orderer/common/broadcast] Handle -> DEBU eff Starting new broadcast loop -2018-01-04 01:52:07.264 UTC [orderer/common/broadcast] Handle -> DEBU f00 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -2018-01-04 01:52:07.264 UTC [policies] GetPolicy -> DEBU f01 Returning policy Writers for evaluation -2018-01-04 01:52:07.264 UTC [cauthdsl] func1 -> DEBU f02 0xc42010ed40 gate 1515030727264764400 evaluation starts -2018-01-04 01:52:07.264 UTC [cauthdsl] func2 -> DEBU f03 0xc42010ed40 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:52:07.264 UTC [cauthdsl] func2 -> DEBU f04 0xc42010ed40 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:52:07.266 UTC [msp/identity] newIdentity -> DEBU f05 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:46:20.360 UTC [fsblkstorage] updateCheckpoint -> DEBU e9f Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49888], isChainEmpty=[false], lastBlockNumber=[4] +2018-01-14 11:46:20.360 UTC [orderer/multichain] WriteBlock -> DEBU ea0 [channel: businesschannel] Wrote block 4 +2018-01-14 11:46:20.360 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea1 retrieveBlockByNumber() - blockNum = [4] +2018-01-14 11:46:20.361 UTC [fsblkstorage] newBlockfileStream -> DEBU ea2 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44672] +2018-01-14 11:46:20.361 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea3 Remaining bytes=[5216], Going to peek [8] bytes +2018-01-14 11:46:20.361 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea4 Returning blockbytes - length=[5214], placementInfo={fileNum=[0], startOffset=[44672], bytesOffset=[44674]} +2018-01-14 11:46:20.361 UTC [orderer/common/deliver] Handle -> DEBU ea5 [channel: businesschannel] Delivering block for (0xc420373960) +2018-01-14 11:46:20.366 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ea6 retrieveBlockByNumber() - blockNum = [4] +2018-01-14 11:46:20.366 UTC [fsblkstorage] newBlockfileStream -> DEBU ea7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44672] +2018-01-14 11:46:20.366 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea8 Remaining bytes=[5216], Going to peek [8] bytes +2018-01-14 11:46:20.366 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ea9 Returning blockbytes - length=[5214], placementInfo={fileNum=[0], startOffset=[44672], bytesOffset=[44674]} +2018-01-14 11:46:20.367 UTC [orderer/common/deliver] Handle -> DEBU eaa [channel: businesschannel] Delivering block for (0xc42034dc80) +2018-01-14 11:46:38.924 UTC [orderer/main] Broadcast -> DEBU eab Starting new Broadcast handler +2018-01-14 11:46:38.924 UTC [orderer/common/broadcast] Handle -> DEBU eac Starting new broadcast loop +2018-01-14 11:46:38.989 UTC [orderer/common/broadcast] Handle -> DEBU ead [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +2018-01-14 11:46:38.989 UTC [policies] GetPolicy -> DEBU eae Returning policy Writers for evaluation +2018-01-14 11:46:38.989 UTC [cauthdsl] func1 -> DEBU eaf 0xc420150d48 gate 1515930398989424064 evaluation starts +2018-01-14 11:46:38.989 UTC [cauthdsl] func2 -> DEBU eb0 0xc420150d48 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:38.989 UTC [cauthdsl] func2 -> DEBU eb1 0xc420150d48 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:38.990 UTC [msp/identity] newIdentity -> DEBU eb2 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6906,25 +6718,13 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:52:07.267 UTC [msp] SatisfiesPrincipal -> DEBU f06 Checking if identity satisfies MEMBER role for Org1MSP -2018-01-04 01:52:07.267 UTC [msp] Validate -> DEBU f07 MSP Org1MSP validating identity -2018-01-04 01:52:07.268 UTC [cauthdsl] func2 -> DEBU f08 0xc42010ed40 principal matched by identity 0 -2018-01-04 01:52:07.268 UTC [msp/identity] Verify -> DEBU f09 Verify: digest = 00000000 c5 14 f8 e0 6f fa 67 35 28 8f f7 b8 23 4f 8e 9b |....o.g5(...#O..| -00000010 7e 30 e8 8d bd b1 07 56 01 1c e4 82 95 2e f8 89 |~0.....V........| -2018-01-04 01:52:07.268 UTC [msp/identity] Verify -> DEBU f0a Verify: sig = 00000000 30 45 02 21 00 ba 76 ab bb 19 0d 60 b4 1b 7d 06 |0E.!..v....`..}.| -00000010 3b f5 5d 90 b5 78 ed 31 e7 a8 a9 e7 3d ee 39 61 |;.]..x.1....=.9a| -00000020 9a 5b 76 09 c4 02 20 75 c7 4b a5 7b ca 9f 34 5b |.[v... u.K.{..4[| -00000030 0b 76 40 87 99 06 20 62 f5 a2 18 33 cd 92 5a 52 |.v@... b...3..ZR| -00000040 3b 89 62 d9 31 19 1d |;.b.1..| -2018-01-04 01:52:07.268 UTC [cauthdsl] func2 -> DEBU f0b 0xc42010ed40 principal evaluation succeeds for identity 0 -2018-01-04 01:52:07.268 UTC [cauthdsl] func1 -> DEBU f0c 0xc42010ed40 gate 1515030727264764400 evaluation succeeds -2018-01-04 01:52:07.268 UTC [orderer/common/sigfilter] Apply -> DEBU f0d Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -2018-01-04 01:52:07.268 UTC [orderer/common/broadcast] Handle -> DEBU f0e [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -2018-01-04 01:52:07.269 UTC [policies] GetPolicy -> DEBU f0f Returning policy Writers for evaluation -2018-01-04 01:52:07.269 UTC [cauthdsl] func1 -> DEBU f10 0xc42010e030 gate 1515030727269103200 evaluation starts -2018-01-04 01:52:07.269 UTC [cauthdsl] func2 -> DEBU f11 0xc42010e030 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:52:07.269 UTC [cauthdsl] func2 -> DEBU f12 0xc42010e030 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:52:07.269 UTC [msp/identity] newIdentity -> DEBU f13 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:46:38.991 UTC [cauthdsl] func2 -> DEBU eb3 0xc420150d48 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-14 11:46:38.991 UTC [cauthdsl] func2 -> DEBU eb4 0xc420150d48 principal evaluation fails +2018-01-14 11:46:38.991 UTC [cauthdsl] func1 -> DEBU eb5 0xc420150d48 gate 1515930398989424064 evaluation fails +2018-01-14 11:46:38.991 UTC [cauthdsl] func1 -> DEBU eb6 0xc420150d60 gate 1515930398991653164 evaluation starts +2018-01-14 11:46:38.991 UTC [cauthdsl] func2 -> DEBU eb7 0xc420150d60 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:38.991 UTC [cauthdsl] func2 -> DEBU eb8 0xc420150d60 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:38.992 UTC [msp/identity] newIdentity -> DEBU eb9 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -6938,65 +6738,117 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ xHTBvxfK6mAzmUitFmY= -----END CERTIFICATE----- -2018-01-04 01:52:07.269 UTC [msp] SatisfiesPrincipal -> DEBU f14 Checking if identity satisfies MEMBER role for Org1MSP -2018-01-04 01:52:07.269 UTC [msp] Validate -> DEBU f15 MSP Org1MSP validating identity -2018-01-04 01:52:07.270 UTC [cauthdsl] func2 -> DEBU f16 0xc42010e030 principal matched by identity 0 -2018-01-04 01:52:07.270 UTC [msp/identity] Verify -> DEBU f17 Verify: digest = 00000000 c5 14 f8 e0 6f fa 67 35 28 8f f7 b8 23 4f 8e 9b |....o.g5(...#O..| -00000010 7e 30 e8 8d bd b1 07 56 01 1c e4 82 95 2e f8 89 |~0.....V........| -2018-01-04 01:52:07.270 UTC [msp/identity] Verify -> DEBU f18 Verify: sig = 00000000 30 45 02 21 00 ba 76 ab bb 19 0d 60 b4 1b 7d 06 |0E.!..v....`..}.| -00000010 3b f5 5d 90 b5 78 ed 31 e7 a8 a9 e7 3d ee 39 61 |;.]..x.1....=.9a| -00000020 9a 5b 76 09 c4 02 20 75 c7 4b a5 7b ca 9f 34 5b |.[v... u.K.{..4[| -00000030 0b 76 40 87 99 06 20 62 f5 a2 18 33 cd 92 5a 52 |.v@... b...3..ZR| -00000040 3b 89 62 d9 31 19 1d |;.b.1..| -2018-01-04 01:52:07.270 UTC [cauthdsl] func2 -> DEBU f19 0xc42010e030 principal evaluation succeeds for identity 0 -2018-01-04 01:52:07.270 UTC [cauthdsl] func1 -> DEBU f1a 0xc42010e030 gate 1515030727269103200 evaluation succeeds -2018-01-04 01:52:07.270 UTC [orderer/common/sigfilter] Apply -> DEBU f1b Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -2018-01-04 01:52:07.270 UTC [orderer/common/blockcutter] Ordered -> DEBU f1c Enqueuing message into batch -2018-01-04 01:52:07.271 UTC [orderer/common/broadcast] Handle -> WARN f1d Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:52:07.271 UTC [orderer/main] func1 -> DEBU f1e Closing Broadcast stream -2018-01-04 01:52:09.271 UTC [orderer/solo] main -> DEBU f1f Batch timer expired, creating block -2018-01-04 01:52:09.272 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f20 retrieveBlockByNumber() - blockNum = [4] -2018-01-04 01:52:09.272 UTC [fsblkstorage] newBlockfileStream -> DEBU f21 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44668] -2018-01-04 01:52:09.272 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f22 Remaining bytes=[5208], Going to peek [8] bytes -2018-01-04 01:52:09.273 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f23 Returning blockbytes - length=[5206], placementInfo={fileNum=[0], startOffset=[44668], bytesOffset=[44670]} -2018-01-04 01:52:09.274 UTC [orderer/multichain] addBlockSignature -> DEBU f24 &{ledgerResources:0xc4201f8260 chain:0xc4201f8d20 cutter:0xc420333590 filters:0xc4201f8960 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} -2018-01-04 01:52:09.274 UTC [orderer/multichain] addBlockSignature -> DEBU f25 &{} -2018-01-04 01:52:09.274 UTC [msp] GetLocalMSP -> DEBU f26 Returning existing local MSP -2018-01-04 01:52:09.274 UTC [msp] GetDefaultSigningIdentity -> DEBU f27 Obtaining default signing identity -2018-01-04 01:52:09.275 UTC [msp] GetLocalMSP -> DEBU f28 Returning existing local MSP -2018-01-04 01:52:09.275 UTC [msp] GetDefaultSigningIdentity -> DEBU f29 Obtaining default signing identity -2018-01-04 01:52:09.275 UTC [msp/identity] Sign -> DEBU f2a Sign: plaintext: 0AFA050A0A4F7264657265724D535012...97FB44388D0AF46E0BD496A273F86EC2 -2018-01-04 01:52:09.275 UTC [msp/identity] Sign -> DEBU f2b Sign: digest: EC91E0DD044A98058BCA0DF48542781C7D45C3665D85BB1907828CC7B1572035 -2018-01-04 01:52:09.276 UTC [msp] GetLocalMSP -> DEBU f2c Returning existing local MSP -2018-01-04 01:52:09.276 UTC [msp] GetDefaultSigningIdentity -> DEBU f2d Obtaining default signing identity -2018-01-04 01:52:09.277 UTC [orderer/multichain] addLastConfigSignature -> DEBU f2e [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -2018-01-04 01:52:09.277 UTC [msp] GetLocalMSP -> DEBU f2f Returning existing local MSP -2018-01-04 01:52:09.277 UTC [msp] GetDefaultSigningIdentity -> DEBU f30 Obtaining default signing identity -2018-01-04 01:52:09.278 UTC [msp/identity] Sign -> DEBU f31 Sign: plaintext: 08020AFA050A0A4F7264657265724D53...97FB44388D0AF46E0BD496A273F86EC2 -2018-01-04 01:52:09.279 UTC [msp/identity] Sign -> DEBU f32 Sign: digest: 4D39D98164C71485B200601B75F9B3D9D94326B573D7CAFCA1B873490360C6D3 -2018-01-04 01:52:09.282 UTC [fsblkstorage] indexBlock -> DEBU f33 Indexing block [blockNum=5, blockHash=[]byte{0xe8, 0x99, 0x74, 0xde, 0xf0, 0x6e, 0x31, 0xc2, 0xbb, 0xbe, 0x2a, 0x50, 0x27, 0x3f, 0xfb, 0x5c, 0x63, 0xb0, 0xc1, 0x65, 0xf4, 0x14, 0xd3, 0x85, 0x3a, 0xd3, 0x86, 0x68, 0x6d, 0x6e, 0x6, 0x7e} txOffsets= -txId=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec locPointer=offset=70, bytesLength=2849 +2018-01-14 11:46:38.992 UTC [msp] SatisfiesPrincipal -> DEBU eba Checking if identity satisfies MEMBER role for Org1MSP +2018-01-14 11:46:38.992 UTC [msp] Validate -> DEBU ebb MSP Org1MSP validating identity +2018-01-14 11:46:38.993 UTC [cauthdsl] func2 -> DEBU ebc 0xc420150d60 principal matched by identity 0 +2018-01-14 11:46:38.993 UTC [msp/identity] Verify -> DEBU ebd Verify: digest = 00000000 aa 57 df f9 b0 80 37 ca 02 7f 2d ee 62 2b 64 55 |.W....7...-.b+dU| +00000010 62 b0 05 4e 34 66 46 cf 97 58 fb d0 a2 cf b3 ee |b..N4fF..X......| +2018-01-14 11:46:38.993 UTC [msp/identity] Verify -> DEBU ebe Verify: sig = 00000000 30 45 02 21 00 e3 39 2f fa f2 90 30 d6 01 41 8f |0E.!..9/...0..A.| +00000010 7f a8 64 ce b7 5e 74 4f 34 0a 1b 0e 42 a6 15 ff |..d..^tO4...B...| +00000020 21 b8 97 5b 07 02 20 41 7a 0f 8e 0a 65 60 d0 2a |!..[.. Az...e`.*| +00000030 e0 88 ac f8 7d 50 12 2d b5 69 a4 e6 8a 13 50 c3 |....}P.-.i....P.| +00000040 24 90 f5 e3 30 a1 08 |$...0..| +2018-01-14 11:46:38.994 UTC [cauthdsl] func2 -> DEBU ebf 0xc420150d60 principal evaluation succeeds for identity 0 +2018-01-14 11:46:38.994 UTC [cauthdsl] func1 -> DEBU ec0 0xc420150d60 gate 1515930398991653164 evaluation succeeds +2018-01-14 11:46:38.995 UTC [orderer/common/sigfilter] Apply -> DEBU ec1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +2018-01-14 11:46:38.995 UTC [orderer/common/broadcast] Handle -> DEBU ec2 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +2018-01-14 11:46:38.996 UTC [policies] GetPolicy -> DEBU ec3 Returning policy Writers for evaluation +2018-01-14 11:46:38.997 UTC [cauthdsl] func1 -> DEBU ec4 0xc420150da0 gate 1515930398997057664 evaluation starts +2018-01-14 11:46:38.997 UTC [cauthdsl] func2 -> DEBU ec5 0xc420150da0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:38.997 UTC [cauthdsl] func2 -> DEBU ec6 0xc420150da0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:38.998 UTC [msp/identity] newIdentity -> DEBU ec7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:46:38.999 UTC [cauthdsl] func2 -> DEBU ec8 0xc420150da0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +2018-01-14 11:46:38.999 UTC [cauthdsl] func2 -> DEBU ec9 0xc420150da0 principal evaluation fails +2018-01-14 11:46:38.999 UTC [cauthdsl] func1 -> DEBU eca 0xc420150da0 gate 1515930398997057664 evaluation fails +2018-01-14 11:46:38.999 UTC [cauthdsl] func1 -> DEBU ecb 0xc420150df0 gate 1515930398999223864 evaluation starts +2018-01-14 11:46:38.999 UTC [cauthdsl] func2 -> DEBU ecc 0xc420150df0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:46:39.000 UTC [cauthdsl] func2 -> DEBU ecd 0xc420150df0 processing identity 0 with bytes of 0a074f7267314d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a434341634367417749424167495241502b5a38386b376e6a734870396c336b69576d64397377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455305768634e4d6a67774d5441784d544d774f5455300a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d3439417745484130494142443430496956725274634e6b43344547503744585578375a457a45473244420a786e596573704b4356316a3051596f5272325253656f567544563152485351772f55724f744c666e4d73614d53795538557047784270576a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149434b6256596771716536690a66746237674273784a52314f474c6c437a3874467936535647446855436441524d416f4743437147534d343942414d43413067414d45554349514431546b4c590a6766526b4c674b4868564c6d4b476e56526630696f686f59754154356278556a72665647777749674e674e354c30486649737330534766445a385a454a32552b0a784854427678664b366d417a6d556974466d593d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:46:39.005 UTC [orderer/common/broadcast] Handle -> WARN ece Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:46:39.005 UTC [orderer/main] func1 -> DEBU ecf Closing Broadcast stream +2018-01-14 11:46:39.006 UTC [msp/identity] newIdentity -> DEBU ed0 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB +xnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i +ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY +gfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+ +xHTBvxfK6mAzmUitFmY= +-----END CERTIFICATE----- +2018-01-14 11:46:39.006 UTC [msp] SatisfiesPrincipal -> DEBU ed1 Checking if identity satisfies MEMBER role for Org1MSP +2018-01-14 11:46:39.006 UTC [msp] Validate -> DEBU ed2 MSP Org1MSP validating identity +2018-01-14 11:46:39.013 UTC [cauthdsl] func2 -> DEBU ed3 0xc420150df0 principal matched by identity 0 +2018-01-14 11:46:39.013 UTC [msp/identity] Verify -> DEBU ed4 Verify: digest = 00000000 aa 57 df f9 b0 80 37 ca 02 7f 2d ee 62 2b 64 55 |.W....7...-.b+dU| +00000010 62 b0 05 4e 34 66 46 cf 97 58 fb d0 a2 cf b3 ee |b..N4fF..X......| +2018-01-14 11:46:39.014 UTC [msp/identity] Verify -> DEBU ed5 Verify: sig = 00000000 30 45 02 21 00 e3 39 2f fa f2 90 30 d6 01 41 8f |0E.!..9/...0..A.| +00000010 7f a8 64 ce b7 5e 74 4f 34 0a 1b 0e 42 a6 15 ff |..d..^tO4...B...| +00000020 21 b8 97 5b 07 02 20 41 7a 0f 8e 0a 65 60 d0 2a |!..[.. Az...e`.*| +00000030 e0 88 ac f8 7d 50 12 2d b5 69 a4 e6 8a 13 50 c3 |....}P.-.i....P.| +00000040 24 90 f5 e3 30 a1 08 |$...0..| +2018-01-14 11:46:39.016 UTC [cauthdsl] func2 -> DEBU ed6 0xc420150df0 principal evaluation succeeds for identity 0 +2018-01-14 11:46:39.016 UTC [cauthdsl] func1 -> DEBU ed7 0xc420150df0 gate 1515930398999223864 evaluation succeeds +2018-01-14 11:46:39.017 UTC [orderer/common/sigfilter] Apply -> DEBU ed8 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +2018-01-14 11:46:39.018 UTC [orderer/common/blockcutter] Ordered -> DEBU ed9 Enqueuing message into batch +2018-01-14 11:46:41.019 UTC [orderer/solo] main -> DEBU eda Batch timer expired, creating block +2018-01-14 11:46:41.019 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU edb retrieveBlockByNumber() - blockNum = [4] +2018-01-14 11:46:41.019 UTC [fsblkstorage] newBlockfileStream -> DEBU edc newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44672] +2018-01-14 11:46:41.019 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU edd Remaining bytes=[5216], Going to peek [8] bytes +2018-01-14 11:46:41.019 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ede Returning blockbytes - length=[5214], placementInfo={fileNum=[0], startOffset=[44672], bytesOffset=[44674]} +2018-01-14 11:46:41.020 UTC [orderer/multichain] addBlockSignature -> DEBU edf &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +2018-01-14 11:46:41.020 UTC [orderer/multichain] addBlockSignature -> DEBU ee0 &{} +2018-01-14 11:46:41.020 UTC [msp] GetLocalMSP -> DEBU ee1 Returning existing local MSP +2018-01-14 11:46:41.020 UTC [msp] GetDefaultSigningIdentity -> DEBU ee2 Obtaining default signing identity +2018-01-14 11:46:41.020 UTC [msp] GetLocalMSP -> DEBU ee3 Returning existing local MSP +2018-01-14 11:46:41.020 UTC [msp] GetDefaultSigningIdentity -> DEBU ee4 Obtaining default signing identity +2018-01-14 11:46:41.020 UTC [msp/identity] Sign -> DEBU ee5 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...B6512A4E48AF9C6948683A6124ECCEFF +2018-01-14 11:46:41.020 UTC [msp/identity] Sign -> DEBU ee6 Sign: digest: 988F06EC25427688B61CAF5C94EEA1D94FAF311C8B7B2D7D2A5A58F73D755E85 +2018-01-14 11:46:41.021 UTC [msp] GetLocalMSP -> DEBU ee7 Returning existing local MSP +2018-01-14 11:46:41.021 UTC [msp] GetDefaultSigningIdentity -> DEBU ee8 Obtaining default signing identity +2018-01-14 11:46:41.021 UTC [orderer/multichain] addLastConfigSignature -> DEBU ee9 [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-14 11:46:41.021 UTC [msp] GetLocalMSP -> DEBU eea Returning existing local MSP +2018-01-14 11:46:41.021 UTC [msp] GetDefaultSigningIdentity -> DEBU eeb Obtaining default signing identity +2018-01-14 11:46:41.021 UTC [msp/identity] Sign -> DEBU eec Sign: plaintext: 08020AFA050A0A4F7264657265724D53...B6512A4E48AF9C6948683A6124ECCEFF +2018-01-14 11:46:41.021 UTC [msp/identity] Sign -> DEBU eed Sign: digest: EDC138B5DEC193D583AE02A8E31A813F771808B7A4CBAF146AE72AD02BB698F9 +2018-01-14 11:46:41.031 UTC [fsblkstorage] indexBlock -> DEBU eee Indexing block [blockNum=5, blockHash=[]byte{0xcd, 0x59, 0x35, 0x43, 0xb3, 0xfa, 0x14, 0xcb, 0x59, 0x18, 0x46, 0x89, 0x5f, 0xd3, 0xa0, 0x0, 0x87, 0xb9, 0x64, 0x3c, 0xe6, 0xb3, 0x98, 0x4d, 0x7a, 0xc5, 0x75, 0xe5, 0xbd, 0x79, 0xfa, 0x45} txOffsets= +txId=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 locPointer=offset=70, bytesLength=2855 ] -2018-01-04 01:52:09.282 UTC [fsblkstorage] updateCheckpoint -> DEBU f34 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54545], isChainEmpty=[false], lastBlockNumber=[5] -2018-01-04 01:52:09.282 UTC [orderer/multichain] WriteBlock -> DEBU f35 [channel: businesschannel] Wrote block 5 -2018-01-04 01:52:09.282 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f37 retrieveBlockByNumber() - blockNum = [5] -2018-01-04 01:52:09.283 UTC [fsblkstorage] newBlockfileStream -> DEBU f38 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49876] -2018-01-04 01:52:09.282 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f36 retrieveBlockByNumber() - blockNum = [5] -2018-01-04 01:52:09.283 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f39 Remaining bytes=[4669], Going to peek [8] bytes -2018-01-04 01:52:09.283 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3b Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[49876], bytesOffset=[49878]} -2018-01-04 01:52:09.283 UTC [fsblkstorage] newBlockfileStream -> DEBU f3a newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49876] -2018-01-04 01:52:09.283 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3d Remaining bytes=[4669], Going to peek [8] bytes -2018-01-04 01:52:09.283 UTC [orderer/common/deliver] Handle -> DEBU f3c [channel: businesschannel] Delivering block for (0xc42027ed80) -2018-01-04 01:52:09.283 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3e Returning blockbytes - length=[4667], placementInfo={fileNum=[0], startOffset=[49876], bytesOffset=[49878]} -2018-01-04 01:52:09.283 UTC [orderer/common/deliver] Handle -> DEBU f3f [channel: businesschannel] Delivering block for (0xc4201f9360) -2018-01-04 01:52:24.382 UTC [orderer/main] Broadcast -> DEBU f40 Starting new Broadcast handler -2018-01-04 01:52:24.382 UTC [orderer/common/broadcast] Handle -> DEBU f41 Starting new broadcast loop -2018-01-04 01:52:24.405 UTC [orderer/common/broadcast] Handle -> DEBU f42 [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION -2018-01-04 01:52:24.406 UTC [policies] GetPolicy -> DEBU f43 Returning policy Writers for evaluation -2018-01-04 01:52:24.406 UTC [cauthdsl] func1 -> DEBU f44 0xc42010e1c0 gate 1515030744406061000 evaluation starts -2018-01-04 01:52:24.406 UTC [cauthdsl] func2 -> DEBU f45 0xc42010e1c0 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:52:24.406 UTC [cauthdsl] func2 -> DEBU f46 0xc42010e1c0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:52:24.407 UTC [msp/identity] newIdentity -> DEBU f47 Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:46:41.031 UTC [fsblkstorage] updateCheckpoint -> DEBU eef Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54563], isChainEmpty=[false], lastBlockNumber=[5] +2018-01-14 11:46:41.031 UTC [orderer/multichain] WriteBlock -> DEBU ef0 [channel: businesschannel] Wrote block 5 +2018-01-14 11:46:41.031 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ef1 retrieveBlockByNumber() - blockNum = [5] +2018-01-14 11:46:41.031 UTC [fsblkstorage] newBlockfileStream -> DEBU ef2 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49888] +2018-01-14 11:46:41.031 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef3 Remaining bytes=[4675], Going to peek [8] bytes +2018-01-14 11:46:41.031 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef4 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49888], bytesOffset=[49890]} +2018-01-14 11:46:41.031 UTC [orderer/common/deliver] Handle -> DEBU ef5 [channel: businesschannel] Delivering block for (0xc420373960) +2018-01-14 11:46:41.035 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ef6 retrieveBlockByNumber() - blockNum = [5] +2018-01-14 11:46:41.036 UTC [fsblkstorage] newBlockfileStream -> DEBU ef7 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49888] +2018-01-14 11:46:41.036 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef8 Remaining bytes=[4675], Going to peek [8] bytes +2018-01-14 11:46:41.036 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ef9 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49888], bytesOffset=[49890]} +2018-01-14 11:46:41.036 UTC [orderer/common/deliver] Handle -> DEBU efa [channel: businesschannel] Delivering block for (0xc42034dc80) +2018-01-14 11:47:02.311 UTC [orderer/main] Broadcast -> DEBU efb Starting new Broadcast handler +2018-01-14 11:47:02.311 UTC [orderer/common/broadcast] Handle -> DEBU efc Starting new broadcast loop +2018-01-14 11:47:02.332 UTC [orderer/common/broadcast] Handle -> DEBU efd [channel: businesschannel] Broadcast is filtering message of type ENDORSER_TRANSACTION +2018-01-14 11:47:02.332 UTC [policies] GetPolicy -> DEBU efe Returning policy Writers for evaluation +2018-01-14 11:47:02.332 UTC [cauthdsl] func1 -> DEBU eff 0xc420150e68 gate 1515930422332191264 evaluation starts +2018-01-14 11:47:02.332 UTC [cauthdsl] func2 -> DEBU f00 0xc420150e68 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:02.332 UTC [cauthdsl] func2 -> DEBU f01 0xc420150e68 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:02.333 UTC [msp/identity] newIdentity -> DEBU f02 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -7010,13 +6862,25 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:52:24.407 UTC [cauthdsl] func2 -> DEBU f48 0xc42010e1c0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-04 01:52:24.407 UTC [cauthdsl] func2 -> DEBU f49 0xc42010e1c0 principal evaluation fails -2018-01-04 01:52:24.407 UTC [cauthdsl] func1 -> DEBU f4a 0xc42010e1c0 gate 1515030744406061000 evaluation fails -2018-01-04 01:52:24.407 UTC [cauthdsl] func1 -> DEBU f4b 0xc42010e1d0 gate 1515030744407926900 evaluation starts -2018-01-04 01:52:24.408 UTC [cauthdsl] func2 -> DEBU f4c 0xc42010e1d0 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:52:24.408 UTC [cauthdsl] func2 -> DEBU f4d 0xc42010e1d0 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:52:24.408 UTC [msp/identity] newIdentity -> DEBU f4e Creating identity instance for ID -----BEGIN CERTIFICATE----- +2018-01-14 11:47:02.333 UTC [msp] SatisfiesPrincipal -> DEBU f03 Checking if identity satisfies MEMBER role for Org2MSP +2018-01-14 11:47:02.333 UTC [msp] Validate -> DEBU f04 MSP Org2MSP validating identity +2018-01-14 11:47:02.333 UTC [cauthdsl] func2 -> DEBU f05 0xc420150e68 principal matched by identity 0 +2018-01-14 11:47:02.333 UTC [msp/identity] Verify -> DEBU f06 Verify: digest = 00000000 71 42 33 02 69 90 b2 80 34 a2 8b 8a 30 78 7d e4 |qB3.i...4...0x}.| +00000010 21 9a 96 64 3c 41 0c b2 81 56 7d aa fd f5 21 77 |!..d DEBU f07 Verify: sig = 00000000 30 45 02 21 00 8d 48 db 23 eb 6a 9e 8a 9c 10 0b |0E.!..H.#.j.....| +00000010 02 11 ce f9 6c c4 11 8f 9d 27 1b 1f 76 c7 c9 ed |....l....'..v...| +00000020 5c ef a8 f8 f2 02 20 77 a8 6e 02 bb 64 71 62 a6 |\..... w.n..dqb.| +00000030 5f 59 af e1 cb 32 6c 98 aa 93 1b 90 27 5c 11 0c |_Y...2l.....'\..| +00000040 38 f1 94 5c 47 62 2a |8..\Gb*| +2018-01-14 11:47:02.334 UTC [cauthdsl] func2 -> DEBU f08 0xc420150e68 principal evaluation succeeds for identity 0 +2018-01-14 11:47:02.334 UTC [cauthdsl] func1 -> DEBU f09 0xc420150e68 gate 1515930422332191264 evaluation succeeds +2018-01-14 11:47:02.334 UTC [orderer/common/sigfilter] Apply -> DEBU f0a Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +2018-01-14 11:47:02.334 UTC [orderer/common/broadcast] Handle -> DEBU f0b [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION +2018-01-14 11:47:02.334 UTC [policies] GetPolicy -> DEBU f0c Returning policy Writers for evaluation +2018-01-14 11:47:02.334 UTC [cauthdsl] func1 -> DEBU f0d 0xc420150e90 gate 1515930422334730064 evaluation starts +2018-01-14 11:47:02.334 UTC [cauthdsl] func2 -> DEBU f0e 0xc420150e90 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:02.334 UTC [cauthdsl] func2 -> DEBU f0f 0xc420150e90 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:02.335 UTC [msp/identity] newIdentity -> DEBU f10 Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -7030,71 +6894,1069 @@ ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ 84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS AXYxULZpXYDQXt1KaLI= -----END CERTIFICATE----- -2018-01-04 01:52:24.409 UTC [msp] SatisfiesPrincipal -> DEBU f4f Checking if identity satisfies MEMBER role for Org2MSP -2018-01-04 01:52:24.409 UTC [msp] Validate -> DEBU f50 MSP Org2MSP validating identity -2018-01-04 01:52:24.409 UTC [cauthdsl] func2 -> DEBU f51 0xc42010e1d0 principal matched by identity 0 -2018-01-04 01:52:24.409 UTC [msp/identity] Verify -> DEBU f52 Verify: digest = 00000000 4d 56 15 48 1c 76 9e 7f ec 59 21 48 ad b4 a7 6f |MV.H.v...Y!H...o| -00000010 e0 15 52 46 5d a2 bb 14 39 ed 7c db 2a b6 9f e1 |..RF]...9.|.*...| -2018-01-04 01:52:24.410 UTC [msp/identity] Verify -> DEBU f53 Verify: sig = 00000000 30 44 02 20 3e fd 26 4c bd ba f8 8f ca f1 20 a5 |0D. >.&L...... .| -00000010 bf 36 7d af 9b 02 3b 35 7b f0 53 d7 eb c0 52 a9 |.6}...;5{.S...R.| -00000020 6b ec 7d a8 02 20 34 dd 86 ea f0 0b 75 39 b1 77 |k.}.. 4.....u9.w| -00000030 fa 18 24 cb 2b 4d b9 cc e9 af 6d 5c ae d7 53 8b |..$.+M....m\..S.| -00000040 b2 58 f9 f7 d2 c3 |.X....| -2018-01-04 01:52:24.410 UTC [cauthdsl] func2 -> DEBU f54 0xc42010e1d0 principal evaluation succeeds for identity 0 -2018-01-04 01:52:24.410 UTC [cauthdsl] func1 -> DEBU f55 0xc42010e1d0 gate 1515030744407926900 evaluation succeeds -2018-01-04 01:52:24.410 UTC [orderer/common/sigfilter] Apply -> DEBU f56 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -2018-01-04 01:52:24.410 UTC [orderer/common/broadcast] Handle -> DEBU f57 [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION -2018-01-04 01:52:24.411 UTC [policies] GetPolicy -> DEBU f58 Returning policy Writers for evaluation -2018-01-04 01:52:24.411 UTC [cauthdsl] func1 -> DEBU f59 0xc420026178 gate 1515030744411208100 evaluation starts -2018-01-04 01:52:24.411 UTC [cauthdsl] func2 -> DEBU f5a 0xc420026178 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:52:24.411 UTC [cauthdsl] func2 -> DEBU f5b 0xc420026178 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:52:24.411 UTC [msp/identity] newIdentity -> DEBU f5c Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= +2018-01-14 11:47:02.335 UTC [msp] SatisfiesPrincipal -> DEBU f11 Checking if identity satisfies MEMBER role for Org2MSP +2018-01-14 11:47:02.335 UTC [msp] Validate -> DEBU f12 MSP Org2MSP validating identity +2018-01-14 11:47:02.336 UTC [cauthdsl] func2 -> DEBU f13 0xc420150e90 principal matched by identity 0 +2018-01-14 11:47:02.336 UTC [msp/identity] Verify -> DEBU f14 Verify: digest = 00000000 71 42 33 02 69 90 b2 80 34 a2 8b 8a 30 78 7d e4 |qB3.i...4...0x}.| +00000010 21 9a 96 64 3c 41 0c b2 81 56 7d aa fd f5 21 77 |!..d DEBU f15 Verify: sig = 00000000 30 45 02 21 00 8d 48 db 23 eb 6a 9e 8a 9c 10 0b |0E.!..H.#.j.....| +00000010 02 11 ce f9 6c c4 11 8f 9d 27 1b 1f 76 c7 c9 ed |....l....'..v...| +00000020 5c ef a8 f8 f2 02 20 77 a8 6e 02 bb 64 71 62 a6 |\..... w.n..dqb.| +00000030 5f 59 af e1 cb 32 6c 98 aa 93 1b 90 27 5c 11 0c |_Y...2l.....'\..| +00000040 38 f1 94 5c 47 62 2a |8..\Gb*| +2018-01-14 11:47:02.336 UTC [cauthdsl] func2 -> DEBU f16 0xc420150e90 principal evaluation succeeds for identity 0 +2018-01-14 11:47:02.336 UTC [cauthdsl] func1 -> DEBU f17 0xc420150e90 gate 1515930422334730064 evaluation succeeds +2018-01-14 11:47:02.336 UTC [orderer/common/sigfilter] Apply -> DEBU f18 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57880 1 [0xc4201509c8 0xc420150a70]}) %!s(*policies.implicitMetaPolicy=&{0xc420b425e0 1 [0xc420150ac0]})]} +2018-01-14 11:47:02.336 UTC [orderer/common/blockcutter] Ordered -> DEBU f19 Enqueuing message into batch +2018-01-14 11:47:02.337 UTC [orderer/common/broadcast] Handle -> WARN f1a Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:02.337 UTC [orderer/main] func1 -> DEBU f1b Closing Broadcast stream +2018-01-14 11:47:04.337 UTC [orderer/solo] main -> DEBU f1c Batch timer expired, creating block +2018-01-14 11:47:04.337 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f1d retrieveBlockByNumber() - blockNum = [5] +2018-01-14 11:47:04.337 UTC [fsblkstorage] newBlockfileStream -> DEBU f1e newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49888] +2018-01-14 11:47:04.337 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f1f Remaining bytes=[4675], Going to peek [8] bytes +2018-01-14 11:47:04.338 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f20 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49888], bytesOffset=[49890]} +2018-01-14 11:47:04.339 UTC [orderer/multichain] addBlockSignature -> DEBU f21 &{ledgerResources:0xc42080f8e0 chain:0xc420bd01a0 cutter:0xc420bb4550 filters:0xc42080fde0 signer:0x1274e88 lastConfig:2 lastConfigSeq:3} +2018-01-14 11:47:04.339 UTC [orderer/multichain] addBlockSignature -> DEBU f22 &{} +2018-01-14 11:47:04.339 UTC [msp] GetLocalMSP -> DEBU f23 Returning existing local MSP +2018-01-14 11:47:04.339 UTC [msp] GetDefaultSigningIdentity -> DEBU f24 Obtaining default signing identity +2018-01-14 11:47:04.341 UTC [msp] GetLocalMSP -> DEBU f25 Returning existing local MSP +2018-01-14 11:47:04.341 UTC [msp] GetDefaultSigningIdentity -> DEBU f26 Obtaining default signing identity +2018-01-14 11:47:04.341 UTC [msp/identity] Sign -> DEBU f27 Sign: plaintext: 0AFA050A0A4F7264657265724D535012...019AFECC2613A2D0EB31A845E3B661EC +2018-01-14 11:47:04.342 UTC [msp/identity] Sign -> DEBU f28 Sign: digest: 3A3B7D0B9AF66EF5D70900C6D59E77E2EF04A15C0C161DF276E69F9E1A72C437 +2018-01-14 11:47:04.342 UTC [msp] GetLocalMSP -> DEBU f29 Returning existing local MSP +2018-01-14 11:47:04.342 UTC [msp] GetDefaultSigningIdentity -> DEBU f2a Obtaining default signing identity +2018-01-14 11:47:04.343 UTC [orderer/multichain] addLastConfigSignature -> DEBU f2b [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +2018-01-14 11:47:04.343 UTC [msp] GetLocalMSP -> DEBU f2c Returning existing local MSP +2018-01-14 11:47:04.344 UTC [msp] GetDefaultSigningIdentity -> DEBU f2d Obtaining default signing identity +2018-01-14 11:47:04.344 UTC [msp/identity] Sign -> DEBU f2e Sign: plaintext: 08020AFA050A0A4F7264657265724D53...019AFECC2613A2D0EB31A845E3B661EC +2018-01-14 11:47:04.344 UTC [msp/identity] Sign -> DEBU f2f Sign: digest: EEEBA22234A465B4A67EFFDA712DECE40FD027DB5049281799443A08006AF809 +2018-01-14 11:47:04.354 UTC [fsblkstorage] indexBlock -> DEBU f30 Indexing block [blockNum=6, blockHash=[]byte{0x66, 0x95, 0xb9, 0xa7, 0xea, 0xde, 0xdc, 0xbc, 0x49, 0xd1, 0x7a, 0xf8, 0xb7, 0x8c, 0x68, 0x5, 0x62, 0x2d, 0x2f, 0x0, 0x6e, 0x1f, 0x51, 0x6, 0xe8, 0xa0, 0xe7, 0xba, 0x94, 0x12, 0xd3, 0x72} txOffsets= +txId=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 locPointer=offset=70, bytesLength=2856 +] +2018-01-14 11:47:04.354 UTC [fsblkstorage] updateCheckpoint -> DEBU f31 Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59238], isChainEmpty=[false], lastBlockNumber=[6] +2018-01-14 11:47:04.354 UTC [orderer/multichain] WriteBlock -> DEBU f32 [channel: businesschannel] Wrote block 6 +2018-01-14 11:47:04.354 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f33 retrieveBlockByNumber() - blockNum = [6] +2018-01-14 11:47:04.354 UTC [fsblkstorage] newBlockfileStream -> DEBU f34 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +2018-01-14 11:47:04.354 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f35 Remaining bytes=[4675], Going to peek [8] bytes +2018-01-14 11:47:04.355 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f36 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +2018-01-14 11:47:04.355 UTC [orderer/common/deliver] Handle -> DEBU f37 [channel: businesschannel] Delivering block for (0xc420373960) +2018-01-14 11:47:04.363 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f38 retrieveBlockByNumber() - blockNum = [6] +2018-01-14 11:47:04.364 UTC [fsblkstorage] newBlockfileStream -> DEBU f39 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +2018-01-14 11:47:04.364 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3a Remaining bytes=[4675], Going to peek [8] bytes +2018-01-14 11:47:04.364 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f3b Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +2018-01-14 11:47:04.364 UTC [orderer/common/deliver] Handle -> DEBU f3c [channel: businesschannel] Delivering block for (0xc42034dc80) +2018-01-14 11:47:04.792 UTC [orderer/main] Deliver -> DEBU f3d Starting new Deliver handler +2018-01-14 11:47:04.792 UTC [orderer/common/deliver] Handle -> DEBU f3e Starting new deliver loop +2018-01-14 11:47:04.793 UTC [orderer/common/deliver] Handle -> DEBU f3f Attempting to read seek info message +2018-01-14 11:47:04.794 UTC [policies] GetPolicy -> DEBU f40 Returning policy Readers for evaluation +2018-01-14 11:47:04.794 UTC [cauthdsl] func1 -> DEBU f41 0xc420150108 gate 1515930424794459464 evaluation starts +2018-01-14 11:47:04.794 UTC [cauthdsl] func2 -> DEBU f42 0xc420150108 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:04.794 UTC [cauthdsl] func2 -> DEBU f43 0xc420150108 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:04.795 UTC [msp/identity] newIdentity -> DEBU f44 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:52:24.411 UTC [cauthdsl] func2 -> DEBU f5d 0xc420026178 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -2018-01-04 01:52:24.411 UTC [cauthdsl] func2 -> DEBU f5e 0xc420026178 principal evaluation fails -2018-01-04 01:52:24.411 UTC [cauthdsl] func1 -> DEBU f5f 0xc420026178 gate 1515030744411208100 evaluation fails -2018-01-04 01:52:24.412 UTC [cauthdsl] func1 -> DEBU f60 0xc4200263c8 gate 1515030744411974900 evaluation starts -2018-01-04 01:52:24.412 UTC [cauthdsl] func2 -> DEBU f61 0xc4200263c8 signed by 0 principal evaluation starts (used [false]) -2018-01-04 01:52:24.412 UTC [cauthdsl] func2 -> DEBU f62 0xc4200263c8 processing identity 0 with bytes of 0a074f7267324d53501280062d2d2d2d2d424547494e202d2d2d2d2d0a4d494943476a4343416343674177494241674952414e32754a64326e784d55544f5739774b4e6f5864786777436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d54417a4d544d774f5455315768634e4d6a67774d5441784d544d774f5455310a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424a475378465a4537736f7036556d6564727666583342434455454a497538340a6d514e4d63616433317a543664774a6d336872412f587a764d6e33352f4b6e6c597a644b684c32634f5877556c444759716a476a7851366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b4149485977434e63452b4666720a5a58715a49344a4c503859586a7a5466714f56516b39326234342f64553554754d416f4743437147534d343942414d43413067414d455543495143624a6964510a3834433878686a556d52706f696c484b6c35464349775542773639445a514f2f375a7a65507749674270435163674b4434466e4e56592b4773345335537652530a41585978554c5a70585944515874314b614c493d0a2d2d2d2d2d454e44202d2d2d2d2d0a -2018-01-04 01:52:24.412 UTC [msp/identity] newIdentity -> DEBU f63 Creating identity instance for ID -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84 -mQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr -ZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ -84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS -AXYxULZpXYDQXt1KaLI= +2018-01-14 11:47:04.795 UTC [cauthdsl] func2 -> DEBU f45 0xc420150108 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:04.795 UTC [cauthdsl] func2 -> DEBU f46 0xc420150108 principal evaluation fails +2018-01-14 11:47:04.795 UTC [cauthdsl] func1 -> DEBU f47 0xc420150108 gate 1515930424794459464 evaluation fails +2018-01-14 11:47:04.795 UTC [cauthdsl] func1 -> DEBU f48 0xc420150408 gate 1515930424795628664 evaluation starts +2018-01-14 11:47:04.795 UTC [cauthdsl] func2 -> DEBU f49 0xc420150408 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:04.796 UTC [cauthdsl] func2 -> DEBU f4a 0xc420150408 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:04.796 UTC [msp/identity] newIdentity -> DEBU f4b Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 -----END CERTIFICATE----- -2018-01-04 01:52:24.412 UTC [msp] SatisfiesPrincipal -> DEBU f64 Checking if identity satisfies MEMBER role for Org2MSP -2018-01-04 01:52:24.412 UTC [msp] Validate -> DEBU f65 MSP Org2MSP validating identity -2018-01-04 01:52:24.412 UTC [cauthdsl] func2 -> DEBU f66 0xc4200263c8 principal matched by identity 0 -2018-01-04 01:52:24.413 UTC [msp/identity] Verify -> DEBU f67 Verify: digest = 00000000 4d 56 15 48 1c 76 9e 7f ec 59 21 48 ad b4 a7 6f |MV.H.v...Y!H...o| -00000010 e0 15 52 46 5d a2 bb 14 39 ed 7c db 2a b6 9f e1 |..RF]...9.|.*...| -2018-01-04 01:52:24.413 UTC [msp/identity] Verify -> DEBU f68 Verify: sig = 00000000 30 44 02 20 3e fd 26 4c bd ba f8 8f ca f1 20 a5 |0D. >.&L...... .| -00000010 bf 36 7d af 9b 02 3b 35 7b f0 53 d7 eb c0 52 a9 |.6}...;5{.S...R.| -00000020 6b ec 7d a8 02 20 34 dd 86 ea f0 0b 75 39 b1 77 |k.}.. 4.....u9.w| -00000030 fa 18 24 cb 2b 4d b9 cc e9 af 6d 5c ae d7 53 8b |..$.+M....m\..S.| -00000040 b2 58 f9 f7 d2 c3 |.X....| -2018-01-04 01:52:24.413 UTC [cauthdsl] func2 -> DEBU f69 0xc4200263c8 principal evaluation succeeds for identity 0 -2018-01-04 01:52:24.413 UTC [cauthdsl] func1 -> DEBU f6a 0xc4200263c8 gate 1515030744411974900 evaluation succeeds -2018-01-04 01:52:24.413 UTC [orderer/common/sigfilter] Apply -> DEBU f6b Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Writers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420916fa0 1 [0xc42010e870 0xc42010e910]}) %!s(*policies.implicitMetaPolicy=&{0xc4209169e0 1 [0xc42010e7c0]})]} -2018-01-04 01:52:24.413 UTC [orderer/common/blockcutter] Ordered -> DEBU f6c Enqueuing message into batch -2018-01-04 01:52:24.414 UTC [orderer/common/broadcast] Handle -> WARN f6d Error reading from stream: rpc error: code = Canceled desc = context canceled -2018-01-04 01:52:24.414 UTC [orderer/main] func1 -> DEBU f6e Closing Broadcast stream +2018-01-14 11:47:04.796 UTC [cauthdsl] func2 -> DEBU f4c 0xc420150408 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:04.797 UTC [cauthdsl] func2 -> DEBU f4d 0xc420150408 principal evaluation fails +2018-01-14 11:47:04.797 UTC [cauthdsl] func1 -> DEBU f4e 0xc420150408 gate 1515930424795628664 evaluation fails +2018-01-14 11:47:04.797 UTC [cauthdsl] func1 -> DEBU f4f 0xc420150420 gate 1515930424797284064 evaluation starts +2018-01-14 11:47:04.797 UTC [cauthdsl] func2 -> DEBU f50 0xc420150420 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:04.797 UTC [cauthdsl] func2 -> DEBU f51 0xc420150420 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:04.798 UTC [msp/identity] newIdentity -> DEBU f52 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:04.798 UTC [msp] SatisfiesPrincipal -> DEBU f53 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:04.798 UTC [msp] Validate -> DEBU f54 MSP OrdererMSP validating identity +2018-01-14 11:47:04.799 UTC [cauthdsl] func2 -> DEBU f55 0xc420150420 principal matched by identity 0 +2018-01-14 11:47:04.799 UTC [msp/identity] Verify -> DEBU f56 Verify: digest = 00000000 07 5b 81 a6 5c e3 42 9e 14 7c 30 37 7f b0 b7 c3 |.[..\.B..|07....| +00000010 e9 f6 90 c6 12 2a 77 43 3d 9f ca 38 a4 26 1c be |.....*wC=..8.&..| +2018-01-14 11:47:04.799 UTC [msp/identity] Verify -> DEBU f57 Verify: sig = 00000000 30 44 02 20 08 cf 9a 28 23 6f 5c e9 d2 77 97 9d |0D. ...(#o\..w..| +00000010 f5 e0 0b 70 66 99 ff 6a 58 5d ad 78 09 1b e3 bc |...pf..jX].x....| +00000020 00 5b fb ee 02 20 7f e5 2e 7f e2 98 58 22 7f 4d |.[... ......X".M| +00000030 80 f0 19 e4 e8 d7 05 bc 68 cb 97 51 26 1c f3 82 |........h..Q&...| +00000040 9c ab 7f 9e ae 07 |......| +2018-01-14 11:47:04.800 UTC [cauthdsl] func2 -> DEBU f58 0xc420150420 principal evaluation succeeds for identity 0 +2018-01-14 11:47:04.800 UTC [cauthdsl] func1 -> DEBU f59 0xc420150420 gate 1515930424797284064 evaluation succeeds +2018-01-14 11:47:04.800 UTC [orderer/common/sigfilter] Apply -> DEBU f5a Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:04.800 UTC [orderer/common/deliver] Handle -> DEBU f5b [channel: businesschannel] Received seekInfo (0xc420b439c0) start: > stop: > +2018-01-14 11:47:04.801 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f5c retrieveBlockByNumber() - blockNum = [6] +2018-01-14 11:47:04.801 UTC [fsblkstorage] newBlockfileStream -> DEBU f5d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +2018-01-14 11:47:04.801 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f5e Remaining bytes=[4675], Going to peek [8] bytes +2018-01-14 11:47:04.801 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f5f Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +2018-01-14 11:47:04.801 UTC [orderer/common/deliver] Handle -> DEBU f60 [channel: businesschannel] Delivering block for (0xc420b439c0) +2018-01-14 11:47:04.802 UTC [orderer/common/deliver] Handle -> DEBU f61 [channel: businesschannel] Done delivering for (0xc420b439c0), waiting for new SeekInfo +2018-01-14 11:47:04.802 UTC [orderer/common/deliver] Handle -> DEBU f62 Attempting to read seek info message +2018-01-14 11:47:04.805 UTC [orderer/common/deliver] Handle -> WARN f63 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:04.806 UTC [orderer/main] func1 -> DEBU f64 Closing Deliver stream +2018-01-14 11:47:05.001 UTC [orderer/main] Deliver -> DEBU f65 Starting new Deliver handler +2018-01-14 11:47:05.001 UTC [orderer/common/deliver] Handle -> DEBU f66 Starting new deliver loop +2018-01-14 11:47:05.001 UTC [orderer/common/deliver] Handle -> DEBU f67 Attempting to read seek info message +2018-01-14 11:47:05.002 UTC [policies] GetPolicy -> DEBU f68 Returning policy Readers for evaluation +2018-01-14 11:47:05.003 UTC [cauthdsl] func1 -> DEBU f69 0xc420150730 gate 1515930425003040764 evaluation starts +2018-01-14 11:47:05.003 UTC [cauthdsl] func2 -> DEBU f6a 0xc420150730 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.003 UTC [cauthdsl] func2 -> DEBU f6b 0xc420150730 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.003 UTC [msp/identity] newIdentity -> DEBU f6c Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f6d 0xc420150730 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f6e 0xc420150730 principal evaluation fails +2018-01-14 11:47:05.004 UTC [cauthdsl] func1 -> DEBU f6f 0xc420150730 gate 1515930425003040764 evaluation fails +2018-01-14 11:47:05.004 UTC [cauthdsl] func1 -> DEBU f70 0xc420150780 gate 1515930425004191064 evaluation starts +2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f71 0xc420150780 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f72 0xc420150780 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.004 UTC [msp/identity] newIdentity -> DEBU f73 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f74 0xc420150780 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f75 0xc420150780 principal evaluation fails +2018-01-14 11:47:05.004 UTC [cauthdsl] func1 -> DEBU f76 0xc420150780 gate 1515930425004191064 evaluation fails +2018-01-14 11:47:05.004 UTC [cauthdsl] func1 -> DEBU f77 0xc4201507b0 gate 1515930425004941264 evaluation starts +2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f78 0xc4201507b0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.004 UTC [cauthdsl] func2 -> DEBU f79 0xc4201507b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.005 UTC [msp/identity] newIdentity -> DEBU f7a Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.005 UTC [msp] SatisfiesPrincipal -> DEBU f7b Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:05.005 UTC [msp] Validate -> DEBU f7c MSP OrdererMSP validating identity +2018-01-14 11:47:05.006 UTC [cauthdsl] func2 -> DEBU f7d 0xc4201507b0 principal matched by identity 0 +2018-01-14 11:47:05.006 UTC [msp/identity] Verify -> DEBU f7e Verify: digest = 00000000 09 2c af c8 db 03 09 c4 7a 5d c4 3f ed 66 6f a7 |.,......z].?.fo.| +00000010 97 49 dc c7 0e 94 24 6f 30 f0 98 bc 87 c3 48 f5 |.I....$o0.....H.| +2018-01-14 11:47:05.006 UTC [msp/identity] Verify -> DEBU f7f Verify: sig = 00000000 30 44 02 20 0a d3 db af bf 7d a0 cf 09 d9 3d 3a |0D. .....}....=:| +00000010 c1 5a 2c 41 80 dc e6 d0 38 ff c2 0a 22 ec ad 0b |.Z,A....8..."...| +00000020 07 d7 6d 36 02 20 31 d1 56 87 20 0b e3 6e 37 ec |..m6. 1.V. ..n7.| +00000030 0a 28 40 f7 75 23 0e ad c9 55 29 fe 61 92 01 1c |.(@.u#...U).a...| +00000040 27 e2 1f f1 46 2b |'...F+| +2018-01-14 11:47:05.006 UTC [cauthdsl] func2 -> DEBU f80 0xc4201507b0 principal evaluation succeeds for identity 0 +2018-01-14 11:47:05.006 UTC [cauthdsl] func1 -> DEBU f81 0xc4201507b0 gate 1515930425004941264 evaluation succeeds +2018-01-14 11:47:05.006 UTC [orderer/common/sigfilter] Apply -> DEBU f82 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:05.006 UTC [orderer/common/deliver] Handle -> DEBU f83 [channel: businesschannel] Received seekInfo (0xc4203add00) start: > stop: > +2018-01-14 11:47:05.007 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU f84 retrieveBlockByNumber() - blockNum = [6] +2018-01-14 11:47:05.007 UTC [fsblkstorage] newBlockfileStream -> DEBU f85 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +2018-01-14 11:47:05.007 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f86 Remaining bytes=[4675], Going to peek [8] bytes +2018-01-14 11:47:05.007 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU f87 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +2018-01-14 11:47:05.007 UTC [orderer/common/deliver] Handle -> DEBU f88 [channel: businesschannel] Delivering block for (0xc4203add00) +2018-01-14 11:47:05.013 UTC [orderer/common/deliver] Handle -> DEBU f89 [channel: businesschannel] Done delivering for (0xc4203add00), waiting for new SeekInfo +2018-01-14 11:47:05.013 UTC [orderer/common/deliver] Handle -> DEBU f8a Attempting to read seek info message +2018-01-14 11:47:05.015 UTC [policies] GetPolicy -> DEBU f8b Returning policy Readers for evaluation +2018-01-14 11:47:05.016 UTC [cauthdsl] func1 -> DEBU f8c 0xc420150828 gate 1515930425015944464 evaluation starts +2018-01-14 11:47:05.016 UTC [cauthdsl] func2 -> DEBU f8d 0xc420150828 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.016 UTC [cauthdsl] func2 -> DEBU f8e 0xc420150828 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.016 UTC [msp/identity] newIdentity -> DEBU f8f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.017 UTC [cauthdsl] func2 -> DEBU f90 0xc420150828 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:05.017 UTC [cauthdsl] func2 -> DEBU f91 0xc420150828 principal evaluation fails +2018-01-14 11:47:05.017 UTC [cauthdsl] func1 -> DEBU f92 0xc420150828 gate 1515930425015944464 evaluation fails +2018-01-14 11:47:05.017 UTC [cauthdsl] func1 -> DEBU f93 0xc420150870 gate 1515930425017290864 evaluation starts +2018-01-14 11:47:05.017 UTC [cauthdsl] func2 -> DEBU f94 0xc420150870 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.017 UTC [cauthdsl] func2 -> DEBU f95 0xc420150870 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.017 UTC [msp/identity] newIdentity -> DEBU f96 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.018 UTC [cauthdsl] func2 -> DEBU f97 0xc420150870 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:05.018 UTC [cauthdsl] func2 -> DEBU f98 0xc420150870 principal evaluation fails +2018-01-14 11:47:05.018 UTC [cauthdsl] func1 -> DEBU f99 0xc420150870 gate 1515930425017290864 evaluation fails +2018-01-14 11:47:05.018 UTC [cauthdsl] func1 -> DEBU f9a 0xc420150898 gate 1515930425018498464 evaluation starts +2018-01-14 11:47:05.018 UTC [cauthdsl] func2 -> DEBU f9b 0xc420150898 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.018 UTC [cauthdsl] func2 -> DEBU f9c 0xc420150898 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.018 UTC [msp/identity] newIdentity -> DEBU f9d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.019 UTC [msp] SatisfiesPrincipal -> DEBU f9e Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:05.019 UTC [msp] Validate -> DEBU f9f MSP OrdererMSP validating identity +2018-01-14 11:47:05.019 UTC [cauthdsl] func2 -> DEBU fa0 0xc420150898 principal matched by identity 0 +2018-01-14 11:47:05.019 UTC [msp/identity] Verify -> DEBU fa1 Verify: digest = 00000000 9e 29 3e 06 d2 1b 9b 51 61 f8 37 76 8f 6c ad ed |.)>....Qa.7v.l..| +00000010 e9 70 c8 b3 7c 05 6e 34 4d 53 8c f0 ce 47 e8 b0 |.p..|.n4MS...G..| +2018-01-14 11:47:05.020 UTC [msp/identity] Verify -> DEBU fa2 Verify: sig = 00000000 30 45 02 21 00 ff fe 14 26 00 f2 6b 9c 1b d2 cd |0E.!....&..k....| +00000010 af 09 60 8d 67 8f 79 0c b6 ca 86 f4 4e 60 c3 3e |..`.g.y.....N`.>| +00000020 9e f8 7f e0 7d 02 20 7a 04 c1 f5 12 da fc c9 17 |....}. z........| +00000030 ad ec 0b 82 bd cb 6b 0f 26 3a 0c fc e3 f8 3d e2 |......k.&:....=.| +00000040 9f 5a d7 99 98 7c 74 |.Z...|t| +2018-01-14 11:47:05.020 UTC [cauthdsl] func2 -> DEBU fa3 0xc420150898 principal evaluation succeeds for identity 0 +2018-01-14 11:47:05.020 UTC [cauthdsl] func1 -> DEBU fa4 0xc420150898 gate 1515930425018498464 evaluation succeeds +2018-01-14 11:47:05.020 UTC [orderer/common/sigfilter] Apply -> DEBU fa5 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:05.020 UTC [orderer/common/deliver] Handle -> DEBU fa6 [channel: businesschannel] Received seekInfo (0xc42094dba0) start: > stop: > +2018-01-14 11:47:05.021 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fa7 retrieveBlockByNumber() - blockNum = [2] +2018-01-14 11:47:05.021 UTC [fsblkstorage] newBlockfileStream -> DEBU fa8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +2018-01-14 11:47:05.021 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fa9 Remaining bytes=[33572], Going to peek [8] bytes +2018-01-14 11:47:05.021 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU faa Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +2018-01-14 11:47:05.021 UTC [orderer/common/deliver] Handle -> DEBU fab [channel: businesschannel] Delivering block for (0xc42094dba0) +2018-01-14 11:47:05.022 UTC [orderer/common/deliver] Handle -> DEBU fac [channel: businesschannel] Done delivering for (0xc42094dba0), waiting for new SeekInfo +2018-01-14 11:47:05.022 UTC [orderer/common/deliver] Handle -> DEBU fad Attempting to read seek info message +2018-01-14 11:47:05.033 UTC [orderer/common/deliver] Handle -> WARN fae Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:05.033 UTC [orderer/main] func1 -> DEBU faf Closing Deliver stream +2018-01-14 11:47:05.121 UTC [orderer/main] Deliver -> DEBU fb0 Starting new Deliver handler +2018-01-14 11:47:05.121 UTC [orderer/common/deliver] Handle -> DEBU fb1 Starting new deliver loop +2018-01-14 11:47:05.121 UTC [orderer/common/deliver] Handle -> DEBU fb2 Attempting to read seek info message +2018-01-14 11:47:05.123 UTC [policies] GetPolicy -> DEBU fb3 Returning policy Readers for evaluation +2018-01-14 11:47:05.123 UTC [cauthdsl] func1 -> DEBU fb4 0xc420026080 gate 1515930425123321664 evaluation starts +2018-01-14 11:47:05.123 UTC [cauthdsl] func2 -> DEBU fb5 0xc420026080 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.123 UTC [cauthdsl] func2 -> DEBU fb6 0xc420026080 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.123 UTC [msp/identity] newIdentity -> DEBU fb7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.124 UTC [cauthdsl] func2 -> DEBU fb8 0xc420026080 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:05.124 UTC [cauthdsl] func2 -> DEBU fb9 0xc420026080 principal evaluation fails +2018-01-14 11:47:05.124 UTC [cauthdsl] func1 -> DEBU fba 0xc420026080 gate 1515930425123321664 evaluation fails +2018-01-14 11:47:05.124 UTC [cauthdsl] func1 -> DEBU fbb 0xc420026098 gate 1515930425124440564 evaluation starts +2018-01-14 11:47:05.124 UTC [cauthdsl] func2 -> DEBU fbc 0xc420026098 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.124 UTC [cauthdsl] func2 -> DEBU fbd 0xc420026098 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.125 UTC [msp/identity] newIdentity -> DEBU fbe Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.126 UTC [cauthdsl] func2 -> DEBU fbf 0xc420026098 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:05.126 UTC [cauthdsl] func2 -> DEBU fc0 0xc420026098 principal evaluation fails +2018-01-14 11:47:05.126 UTC [cauthdsl] func1 -> DEBU fc1 0xc420026098 gate 1515930425124440564 evaluation fails +2018-01-14 11:47:05.126 UTC [cauthdsl] func1 -> DEBU fc2 0xc4200260b0 gate 1515930425126845264 evaluation starts +2018-01-14 11:47:05.126 UTC [cauthdsl] func2 -> DEBU fc3 0xc4200260b0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.126 UTC [cauthdsl] func2 -> DEBU fc4 0xc4200260b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.127 UTC [msp/identity] newIdentity -> DEBU fc5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.127 UTC [msp] SatisfiesPrincipal -> DEBU fc6 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:05.127 UTC [msp] Validate -> DEBU fc7 MSP OrdererMSP validating identity +2018-01-14 11:47:05.128 UTC [cauthdsl] func2 -> DEBU fc8 0xc4200260b0 principal matched by identity 0 +2018-01-14 11:47:05.128 UTC [msp/identity] Verify -> DEBU fc9 Verify: digest = 00000000 03 5d 41 6e d4 85 16 54 fb 95 8f 7e 18 1a a6 82 |.]An...T...~....| +00000010 20 6f a5 b7 cb f5 ec 2b be d9 e5 91 10 3d f1 8b | o.....+.....=..| +2018-01-14 11:47:05.128 UTC [msp/identity] Verify -> DEBU fca Verify: sig = 00000000 30 45 02 21 00 c5 a9 a5 28 f8 7b 63 45 16 59 3f |0E.!....(.{cE.Y?| +00000010 33 86 05 30 05 61 84 ce 56 28 89 36 f6 f1 48 2b |3..0.a..V(.6..H+| +00000020 b1 15 9e dc a2 02 20 5c 44 75 f6 51 cd 9f f8 75 |...... \Du.Q...u| +00000030 7f 5d d9 9c 1b ad 40 50 f2 71 b7 aa ef 1b 1d 99 |.]....@P.q......| +00000040 23 40 d3 a6 0d c6 fe |#@.....| +2018-01-14 11:47:05.129 UTC [cauthdsl] func2 -> DEBU fcb 0xc4200260b0 principal evaluation succeeds for identity 0 +2018-01-14 11:47:05.129 UTC [cauthdsl] func1 -> DEBU fcc 0xc4200260b0 gate 1515930425126845264 evaluation succeeds +2018-01-14 11:47:05.129 UTC [orderer/common/sigfilter] Apply -> DEBU fcd Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:05.129 UTC [orderer/common/deliver] Handle -> DEBU fce [channel: businesschannel] Received seekInfo (0xc4207ec060) start: > stop: > +2018-01-14 11:47:05.129 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU fcf retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:47:05.129 UTC [fsblkstorage] newBlockfileStream -> DEBU fd0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +2018-01-14 11:47:05.130 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fd1 Remaining bytes=[59238], Going to peek [8] bytes +2018-01-14 11:47:05.130 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU fd2 Returning blockbytes - length=[11931], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:47:05.131 UTC [orderer/common/deliver] Handle -> DEBU fd3 [channel: businesschannel] Delivering block for (0xc4207ec060) +2018-01-14 11:47:05.132 UTC [orderer/common/deliver] Handle -> DEBU fd4 [channel: businesschannel] Done delivering for (0xc4207ec060), waiting for new SeekInfo +2018-01-14 11:47:05.132 UTC [orderer/common/deliver] Handle -> DEBU fd5 Attempting to read seek info message +2018-01-14 11:47:05.136 UTC [orderer/common/deliver] Handle -> WARN fd6 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:05.136 UTC [orderer/main] func1 -> DEBU fd7 Closing Deliver stream +2018-01-14 11:47:05.336 UTC [orderer/main] Deliver -> DEBU fd8 Starting new Deliver handler +2018-01-14 11:47:05.336 UTC [orderer/common/deliver] Handle -> DEBU fd9 Starting new deliver loop +2018-01-14 11:47:05.336 UTC [orderer/common/deliver] Handle -> DEBU fda Attempting to read seek info message +2018-01-14 11:47:05.337 UTC [policies] GetPolicy -> DEBU fdb Returning policy Readers for evaluation +2018-01-14 11:47:05.337 UTC [cauthdsl] func1 -> DEBU fdc 0xc420150a08 gate 1515930425337555964 evaluation starts +2018-01-14 11:47:05.337 UTC [cauthdsl] func2 -> DEBU fdd 0xc420150a08 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.337 UTC [cauthdsl] func2 -> DEBU fde 0xc420150a08 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.338 UTC [msp/identity] newIdentity -> DEBU fdf Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.338 UTC [cauthdsl] func2 -> DEBU fe0 0xc420150a08 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:05.338 UTC [cauthdsl] func2 -> DEBU fe1 0xc420150a08 principal evaluation fails +2018-01-14 11:47:05.338 UTC [cauthdsl] func1 -> DEBU fe2 0xc420150a08 gate 1515930425337555964 evaluation fails +2018-01-14 11:47:05.338 UTC [cauthdsl] func1 -> DEBU fe3 0xc420150a60 gate 1515930425338868664 evaluation starts +2018-01-14 11:47:05.338 UTC [cauthdsl] func2 -> DEBU fe4 0xc420150a60 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.339 UTC [cauthdsl] func2 -> DEBU fe5 0xc420150a60 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.339 UTC [msp/identity] newIdentity -> DEBU fe6 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.340 UTC [cauthdsl] func2 -> DEBU fe7 0xc420150a60 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:05.340 UTC [cauthdsl] func2 -> DEBU fe8 0xc420150a60 principal evaluation fails +2018-01-14 11:47:05.340 UTC [cauthdsl] func1 -> DEBU fe9 0xc420150a60 gate 1515930425338868664 evaluation fails +2018-01-14 11:47:05.340 UTC [cauthdsl] func1 -> DEBU fea 0xc420150a88 gate 1515930425340184564 evaluation starts +2018-01-14 11:47:05.340 UTC [cauthdsl] func2 -> DEBU feb 0xc420150a88 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.340 UTC [cauthdsl] func2 -> DEBU fec 0xc420150a88 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.340 UTC [msp/identity] newIdentity -> DEBU fed Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.341 UTC [msp] SatisfiesPrincipal -> DEBU fee Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:05.341 UTC [msp] Validate -> DEBU fef MSP OrdererMSP validating identity +2018-01-14 11:47:05.341 UTC [cauthdsl] func2 -> DEBU ff0 0xc420150a88 principal matched by identity 0 +2018-01-14 11:47:05.341 UTC [msp/identity] Verify -> DEBU ff1 Verify: digest = 00000000 7f 3b da ca 3e 68 c0 78 b0 32 8c 79 33 56 84 cb |.;..>h.x.2.y3V..| +00000010 f8 05 50 2a fa 23 3a 74 c8 80 8b 57 41 8f bf aa |..P*.#:t...WA...| +2018-01-14 11:47:05.341 UTC [msp/identity] Verify -> DEBU ff2 Verify: sig = 00000000 30 45 02 21 00 99 80 74 f4 00 cd 33 5c 0d 8b 25 |0E.!...t...3\..%| +00000010 97 32 4e 51 22 0f 5e a9 57 7d 5f e7 6d 92 d6 7f |.2NQ".^.W}_.m...| +00000020 52 d9 78 67 6b 02 20 2b 77 17 0d a9 70 6f 0c 52 |R.xgk. +w...po.R| +00000030 06 ea 1f bf 16 b6 f0 00 ad 40 30 7b 85 cd 78 52 |.........@0{..xR| +00000040 cf 67 d0 91 22 72 6b |.g.."rk| +2018-01-14 11:47:05.342 UTC [cauthdsl] func2 -> DEBU ff3 0xc420150a88 principal evaluation succeeds for identity 0 +2018-01-14 11:47:05.342 UTC [cauthdsl] func1 -> DEBU ff4 0xc420150a88 gate 1515930425340184564 evaluation succeeds +2018-01-14 11:47:05.342 UTC [orderer/common/sigfilter] Apply -> DEBU ff5 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:05.342 UTC [orderer/common/deliver] Handle -> DEBU ff6 [channel: businesschannel] Received seekInfo (0xc420a46aa0) start: > stop: > +2018-01-14 11:47:05.342 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU ff7 retrieveBlockByNumber() - blockNum = [1] +2018-01-14 11:47:05.343 UTC [fsblkstorage] newBlockfileStream -> DEBU ff8 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[11933] +2018-01-14 11:47:05.343 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ff9 Remaining bytes=[47305], Going to peek [8] bytes +2018-01-14 11:47:05.343 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU ffa Returning blockbytes - length=[13731], placementInfo={fileNum=[0], startOffset=[11933], bytesOffset=[11935]} +2018-01-14 11:47:05.343 UTC [orderer/common/deliver] Handle -> DEBU ffb [channel: businesschannel] Delivering block for (0xc420a46aa0) +2018-01-14 11:47:05.344 UTC [orderer/common/deliver] Handle -> DEBU ffc [channel: businesschannel] Done delivering for (0xc420a46aa0), waiting for new SeekInfo +2018-01-14 11:47:05.344 UTC [orderer/common/deliver] Handle -> DEBU ffd Attempting to read seek info message +2018-01-14 11:47:05.350 UTC [orderer/common/deliver] Handle -> WARN ffe Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:05.350 UTC [orderer/main] func1 -> DEBU fff Closing Deliver stream +2018-01-14 11:47:05.507 UTC [orderer/main] Deliver -> DEBU 1000 Starting new Deliver handler +2018-01-14 11:47:05.507 UTC [orderer/common/deliver] Handle -> DEBU 1001 Starting new deliver loop +2018-01-14 11:47:05.507 UTC [orderer/common/deliver] Handle -> DEBU 1002 Attempting to read seek info message +2018-01-14 11:47:05.510 UTC [policies] GetPolicy -> DEBU 1003 Returning policy Readers for evaluation +2018-01-14 11:47:05.510 UTC [cauthdsl] func1 -> DEBU 1004 0xc420026108 gate 1515930425510328364 evaluation starts +2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 1005 0xc420026108 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 1006 0xc420026108 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.510 UTC [msp/identity] newIdentity -> DEBU 1007 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 1008 0xc420026108 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 1009 0xc420026108 principal evaluation fails +2018-01-14 11:47:05.510 UTC [cauthdsl] func1 -> DEBU 100a 0xc420026108 gate 1515930425510328364 evaluation fails +2018-01-14 11:47:05.510 UTC [cauthdsl] func1 -> DEBU 100b 0xc420026118 gate 1515930425510979664 evaluation starts +2018-01-14 11:47:05.510 UTC [cauthdsl] func2 -> DEBU 100c 0xc420026118 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 100d 0xc420026118 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.511 UTC [msp/identity] newIdentity -> DEBU 100e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 100f 0xc420026118 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 1010 0xc420026118 principal evaluation fails +2018-01-14 11:47:05.511 UTC [cauthdsl] func1 -> DEBU 1011 0xc420026118 gate 1515930425510979664 evaluation fails +2018-01-14 11:47:05.511 UTC [cauthdsl] func1 -> DEBU 1012 0xc420026128 gate 1515930425511773964 evaluation starts +2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 1013 0xc420026128 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.511 UTC [cauthdsl] func2 -> DEBU 1014 0xc420026128 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.512 UTC [msp/identity] newIdentity -> DEBU 1015 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.516 UTC [msp] SatisfiesPrincipal -> DEBU 1016 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:05.516 UTC [msp] Validate -> DEBU 1017 MSP OrdererMSP validating identity +2018-01-14 11:47:05.516 UTC [cauthdsl] func2 -> DEBU 1018 0xc420026128 principal matched by identity 0 +2018-01-14 11:47:05.516 UTC [msp/identity] Verify -> DEBU 1019 Verify: digest = 00000000 82 a2 42 b9 b2 9b 9c 2a ca 62 04 1c 5b d1 e5 11 |..B....*.b..[...| +00000010 92 4c 71 7b 9d 9b 08 5d ae db 38 33 31 b1 f1 8c |.Lq{...]..831...| +2018-01-14 11:47:05.516 UTC [msp/identity] Verify -> DEBU 101a Verify: sig = 00000000 30 45 02 21 00 e0 ba 72 22 07 52 72 be 8c fd 56 |0E.!...r".Rr...V| +00000010 a4 6a 3a 18 8c 30 11 15 74 df 9f f4 51 a5 ea ab |.j:..0..t...Q...| +00000020 24 00 a2 77 f7 02 20 50 7e d2 49 54 7d c6 81 bf |$..w.. P~.IT}...| +00000030 68 d0 d1 e3 95 61 fe 21 89 e2 a5 28 2c 75 c8 81 |h....a.!...(,u..| +00000040 29 c4 09 84 df b1 fb |)......| +2018-01-14 11:47:05.518 UTC [cauthdsl] func2 -> DEBU 101b 0xc420026128 principal evaluation succeeds for identity 0 +2018-01-14 11:47:05.518 UTC [cauthdsl] func1 -> DEBU 101c 0xc420026128 gate 1515930425511773964 evaluation succeeds +2018-01-14 11:47:05.518 UTC [orderer/common/sigfilter] Apply -> DEBU 101d Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:05.518 UTC [orderer/common/deliver] Handle -> DEBU 101e [channel: businesschannel] Received seekInfo (0xc420398560) start: > stop: > +2018-01-14 11:47:05.518 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 101f retrieveBlockByNumber() - blockNum = [2] +2018-01-14 11:47:05.518 UTC [fsblkstorage] newBlockfileStream -> DEBU 1020 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[25666] +2018-01-14 11:47:05.519 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1021 Remaining bytes=[33572], Going to peek [8] bytes +2018-01-14 11:47:05.519 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1022 Returning blockbytes - length=[13790], placementInfo={fileNum=[0], startOffset=[25666], bytesOffset=[25668]} +2018-01-14 11:47:05.519 UTC [orderer/common/deliver] Handle -> DEBU 1023 [channel: businesschannel] Delivering block for (0xc420398560) +2018-01-14 11:47:05.519 UTC [orderer/common/deliver] Handle -> DEBU 1024 [channel: businesschannel] Done delivering for (0xc420398560), waiting for new SeekInfo +2018-01-14 11:47:05.519 UTC [orderer/common/deliver] Handle -> DEBU 1025 Attempting to read seek info message +2018-01-14 11:47:05.529 UTC [orderer/common/deliver] Handle -> WARN 1026 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:05.529 UTC [orderer/main] func1 -> DEBU 1027 Closing Deliver stream +2018-01-14 11:47:05.682 UTC [orderer/main] Deliver -> DEBU 1028 Starting new Deliver handler +2018-01-14 11:47:05.682 UTC [orderer/common/deliver] Handle -> DEBU 1029 Starting new deliver loop +2018-01-14 11:47:05.682 UTC [orderer/common/deliver] Handle -> DEBU 102a Attempting to read seek info message +2018-01-14 11:47:05.683 UTC [policies] GetPolicy -> DEBU 102b Returning policy Readers for evaluation +2018-01-14 11:47:05.683 UTC [cauthdsl] func1 -> DEBU 102c 0xc420026178 gate 1515930425683616764 evaluation starts +2018-01-14 11:47:05.683 UTC [cauthdsl] func2 -> DEBU 102d 0xc420026178 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.683 UTC [cauthdsl] func2 -> DEBU 102e 0xc420026178 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.684 UTC [msp/identity] newIdentity -> DEBU 102f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.694 UTC [cauthdsl] func2 -> DEBU 1030 0xc420026178 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:05.694 UTC [cauthdsl] func2 -> DEBU 1031 0xc420026178 principal evaluation fails +2018-01-14 11:47:05.694 UTC [cauthdsl] func1 -> DEBU 1032 0xc420026178 gate 1515930425683616764 evaluation fails +2018-01-14 11:47:05.694 UTC [cauthdsl] func1 -> DEBU 1033 0xc420026188 gate 1515930425694993264 evaluation starts +2018-01-14 11:47:05.695 UTC [cauthdsl] func2 -> DEBU 1034 0xc420026188 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.695 UTC [cauthdsl] func2 -> DEBU 1035 0xc420026188 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.695 UTC [msp/identity] newIdentity -> DEBU 1036 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.695 UTC [cauthdsl] func2 -> DEBU 1037 0xc420026188 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:05.695 UTC [cauthdsl] func2 -> DEBU 1038 0xc420026188 principal evaluation fails +2018-01-14 11:47:05.695 UTC [cauthdsl] func1 -> DEBU 1039 0xc420026188 gate 1515930425694993264 evaluation fails +2018-01-14 11:47:05.695 UTC [cauthdsl] func1 -> DEBU 103a 0xc4200261a0 gate 1515930425695891764 evaluation starts +2018-01-14 11:47:05.696 UTC [cauthdsl] func2 -> DEBU 103b 0xc4200261a0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.696 UTC [cauthdsl] func2 -> DEBU 103c 0xc4200261a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.696 UTC [msp/identity] newIdentity -> DEBU 103d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.697 UTC [msp] SatisfiesPrincipal -> DEBU 103e Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:05.698 UTC [msp] Validate -> DEBU 103f MSP OrdererMSP validating identity +2018-01-14 11:47:05.698 UTC [cauthdsl] func2 -> DEBU 1040 0xc4200261a0 principal matched by identity 0 +2018-01-14 11:47:05.699 UTC [msp/identity] Verify -> DEBU 1041 Verify: digest = 00000000 2a 70 fb 9c f3 77 df da ab 29 1f bf 53 4f 97 0f |*p...w...)..SO..| +00000010 35 be 5e 01 0f 43 f4 96 57 1c a5 6d ce 23 f6 fb |5.^..C..W..m.#..| +2018-01-14 11:47:05.699 UTC [msp/identity] Verify -> DEBU 1042 Verify: sig = 00000000 30 45 02 21 00 ca 0e c9 54 de ef 84 b0 fa 71 47 |0E.!....T.....qG| +00000010 7d 5b 93 ab 2f 33 e2 44 ef e2 c2 8c d6 bf d1 1c |}[../3.D........| +00000020 ca 91 b6 72 32 02 20 79 44 36 b9 6f bc 0f fd 62 |...r2. yD6.o...b| +00000030 94 46 3c 23 10 46 75 5d 06 0b 10 ff da e2 d3 40 |.F<#.Fu].......@| +00000040 94 ff 09 a5 bc 4b 85 |.....K.| +2018-01-14 11:47:05.699 UTC [cauthdsl] func2 -> DEBU 1043 0xc4200261a0 principal evaluation succeeds for identity 0 +2018-01-14 11:47:05.699 UTC [cauthdsl] func1 -> DEBU 1044 0xc4200261a0 gate 1515930425695891764 evaluation succeeds +2018-01-14 11:47:05.699 UTC [orderer/common/sigfilter] Apply -> DEBU 1045 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:05.700 UTC [orderer/common/deliver] Handle -> DEBU 1046 [channel: businesschannel] Received seekInfo (0xc4203733e0) start: > stop: > +2018-01-14 11:47:05.700 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1047 retrieveBlockByNumber() - blockNum = [3] +2018-01-14 11:47:05.700 UTC [fsblkstorage] newBlockfileStream -> DEBU 1048 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[39458] +2018-01-14 11:47:05.700 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1049 Remaining bytes=[19780], Going to peek [8] bytes +2018-01-14 11:47:05.700 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 104a Returning blockbytes - length=[5212], placementInfo={fileNum=[0], startOffset=[39458], bytesOffset=[39460]} +2018-01-14 11:47:05.700 UTC [orderer/common/deliver] Handle -> DEBU 104b [channel: businesschannel] Delivering block for (0xc4203733e0) +2018-01-14 11:47:05.701 UTC [orderer/common/deliver] Handle -> DEBU 104c [channel: businesschannel] Done delivering for (0xc4203733e0), waiting for new SeekInfo +2018-01-14 11:47:05.701 UTC [orderer/common/deliver] Handle -> DEBU 104d Attempting to read seek info message +2018-01-14 11:47:05.708 UTC [orderer/common/deliver] Handle -> WARN 104e Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:05.708 UTC [orderer/main] func1 -> DEBU 104f Closing Deliver stream +2018-01-14 11:47:05.874 UTC [orderer/main] Deliver -> DEBU 1050 Starting new Deliver handler +2018-01-14 11:47:05.874 UTC [orderer/common/deliver] Handle -> DEBU 1051 Starting new deliver loop +2018-01-14 11:47:05.874 UTC [orderer/common/deliver] Handle -> DEBU 1052 Attempting to read seek info message +2018-01-14 11:47:05.875 UTC [policies] GetPolicy -> DEBU 1053 Returning policy Readers for evaluation +2018-01-14 11:47:05.875 UTC [cauthdsl] func1 -> DEBU 1054 0xc420150b88 gate 1515930425875673364 evaluation starts +2018-01-14 11:47:05.875 UTC [cauthdsl] func2 -> DEBU 1055 0xc420150b88 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.875 UTC [cauthdsl] func2 -> DEBU 1056 0xc420150b88 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.876 UTC [msp/identity] newIdentity -> DEBU 1057 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.876 UTC [cauthdsl] func2 -> DEBU 1058 0xc420150b88 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:05.876 UTC [cauthdsl] func2 -> DEBU 1059 0xc420150b88 principal evaluation fails +2018-01-14 11:47:05.876 UTC [cauthdsl] func1 -> DEBU 105a 0xc420150b88 gate 1515930425875673364 evaluation fails +2018-01-14 11:47:05.876 UTC [cauthdsl] func1 -> DEBU 105b 0xc420150b98 gate 1515930425876664264 evaluation starts +2018-01-14 11:47:05.876 UTC [cauthdsl] func2 -> DEBU 105c 0xc420150b98 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.876 UTC [cauthdsl] func2 -> DEBU 105d 0xc420150b98 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.877 UTC [msp/identity] newIdentity -> DEBU 105e Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.877 UTC [cauthdsl] func2 -> DEBU 105f 0xc420150b98 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:05.877 UTC [cauthdsl] func2 -> DEBU 1060 0xc420150b98 principal evaluation fails +2018-01-14 11:47:05.877 UTC [cauthdsl] func1 -> DEBU 1061 0xc420150b98 gate 1515930425876664264 evaluation fails +2018-01-14 11:47:05.877 UTC [cauthdsl] func1 -> DEBU 1062 0xc420150bb8 gate 1515930425877481864 evaluation starts +2018-01-14 11:47:05.877 UTC [cauthdsl] func2 -> DEBU 1063 0xc420150bb8 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:05.877 UTC [cauthdsl] func2 -> DEBU 1064 0xc420150bb8 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:05.878 UTC [msp/identity] newIdentity -> DEBU 1065 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:05.878 UTC [msp] SatisfiesPrincipal -> DEBU 1066 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:05.878 UTC [msp] Validate -> DEBU 1067 MSP OrdererMSP validating identity +2018-01-14 11:47:05.878 UTC [cauthdsl] func2 -> DEBU 1068 0xc420150bb8 principal matched by identity 0 +2018-01-14 11:47:05.878 UTC [msp/identity] Verify -> DEBU 1069 Verify: digest = 00000000 09 b4 c3 ec 3e ab 07 cb 57 ca 1c bd db 00 04 cb |....>...W.......| +00000010 23 dd ab a1 23 bf 81 ec a8 87 20 aa 12 97 e2 f8 |#...#..... .....| +2018-01-14 11:47:05.878 UTC [msp/identity] Verify -> DEBU 106a Verify: sig = 00000000 30 45 02 21 00 da 00 c5 8c 72 a5 4f 24 71 69 b8 |0E.!.....r.O$qi.| +00000010 47 7f ec e9 62 7f ae 77 64 85 9c 34 11 d1 46 40 |G...b..wd..4..F@| +00000020 49 84 d0 15 da 02 20 3f a4 7a c6 13 3f 5d 60 70 |I..... ?.z..?]`p| +00000030 a2 5e 9e a3 72 19 8f 3c 08 6b 48 4e 3b 2b aa f0 |.^..r..<.kHN;+..| +00000040 8c de 98 c0 e0 42 98 |.....B.| +2018-01-14 11:47:05.879 UTC [cauthdsl] func2 -> DEBU 106b 0xc420150bb8 principal evaluation succeeds for identity 0 +2018-01-14 11:47:05.879 UTC [cauthdsl] func1 -> DEBU 106c 0xc420150bb8 gate 1515930425877481864 evaluation succeeds +2018-01-14 11:47:05.879 UTC [orderer/common/sigfilter] Apply -> DEBU 106d Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:05.879 UTC [orderer/common/deliver] Handle -> DEBU 106e [channel: businesschannel] Received seekInfo (0xc42080f940) start: > stop: > +2018-01-14 11:47:05.879 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 106f retrieveBlockByNumber() - blockNum = [4] +2018-01-14 11:47:05.879 UTC [fsblkstorage] newBlockfileStream -> DEBU 1070 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[44672] +2018-01-14 11:47:05.879 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1071 Remaining bytes=[14566], Going to peek [8] bytes +2018-01-14 11:47:05.879 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1072 Returning blockbytes - length=[5214], placementInfo={fileNum=[0], startOffset=[44672], bytesOffset=[44674]} +2018-01-14 11:47:05.880 UTC [orderer/common/deliver] Handle -> DEBU 1073 [channel: businesschannel] Delivering block for (0xc42080f940) +2018-01-14 11:47:05.880 UTC [orderer/common/deliver] Handle -> DEBU 1074 [channel: businesschannel] Done delivering for (0xc42080f940), waiting for new SeekInfo +2018-01-14 11:47:05.880 UTC [orderer/common/deliver] Handle -> DEBU 1075 Attempting to read seek info message +2018-01-14 11:47:05.884 UTC [orderer/common/deliver] Handle -> WARN 1076 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:05.885 UTC [orderer/main] func1 -> DEBU 1077 Closing Deliver stream +2018-01-14 11:47:06.094 UTC [orderer/main] Deliver -> DEBU 1078 Starting new Deliver handler +2018-01-14 11:47:06.094 UTC [orderer/common/deliver] Handle -> DEBU 1079 Starting new deliver loop +2018-01-14 11:47:06.094 UTC [orderer/common/deliver] Handle -> DEBU 107a Attempting to read seek info message +2018-01-14 11:47:06.094 UTC [policies] GetPolicy -> DEBU 107b Returning policy Readers for evaluation +2018-01-14 11:47:06.095 UTC [cauthdsl] func1 -> DEBU 107c 0xc420150c08 gate 1515930426095003064 evaluation starts +2018-01-14 11:47:06.095 UTC [cauthdsl] func2 -> DEBU 107d 0xc420150c08 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.095 UTC [cauthdsl] func2 -> DEBU 107e 0xc420150c08 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.095 UTC [msp/identity] newIdentity -> DEBU 107f Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.096 UTC [cauthdsl] func2 -> DEBU 1080 0xc420150c08 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:06.096 UTC [cauthdsl] func2 -> DEBU 1081 0xc420150c08 principal evaluation fails +2018-01-14 11:47:06.096 UTC [cauthdsl] func1 -> DEBU 1082 0xc420150c08 gate 1515930426095003064 evaluation fails +2018-01-14 11:47:06.096 UTC [cauthdsl] func1 -> DEBU 1083 0xc420150c18 gate 1515930426096369764 evaluation starts +2018-01-14 11:47:06.096 UTC [cauthdsl] func2 -> DEBU 1084 0xc420150c18 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.096 UTC [cauthdsl] func2 -> DEBU 1085 0xc420150c18 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.096 UTC [msp/identity] newIdentity -> DEBU 1086 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.097 UTC [cauthdsl] func2 -> DEBU 1087 0xc420150c18 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:06.097 UTC [cauthdsl] func2 -> DEBU 1088 0xc420150c18 principal evaluation fails +2018-01-14 11:47:06.097 UTC [cauthdsl] func1 -> DEBU 1089 0xc420150c18 gate 1515930426096369764 evaluation fails +2018-01-14 11:47:06.097 UTC [cauthdsl] func1 -> DEBU 108a 0xc420150c38 gate 1515930426097971964 evaluation starts +2018-01-14 11:47:06.098 UTC [cauthdsl] func2 -> DEBU 108b 0xc420150c38 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.098 UTC [cauthdsl] func2 -> DEBU 108c 0xc420150c38 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.098 UTC [msp/identity] newIdentity -> DEBU 108d Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.099 UTC [msp] SatisfiesPrincipal -> DEBU 108e Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:06.099 UTC [msp] Validate -> DEBU 108f MSP OrdererMSP validating identity +2018-01-14 11:47:06.099 UTC [cauthdsl] func2 -> DEBU 1090 0xc420150c38 principal matched by identity 0 +2018-01-14 11:47:06.099 UTC [msp/identity] Verify -> DEBU 1091 Verify: digest = 00000000 e2 73 0f 2d 4f 8a f7 e6 58 66 3f d0 a1 06 cf d7 |.s.-O...Xf?.....| +00000010 85 71 c1 b1 4e 6c d8 22 ef a4 b8 a3 9a e2 eb 48 |.q..Nl.".......H| +2018-01-14 11:47:06.099 UTC [msp/identity] Verify -> DEBU 1092 Verify: sig = 00000000 30 45 02 21 00 da 43 a0 55 11 b5 ad 69 66 05 7c |0E.!..C.U...if.|| +00000010 37 b6 4e 2f 5a c9 15 d1 1f 43 ee 35 ac 3d 3f 3d |7.N/Z....C.5.=?=| +00000020 5c ee 8e ef 44 02 20 53 74 0c a3 ae e2 2d 28 fa |\...D. St....-(.| +00000030 cf 59 ff 2f 44 c5 3d 8a 29 2e fa 23 05 aa 93 0c |.Y./D.=.)..#....| +00000040 ad 62 9a f1 77 f6 e2 |.b..w..| +2018-01-14 11:47:06.100 UTC [cauthdsl] func2 -> DEBU 1093 0xc420150c38 principal evaluation succeeds for identity 0 +2018-01-14 11:47:06.100 UTC [cauthdsl] func1 -> DEBU 1094 0xc420150c38 gate 1515930426097971964 evaluation succeeds +2018-01-14 11:47:06.100 UTC [orderer/common/sigfilter] Apply -> DEBU 1095 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:06.100 UTC [orderer/common/deliver] Handle -> DEBU 1096 [channel: businesschannel] Received seekInfo (0xc420bd1e80) start: > stop: > +2018-01-14 11:47:06.100 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1097 retrieveBlockByNumber() - blockNum = [5] +2018-01-14 11:47:06.101 UTC [fsblkstorage] newBlockfileStream -> DEBU 1098 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[49888] +2018-01-14 11:47:06.101 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1099 Remaining bytes=[9350], Going to peek [8] bytes +2018-01-14 11:47:06.101 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 109a Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[49888], bytesOffset=[49890]} +2018-01-14 11:47:06.101 UTC [orderer/common/deliver] Handle -> DEBU 109b [channel: businesschannel] Delivering block for (0xc420bd1e80) +2018-01-14 11:47:06.102 UTC [orderer/common/deliver] Handle -> DEBU 109c [channel: businesschannel] Done delivering for (0xc420bd1e80), waiting for new SeekInfo +2018-01-14 11:47:06.103 UTC [orderer/common/deliver] Handle -> DEBU 109d Attempting to read seek info message +2018-01-14 11:47:06.106 UTC [orderer/common/deliver] Handle -> WARN 109e Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:06.107 UTC [orderer/main] func1 -> DEBU 109f Closing Deliver stream +2018-01-14 11:47:06.269 UTC [orderer/main] Deliver -> DEBU 10a0 Starting new Deliver handler +2018-01-14 11:47:06.269 UTC [orderer/common/deliver] Handle -> DEBU 10a1 Starting new deliver loop +2018-01-14 11:47:06.269 UTC [orderer/common/deliver] Handle -> DEBU 10a2 Attempting to read seek info message +2018-01-14 11:47:06.270 UTC [policies] GetPolicy -> DEBU 10a3 Returning policy Readers for evaluation +2018-01-14 11:47:06.270 UTC [cauthdsl] func1 -> DEBU 10a4 0xc420150ca0 gate 1515930426270331564 evaluation starts +2018-01-14 11:47:06.270 UTC [cauthdsl] func2 -> DEBU 10a5 0xc420150ca0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.270 UTC [cauthdsl] func2 -> DEBU 10a6 0xc420150ca0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.270 UTC [msp/identity] newIdentity -> DEBU 10a7 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10a8 0xc420150ca0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10a9 0xc420150ca0 principal evaluation fails +2018-01-14 11:47:06.271 UTC [cauthdsl] func1 -> DEBU 10aa 0xc420150ca0 gate 1515930426270331564 evaluation fails +2018-01-14 11:47:06.271 UTC [cauthdsl] func1 -> DEBU 10ab 0xc420150cb0 gate 1515930426271113164 evaluation starts +2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10ac 0xc420150cb0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10ad 0xc420150cb0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.271 UTC [msp/identity] newIdentity -> DEBU 10ae Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10af 0xc420150cb0 identity 0 does not satisfy principal: The identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10b0 0xc420150cb0 principal evaluation fails +2018-01-14 11:47:06.271 UTC [cauthdsl] func1 -> DEBU 10b1 0xc420150cb0 gate 1515930426271113164 evaluation fails +2018-01-14 11:47:06.271 UTC [cauthdsl] func1 -> DEBU 10b2 0xc420150cc0 gate 1515930426271865364 evaluation starts +2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10b3 0xc420150cc0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.271 UTC [cauthdsl] func2 -> DEBU 10b4 0xc420150cc0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.272 UTC [msp/identity] newIdentity -> DEBU 10b5 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.272 UTC [msp] SatisfiesPrincipal -> DEBU 10b6 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:06.272 UTC [msp] Validate -> DEBU 10b7 MSP OrdererMSP validating identity +2018-01-14 11:47:06.272 UTC [cauthdsl] func2 -> DEBU 10b8 0xc420150cc0 principal matched by identity 0 +2018-01-14 11:47:06.272 UTC [msp/identity] Verify -> DEBU 10b9 Verify: digest = 00000000 2c 54 d2 54 45 30 59 b7 b3 8a 97 2f 96 6f 7f 40 |,T.TE0Y..../.o.@| +00000010 f1 86 b3 13 d5 9c a3 15 2a ef 72 07 bc cc 20 aa |........*.r... .| +2018-01-14 11:47:06.272 UTC [msp/identity] Verify -> DEBU 10ba Verify: sig = 00000000 30 44 02 20 56 0b 5e bc 9a 20 89 cd d9 71 d4 c3 |0D. V.^.. ...q..| +00000010 57 fa ca 1a 5c 81 d8 79 31 3e 97 8c ba fd 62 e5 |W...\..y1>....b.| +00000020 43 fe 85 a8 02 20 37 41 76 16 b7 95 8f 02 fd 9e |C.... 7Av.......| +00000030 a1 17 44 46 71 72 63 f5 99 f0 fb d9 8e c1 2e a1 |..DFqrc.........| +00000040 42 d0 84 98 48 a2 |B...H.| +2018-01-14 11:47:06.273 UTC [cauthdsl] func2 -> DEBU 10bb 0xc420150cc0 principal evaluation succeeds for identity 0 +2018-01-14 11:47:06.273 UTC [cauthdsl] func1 -> DEBU 10bc 0xc420150cc0 gate 1515930426271865364 evaluation succeeds +2018-01-14 11:47:06.273 UTC [orderer/common/sigfilter] Apply -> DEBU 10bd Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420b57900 1 [0xc4201509a0 0xc420150a48]}) %!s(*policies.implicitMetaPolicy=&{0xc420b42780 1 [0xc420150b18]})]} +2018-01-14 11:47:06.273 UTC [orderer/common/deliver] Handle -> DEBU 10be [channel: businesschannel] Received seekInfo (0xc42081db80) start: > stop: > +2018-01-14 11:47:06.273 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10bf retrieveBlockByNumber() - blockNum = [6] +2018-01-14 11:47:06.273 UTC [fsblkstorage] newBlockfileStream -> DEBU 10c0 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[54563] +2018-01-14 11:47:06.273 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c1 Remaining bytes=[4675], Going to peek [8] bytes +2018-01-14 11:47:06.273 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10c2 Returning blockbytes - length=[4673], placementInfo={fileNum=[0], startOffset=[54563], bytesOffset=[54565]} +2018-01-14 11:47:06.273 UTC [orderer/common/deliver] Handle -> DEBU 10c3 [channel: businesschannel] Delivering block for (0xc42081db80) +2018-01-14 11:47:06.274 UTC [orderer/common/deliver] Handle -> DEBU 10c4 [channel: businesschannel] Done delivering for (0xc42081db80), waiting for new SeekInfo +2018-01-14 11:47:06.274 UTC [orderer/common/deliver] Handle -> DEBU 10c5 Attempting to read seek info message +2018-01-14 11:47:06.278 UTC [orderer/common/deliver] Handle -> WARN 10c6 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:06.278 UTC [orderer/main] func1 -> DEBU 10c7 Closing Deliver stream +2018-01-14 11:47:06.393 UTC [orderer/main] Deliver -> DEBU 10c8 Starting new Deliver handler +2018-01-14 11:47:06.393 UTC [orderer/common/deliver] Handle -> DEBU 10c9 Starting new deliver loop +2018-01-14 11:47:06.393 UTC [orderer/common/deliver] Handle -> DEBU 10ca Attempting to read seek info message +2018-01-14 11:47:06.395 UTC [policies] GetPolicy -> DEBU 10cb Returning policy Readers for evaluation +2018-01-14 11:47:06.395 UTC [cauthdsl] func1 -> DEBU 10cc 0xc420150d10 gate 1515930426395200564 evaluation starts +2018-01-14 11:47:06.395 UTC [cauthdsl] func2 -> DEBU 10cd 0xc420150d10 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.395 UTC [cauthdsl] func2 -> DEBU 10ce 0xc420150d10 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.395 UTC [msp/identity] newIdentity -> DEBU 10cf Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.396 UTC [msp] SatisfiesPrincipal -> DEBU 10d0 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:06.396 UTC [msp] Validate -> DEBU 10d1 MSP OrdererMSP validating identity +2018-01-14 11:47:06.396 UTC [cauthdsl] func2 -> DEBU 10d2 0xc420150d10 principal matched by identity 0 +2018-01-14 11:47:06.396 UTC [msp/identity] Verify -> DEBU 10d3 Verify: digest = 00000000 c9 a1 89 41 27 85 f8 9a 1f 9f 0c cc 3d 86 d6 7b |...A'.......=..{| +00000010 bb cc 46 e3 b7 42 51 5a 10 55 65 ea 8f b0 90 da |..F..BQZ.Ue.....| +2018-01-14 11:47:06.397 UTC [msp/identity] Verify -> DEBU 10d4 Verify: sig = 00000000 30 45 02 21 00 e8 10 a9 3b dd 03 88 b6 bb ab 06 |0E.!....;.......| +00000010 72 1c b9 79 c0 2c 22 be 30 c4 95 81 ae 68 a2 6e |r..y.,".0....h.n| +00000020 0c 70 42 ba c1 02 20 14 e1 47 c5 f9 99 a8 b4 de |.pB... ..G......| +00000030 e3 15 49 c8 2a f2 eb 43 64 a0 05 2d ec 83 7a d7 |..I.*..Cd..-..z.| +00000040 92 e1 dc 06 d7 89 fe |.......| +2018-01-14 11:47:06.397 UTC [cauthdsl] func2 -> DEBU 10d5 0xc420150d10 principal evaluation succeeds for identity 0 +2018-01-14 11:47:06.397 UTC [cauthdsl] func1 -> DEBU 10d6 0xc420150d10 gate 1515930426395200564 evaluation succeeds +2018-01-14 11:47:06.397 UTC [orderer/common/sigfilter] Apply -> DEBU 10d7 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +2018-01-14 11:47:06.397 UTC [orderer/common/deliver] Handle -> DEBU 10d8 [channel: testchainid] Received seekInfo (0xc4201da340) start: > stop: > +2018-01-14 11:47:06.397 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10d9 retrieveBlockByNumber() - blockNum = [1] +2018-01-14 11:47:06.397 UTC [fsblkstorage] newBlockfileStream -> DEBU 10da newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +2018-01-14 11:47:06.397 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10db Remaining bytes=[14606], Going to peek [8] bytes +2018-01-14 11:47:06.398 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10dc Returning blockbytes - length=[14604], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +2018-01-14 11:47:06.398 UTC [orderer/common/deliver] Handle -> DEBU 10dd [channel: testchainid] Delivering block for (0xc4201da340) +2018-01-14 11:47:06.399 UTC [orderer/common/deliver] Handle -> DEBU 10de [channel: testchainid] Done delivering for (0xc4201da340), waiting for new SeekInfo +2018-01-14 11:47:06.399 UTC [orderer/common/deliver] Handle -> DEBU 10df Attempting to read seek info message +2018-01-14 11:47:06.401 UTC [orderer/common/deliver] Handle -> WARN 10e0 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:06.401 UTC [orderer/main] func1 -> DEBU 10e1 Closing Deliver stream +2018-01-14 11:47:06.540 UTC [orderer/main] Deliver -> DEBU 10e2 Starting new Deliver handler +2018-01-14 11:47:06.540 UTC [orderer/common/deliver] Handle -> DEBU 10e3 Starting new deliver loop +2018-01-14 11:47:06.541 UTC [orderer/common/deliver] Handle -> DEBU 10e4 Attempting to read seek info message +2018-01-14 11:47:06.542 UTC [policies] GetPolicy -> DEBU 10e5 Returning policy Readers for evaluation +2018-01-14 11:47:06.542 UTC [cauthdsl] func1 -> DEBU 10e6 0xc420026218 gate 1515930426542374364 evaluation starts +2018-01-14 11:47:06.542 UTC [cauthdsl] func2 -> DEBU 10e7 0xc420026218 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.542 UTC [cauthdsl] func2 -> DEBU 10e8 0xc420026218 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.542 UTC [msp/identity] newIdentity -> DEBU 10e9 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.543 UTC [msp] SatisfiesPrincipal -> DEBU 10ea Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:06.543 UTC [msp] Validate -> DEBU 10eb MSP OrdererMSP validating identity +2018-01-14 11:47:06.544 UTC [cauthdsl] func2 -> DEBU 10ec 0xc420026218 principal matched by identity 0 +2018-01-14 11:47:06.544 UTC [msp/identity] Verify -> DEBU 10ed Verify: digest = 00000000 c3 bf 91 b9 8c cd db ad 75 9a d4 e4 96 8c 31 c2 |........u.....1.| +00000010 c5 0a c8 f1 b0 ab 67 bb b8 c4 7a 8c 91 9b da 45 |......g...z....E| +2018-01-14 11:47:06.544 UTC [msp/identity] Verify -> DEBU 10ee Verify: sig = 00000000 30 45 02 21 00 c1 8b cb 93 77 93 c7 ee 7f 55 8b |0E.!.....w....U.| +00000010 64 3b 91 96 ce b7 d8 0d 73 e1 be 02 1b 07 97 df |d;......s.......| +00000020 bc 45 dd e3 a9 02 20 37 c4 51 60 0b 76 32 dc 4c |.E.... 7.Q`.v2.L| +00000030 21 0b c1 84 7b 56 66 d6 b6 12 78 1a 7a 3e 3e 75 |!...{Vf...x.z>>u| +00000040 44 30 29 2d 33 fa 75 |D0)-3.u| +2018-01-14 11:47:06.544 UTC [cauthdsl] func2 -> DEBU 10ef 0xc420026218 principal evaluation succeeds for identity 0 +2018-01-14 11:47:06.544 UTC [cauthdsl] func1 -> DEBU 10f0 0xc420026218 gate 1515930426542374364 evaluation succeeds +2018-01-14 11:47:06.544 UTC [orderer/common/sigfilter] Apply -> DEBU 10f1 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +2018-01-14 11:47:06.544 UTC [orderer/common/deliver] Handle -> DEBU 10f2 [channel: testchainid] Received seekInfo (0xc4201dd160) start: > stop: > +2018-01-14 11:47:06.545 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 10f3 retrieveBlockByNumber() - blockNum = [1] +2018-01-14 11:47:06.545 UTC [fsblkstorage] newBlockfileStream -> DEBU 10f4 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +2018-01-14 11:47:06.545 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f5 Remaining bytes=[14606], Going to peek [8] bytes +2018-01-14 11:47:06.545 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 10f6 Returning blockbytes - length=[14604], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +2018-01-14 11:47:06.545 UTC [orderer/common/deliver] Handle -> DEBU 10f7 [channel: testchainid] Delivering block for (0xc4201dd160) +2018-01-14 11:47:06.546 UTC [orderer/common/deliver] Handle -> DEBU 10f8 [channel: testchainid] Done delivering for (0xc4201dd160), waiting for new SeekInfo +2018-01-14 11:47:06.546 UTC [orderer/common/deliver] Handle -> DEBU 10f9 Attempting to read seek info message +2018-01-14 11:47:06.547 UTC [policies] GetPolicy -> DEBU 10fa Returning policy Readers for evaluation +2018-01-14 11:47:06.547 UTC [cauthdsl] func1 -> DEBU 10fb 0xc420026258 gate 1515930426547347864 evaluation starts +2018-01-14 11:47:06.547 UTC [cauthdsl] func2 -> DEBU 10fc 0xc420026258 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.547 UTC [cauthdsl] func2 -> DEBU 10fd 0xc420026258 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.548 UTC [msp/identity] newIdentity -> DEBU 10fe Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.548 UTC [msp] SatisfiesPrincipal -> DEBU 10ff Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:06.548 UTC [msp] Validate -> DEBU 1100 MSP OrdererMSP validating identity +2018-01-14 11:47:06.549 UTC [cauthdsl] func2 -> DEBU 1101 0xc420026258 principal matched by identity 0 +2018-01-14 11:47:06.549 UTC [msp/identity] Verify -> DEBU 1102 Verify: digest = 00000000 2e eb d4 87 6f a4 fa 0a 53 ca 3c 45 dc 0d ce 15 |....o...S. DEBU 1103 Verify: sig = 00000000 30 45 02 21 00 f5 be 6d 92 1c 0d d0 8f c8 0e 41 |0E.!...m.......A| +00000010 d9 f1 5f a9 24 34 ed 54 24 2e c0 89 dd e7 4a ca |.._.$4.T$.....J.| +00000020 81 19 d1 e0 81 02 20 70 38 55 7e 60 de d8 6f bf |...... p8U~`..o.| +00000030 83 02 66 1b 53 33 77 0a 5f 25 07 08 f9 6c 80 f7 |..f.S3w._%...l..| +00000040 77 8f 24 61 66 ee 4f |w.$af.O| +2018-01-14 11:47:06.549 UTC [cauthdsl] func2 -> DEBU 1104 0xc420026258 principal evaluation succeeds for identity 0 +2018-01-14 11:47:06.549 UTC [cauthdsl] func1 -> DEBU 1105 0xc420026258 gate 1515930426547347864 evaluation succeeds +2018-01-14 11:47:06.549 UTC [orderer/common/sigfilter] Apply -> DEBU 1106 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +2018-01-14 11:47:06.550 UTC [orderer/common/deliver] Handle -> DEBU 1107 [channel: testchainid] Received seekInfo (0xc420042680) start: > stop: > +2018-01-14 11:47:06.550 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1108 retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:47:06.550 UTC [fsblkstorage] newBlockfileStream -> DEBU 1109 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-14 11:47:06.550 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 110a Remaining bytes=[23688], Going to peek [8] bytes +2018-01-14 11:47:06.550 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 110b Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:47:06.550 UTC [orderer/common/deliver] Handle -> DEBU 110c [channel: testchainid] Delivering block for (0xc420042680) +2018-01-14 11:47:06.551 UTC [orderer/common/deliver] Handle -> DEBU 110d [channel: testchainid] Done delivering for (0xc420042680), waiting for new SeekInfo +2018-01-14 11:47:06.551 UTC [orderer/common/deliver] Handle -> DEBU 110e Attempting to read seek info message +2018-01-14 11:47:06.555 UTC [orderer/common/deliver] Handle -> WARN 110f Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:06.556 UTC [orderer/main] func1 -> DEBU 1110 Closing Deliver stream +2018-01-14 11:47:06.675 UTC [orderer/main] Deliver -> DEBU 1111 Starting new Deliver handler +2018-01-14 11:47:06.675 UTC [orderer/common/deliver] Handle -> DEBU 1112 Starting new deliver loop +2018-01-14 11:47:06.675 UTC [orderer/common/deliver] Handle -> DEBU 1113 Attempting to read seek info message +2018-01-14 11:47:06.676 UTC [policies] GetPolicy -> DEBU 1114 Returning policy Readers for evaluation +2018-01-14 11:47:06.676 UTC [cauthdsl] func1 -> DEBU 1115 0xc4200262a0 gate 1515930426676661864 evaluation starts +2018-01-14 11:47:06.676 UTC [cauthdsl] func2 -> DEBU 1116 0xc4200262a0 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.676 UTC [cauthdsl] func2 -> DEBU 1117 0xc4200262a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.677 UTC [msp/identity] newIdentity -> DEBU 1118 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.677 UTC [msp] SatisfiesPrincipal -> DEBU 1119 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:06.677 UTC [msp] Validate -> DEBU 111a MSP OrdererMSP validating identity +2018-01-14 11:47:06.678 UTC [cauthdsl] func2 -> DEBU 111b 0xc4200262a0 principal matched by identity 0 +2018-01-14 11:47:06.678 UTC [msp/identity] Verify -> DEBU 111c Verify: digest = 00000000 28 fc 06 6d dd 6f 90 ae 5a 80 a7 7c de f4 38 36 |(..m.o..Z..|..86| +00000010 5c b1 fa ba 79 d9 4d 86 e0 11 2a 42 81 89 3c 7e |\...y.M...*B..<~| +2018-01-14 11:47:06.678 UTC [msp/identity] Verify -> DEBU 111d Verify: sig = 00000000 30 45 02 21 00 e9 ab 24 7c f5 27 24 72 10 27 d1 |0E.!...$|.'$r.'.| +00000010 eb 44 72 3c 8c fe bf 58 ea e5 3a 4f 02 8a d7 84 |.Dr<...X..:O....| +00000020 c2 a5 2e 3a e4 02 20 44 a5 e8 d5 42 1a 0a 9b ff |...:.. D...B....| +00000030 bd 8c 8e c4 ee 37 95 0b b4 00 da 06 f7 cf 39 0e |.....7........9.| +00000040 99 05 b4 57 80 de f9 |...W...| +2018-01-14 11:47:06.678 UTC [cauthdsl] func2 -> DEBU 111e 0xc4200262a0 principal evaluation succeeds for identity 0 +2018-01-14 11:47:06.678 UTC [cauthdsl] func1 -> DEBU 111f 0xc4200262a0 gate 1515930426676661864 evaluation succeeds +2018-01-14 11:47:06.678 UTC [orderer/common/sigfilter] Apply -> DEBU 1120 Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +2018-01-14 11:47:06.678 UTC [orderer/common/deliver] Handle -> DEBU 1121 [channel: testchainid] Received seekInfo (0xc4202e5920) start: > stop: > +2018-01-14 11:47:06.678 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 1122 retrieveBlockByNumber() - blockNum = [0] +2018-01-14 11:47:06.678 UTC [fsblkstorage] newBlockfileStream -> DEBU 1123 newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +2018-01-14 11:47:06.679 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1124 Remaining bytes=[23688], Going to peek [8] bytes +2018-01-14 11:47:06.679 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 1125 Returning blockbytes - length=[9080], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +2018-01-14 11:47:06.679 UTC [orderer/common/deliver] Handle -> DEBU 1126 [channel: testchainid] Delivering block for (0xc4202e5920) +2018-01-14 11:47:06.679 UTC [orderer/common/deliver] Handle -> DEBU 1127 [channel: testchainid] Done delivering for (0xc4202e5920), waiting for new SeekInfo +2018-01-14 11:47:06.679 UTC [orderer/common/deliver] Handle -> DEBU 1128 Attempting to read seek info message +2018-01-14 11:47:06.683 UTC [orderer/common/deliver] Handle -> WARN 1129 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:06.683 UTC [orderer/main] func1 -> DEBU 112a Closing Deliver stream +2018-01-14 11:47:06.880 UTC [orderer/main] Deliver -> DEBU 112b Starting new Deliver handler +2018-01-14 11:47:06.880 UTC [orderer/common/deliver] Handle -> DEBU 112c Starting new deliver loop +2018-01-14 11:47:06.880 UTC [orderer/common/deliver] Handle -> DEBU 112d Attempting to read seek info message +2018-01-14 11:47:06.881 UTC [policies] GetPolicy -> DEBU 112e Returning policy Readers for evaluation +2018-01-14 11:47:06.881 UTC [cauthdsl] func1 -> DEBU 112f 0xc420150d70 gate 1515930426881595664 evaluation starts +2018-01-14 11:47:06.881 UTC [cauthdsl] func2 -> DEBU 1130 0xc420150d70 signed by 0 principal evaluation starts (used [false]) +2018-01-14 11:47:06.882 UTC [cauthdsl] func2 -> DEBU 1131 0xc420150d70 processing identity 0 with bytes of 0a0a4f7264657265724d535012e7052d2d2d2d2d424547494e202d2d2d2d2d0a4d49494343544343416243674177494241674951434f6437734134654d6e78663374324a4c5951664444414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d4445774d7a457a4d446b314e6c6f58445449344d4445774d54457a4d446b314e6c6f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a304441516344516741457448556a766f616f32537035714c6a4c42442b586358664b39387a662b56705866365435585470773944317a54494d72665441580a795765334f3677536d2b50576c67507151777a6b59656b3669303879424d354e424b4e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f41674752386d6f54572f715371486f74496543496f4e764d567a323851706a5562320a545332767453764c6a616f77436759494b6f5a497a6a3045417749445277417752414967577a6272626f6c5464325843466254672b44664547365332386e73680a456a476e477741547268497753696f4349417a585558646c74716a2b6343796941466c424b634a556863302b77485674514e7451725073584d5363300a2d2d2d2d2d454e44202d2d2d2d2d0a +2018-01-14 11:47:06.883 UTC [msp/identity] newIdentity -> DEBU 1132 Creating identity instance for ID -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQCOd7sA4eMnxf3t2JLYQfDDAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEwMzEzMDk1NloXDTI4MDEwMTEzMDk1NlowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEtHUjvoao2Sp5qLjLBD+XcXfK98zf+VpXf6T5XTpw9D1zTIMrfTAX +yWe3O6wSm+PWlgPqQwzkYek6i08yBM5NBKNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgGR8moTW/qSqHotIeCIoNvMVz28QpjUb2 +TS2vtSvLjaowCgYIKoZIzj0EAwIDRwAwRAIgWzbrbolTd2XCFbTg+DfEG6S28nsh +EjGnGwATrhIwSioCIAzXUXdltqj+cCyiAFlBKcJUhc0+wHVtQNtQrPsXMSc0 +-----END CERTIFICATE----- +2018-01-14 11:47:06.883 UTC [msp] SatisfiesPrincipal -> DEBU 1133 Checking if identity satisfies MEMBER role for OrdererMSP +2018-01-14 11:47:06.883 UTC [msp] Validate -> DEBU 1134 MSP OrdererMSP validating identity +2018-01-14 11:47:06.883 UTC [cauthdsl] func2 -> DEBU 1135 0xc420150d70 principal matched by identity 0 +2018-01-14 11:47:06.884 UTC [msp/identity] Verify -> DEBU 1136 Verify: digest = 00000000 09 25 19 ac 6f 93 7e a5 2f dc f2 0b 77 59 8e a0 |.%..o.~./...wY..| +00000010 de a2 68 bf a4 24 f1 ad 7c ce 42 5b a1 ae 95 3d |..h..$..|.B[...=| +2018-01-14 11:47:06.884 UTC [msp/identity] Verify -> DEBU 1137 Verify: sig = 00000000 30 44 02 20 53 81 eb bd 1b 37 67 b9 52 e4 1f f7 |0D. S....7g.R...| +00000010 9d 0d 1a 00 5a 43 3a 6e fb 7a 6f 0b 19 b2 37 93 |....ZC:n.zo...7.| +00000020 58 1f ed 3b 02 20 3f 62 3b 26 6a 1e 0f 83 a2 61 |X..;. ?b;&j....a| +00000030 7d 08 af 53 e7 b1 c8 37 65 ef 61 ff e5 fb 06 5f |}..S...7e.a...._| +00000040 5e c1 fc 3b be 72 |^..;.r| +2018-01-14 11:47:06.884 UTC [cauthdsl] func2 -> DEBU 1138 0xc420150d70 principal evaluation succeeds for identity 0 +2018-01-14 11:47:06.884 UTC [cauthdsl] func1 -> DEBU 1139 0xc420150d70 gate 1515930426881595664 evaluation succeeds +2018-01-14 11:47:06.884 UTC [orderer/common/sigfilter] Apply -> DEBU 113a Forwarding validly signed message for policy &{%!s(*common.ImplicitMetaPolicy=&{Readers 0}) %!s(int=1) [%!s(*policies.implicitMetaPolicy=&{0xc420380b80 1 [0xc420150620]}) Readers]} +2018-01-14 11:47:06.885 UTC [orderer/common/deliver] Handle -> DEBU 113b [channel: testchainid] Received seekInfo (0xc420a1dbe0) start: > stop: > +2018-01-14 11:47:06.885 UTC [fsblkstorage] retrieveBlockByNumber -> DEBU 113c retrieveBlockByNumber() - blockNum = [1] +2018-01-14 11:47:06.885 UTC [fsblkstorage] newBlockfileStream -> DEBU 113d newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9082] +2018-01-14 11:47:06.885 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 113e Remaining bytes=[14606], Going to peek [8] bytes +2018-01-14 11:47:06.885 UTC [fsblkstorage] nextBlockBytesAndPlacementInfo -> DEBU 113f Returning blockbytes - length=[14604], placementInfo={fileNum=[0], startOffset=[9082], bytesOffset=[9084]} +2018-01-14 11:47:06.886 UTC [orderer/common/deliver] Handle -> DEBU 1140 [channel: testchainid] Delivering block for (0xc420a1dbe0) +2018-01-14 11:47:06.889 UTC [orderer/common/deliver] Handle -> DEBU 1141 [channel: testchainid] Done delivering for (0xc420a1dbe0), waiting for new SeekInfo +2018-01-14 11:47:06.889 UTC [orderer/common/deliver] Handle -> DEBU 1142 Attempting to read seek info message +2018-01-14 11:47:06.896 UTC [orderer/common/deliver] Handle -> WARN 1143 Error reading from stream: rpc error: code = Canceled desc = context canceled +2018-01-14 11:47:06.896 UTC [orderer/main] func1 -> DEBU 1144 Closing Deliver stream diff --git a/hyperledger_fabric/v1.0.2/solo/logs/dev_peer0.log b/hyperledger_fabric/v1.0.2/solo/logs/dev_peer0.log index 81bee3a3..47c64993 100644 --- a/hyperledger_fabric/v1.0.2/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/v1.0.2/solo/logs/dev_peer0.log @@ -1,4 +1,4 @@ -[001 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +[001 01-14 11:45:30.09 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: Version: 1.0.2 Go version: go1.9 OS/Arch: linux/amd64 @@ -8,52 +8,52 @@ Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -[002 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -[003 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -[004 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -[005 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -[006 01-04 01:50:56.31 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -[007 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -[008 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -[009 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -[00a 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider -[00b 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -[00c 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -[00d 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -[00e 01-04 01:50:56.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -[00f 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb -[010 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] -[011 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist -[012 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -[013 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -[014 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -[015 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -[016 01-04 01:50:56.33 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -[017 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -[018 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -[019 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -[01a 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -[01b 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -[01c 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -[01d 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -[01e 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 -[01f 01-04 01:50:56.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -[020 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -[021 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -[022 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -[023 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -[024 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -[025 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -[026 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered -[027 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered -[028 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -[029 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP -[02a 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -[02b 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[02c 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] -[02d 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[02e 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -[02f 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[002 01-14 11:45:30.09 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +[003 01-14 11:45:30.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +[004 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +[005 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +[006 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +[007 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +[008 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +[009 01-14 11:45:30.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +[00a 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> DEBU Constructing leveldb VersionedDBProvider +[00b 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +[00c 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +[00d 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +[00e 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +[00f 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider -> DEBU constructing HistoryDBProvider dbPath=/var/hyperledger/production/ledgersData/historyLeveldb +[010 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +[011 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +[012 01-14 11:45:30.11 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +[013 01-14 11:45:30.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +[014 01-14 11:45:30.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +[015 01-14 11:45:30.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +[016 01-14 11:45:30.12 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +[017 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +[018 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +[019 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +[01a 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +[01b 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +[01c 01-14 11:45:30.13 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +[01d 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s +[01e 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> INFO Chaincode support using peerAddress: peer0.org1.example.com:7052 +[01f 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) +[020 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s +[021 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info +[022 01-14 11:45:30.14 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning +[023 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +[024 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +[025 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered +[026 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode vscc(github.com/hyperledger/fabric/core/scc/vscc) registered +[027 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.RegisterSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/chaincode/qscc) registered +[028 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +[029 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.NewEndorserServer.GetLocalMSP -> DEBU Returning existing local MSP +[02a 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP +[02b 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[02c 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/gossip/service] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1 -> INFO Initialize gossip with endpoint peer0.org1.example.com:7051 and bootstrap set [127.0.0.1:7051] +[02d 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[02e 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity +[02f 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -67,11 +67,11 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -[030 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP -[031 01-04 01:50:56.35 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity -[032 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[033 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -[034 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[030 01-14 11:45:30.15 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.GetLocalMSPIdentifier.GetLocalMSP -> DEBU Returning existing local MSP +[031 01-14 11:45:30.16 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.Validate.Validate -> DEBU MSP Org1MSP validating identity +[032 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP +[033 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity +[034 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -85,11 +85,11 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -[035 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} incTime is 1515030656364091100 -[036 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} -[037 01-04 01:50:56.36 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 -[038 01-04 01:50:56.36 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 -[039 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- +[035 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewDiscoveryService -> INFO Started {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} incTime is 1515930330174727564 +[036 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [67 57 124 107 226 101 123 170 242 161 114 171 7 37 125 129 66 25 246 152 76 9 231 202 239 174 113 90 43 207 127 228] peer0.org1.example.com:7051} +[037 01-14 11:45:30.17 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 +[038 01-14 11:45:30.17 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 +[039 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for ID -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRALw0jT/FIanMxPg6w2uUMSowCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -103,1140 +103,1136 @@ ftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0cAMEQCIALSJqGc vdZHCJ0RecVQ2Rdtkdnok57p68XFlRBy2l4xAiAJS6Z2yxyElBubPI0MBn//Xs9l 05n0MbLw/Ug3egJ3JA== -----END CERTIFICATE----- -[03a 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[03b 01-04 01:50:56.36 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 -[03c 01-04 01:50:56.36 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 -[03d 01-04 01:50:56.36 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 -[03e 01-04 01:50:56.36 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 -[03f 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2043397C6BE2657BAA...0A2D2D2D2D2D454E44202D2D2D2D2D0A -[040 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 69B0B99854ABC12C15CEC60EABCF9E5C3A71C9284F1136F83AF170B4B7A7CAB3 -[041 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=7b4bc9d1-dfcd-4a4e-90a9-28101c0d0967,syscc=true,proposal=0x0,canname=cscc:1.0.2 -[042 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched -[043 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[044 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[045 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[046 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[047 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[03a 01-14 11:45:30.17 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 +[03b 01-14 11:45:30.17 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 +[03c 01-14 11:45:30.17 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 +[03d 01-14 11:45:30.17 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 +[03e 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: plaintext: 1801AA01B1060A2043397C6BE2657BAA...0A2D2D2D2D2D454E44202D2D2D2D2D0A +[03f 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.createIdentityMessage.Sign.func1.Sign.Sign.Sign.Sign -> DEBU Sign: digest: 69B0B99854ABC12C15CEC60EABCF9E5C3A71C9284F1136F83AF170B4B7A7CAB3 +[040 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=e97372cd-4ec9-4566-8d5e-52b2afc14c5f,syscc=true,proposal=0x0,canname=cscc:1.0.2 +[041 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode cscc:1.0.2 is being launched +[042 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[043 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[044 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: cscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[045 01-14 11:45:30.17 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 +[046 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=cscc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[048 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock -[049 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock -[04a 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 -[04b 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) -[04c 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -[04d 01-04 01:50:56.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -[04e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 -[04f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[050 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[051 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -[052 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[053 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[054 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A -[055 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: 9D24F77EBDA80C0856F77DB2E90FD1AA1F74E810E4BF308089ADD9E106711B99 -[056 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[058 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[059 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -[05a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -[05b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 -[057 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[05c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[05d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 -[05e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[05f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[060 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[061 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[062 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 -[063 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED -[064 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[065 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[066 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[067 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[068 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed -[069 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[06a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[06b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]Move state message READY -[06c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b4bc9d1]Fabric side Handling ChaincodeMessage of type: READY in state established -[06d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7b4bc9d1]Entered state ready -[06e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7b4bc9d1-dfcd-4a4e-90a9-28101c0d0967 -[06f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]sending state message READY -[070 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Received message READY from shim -[071 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b4bc9d1]Handling ChaincodeMessage of type: READY(state:established) -[072 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[073 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[074 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[075 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -[076 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b4bc9d1]Inside sendExecuteMessage. Message INIT -[077 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[078 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7b4bc9d1]sendExecuteMsg trigger event INIT -[079 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]Move state message INIT -[07a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b4bc9d1]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[07b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[07c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]sending state message INIT -[07d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Received message INIT from shim -[07e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b4bc9d1]Handling ChaincodeMessage of type: INIT(state:ready) -[07f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[080 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7b4bc9d1]Received INIT, initializing chaincode -[081 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[082 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[083 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Init get response status: 200 -[084 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Init succeeded. Sending COMPLETED -[085 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]Move state message COMPLETED -[086 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7b4bc9d1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[087 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7b4bc9d1]send state message COMPLETED -[088 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7b4bc9d1]Received message COMPLETED from shim -[089 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b4bc9d1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[08a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7b4bc9d1-dfcd-4a4e-90a9-28101c0d0967]HandleMessage- COMPLETED. Notify -[08b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7b4bc9d1-dfcd-4a4e-90a9-28101c0d0967 -[08c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[08d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -[08e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=a5699316-2e9e-45cd-a746-d6dd8685a54a,syscc=true,proposal=0x0,canname=lscc:1.0.2 -[08f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched -[090 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[091 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[092 01-04 01:50:56.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: lscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[093 01-04 01:50:56.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 -[094 01-04 01:50:56.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: +[047 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.0.2) lock +[048 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.0.2) lock +[049 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.0.2 +[04a 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.0.2) +[04b 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[04c 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +[04d 01-14 11:45:30.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +[04e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[04f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[050 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012ADE060A3F0A1B70656572302E6F...0A2D2D2D2D2D454E44202D2D2D2D2D0A +[051 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: E0B2CB369971E5FB676BC3CE19ED8E0121611AE9BB191DA46EDC41FB16A5F1F9 +[052 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP +[053 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[054 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 +[055 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 +[056 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[057 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +[058 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.0.2 +[059 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[05a 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[05b 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.0.2 +[05c 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[05d 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.0.2 +[05e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[05f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[060 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[061 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[062 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode cscc:1.0.2 +[063 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.0.2" , sending back REGISTERED +[064 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[065 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[066 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[067 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[068 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode cscc:1.0.2 launch seq completed +[069 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[06a 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[06b 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]Move state message READY +[06c 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e97372cd]Fabric side Handling ChaincodeMessage of type: READY in state established +[06d 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [e97372cd]Entered state ready +[06e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:e97372cd-4ec9-4566-8d5e-52b2afc14c5f +[06f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]sending state message READY +[070 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[071 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[073 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[072 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Received message READY from shim +[075 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e97372cd]Handling ChaincodeMessage of type: READY(state:established) +[074 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +[076 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e97372cd]Inside sendExecuteMessage. Message INIT +[077 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[078 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e97372cd]sendExecuteMsg trigger event INIT +[079 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]Move state message INIT +[07a 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e97372cd]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[07b 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[07c 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]sending state message INIT +[07d 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Received message INIT from shim +[07e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e97372cd]Handling ChaincodeMessage of type: INIT(state:ready) +[07f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[080 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e97372cd]Received INIT, initializing chaincode +[081 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[082 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +[083 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Init get response status: 200 +[084 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Init succeeded. Sending COMPLETED +[085 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]Move state message COMPLETED +[086 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e97372cd]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[087 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e97372cd]send state message COMPLETED +[088 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e97372cd]Received message COMPLETED from shim +[089 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e97372cd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[08a 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e97372cd-4ec9-4566-8d5e-52b2afc14c5f]HandleMessage- COMPLETED. Notify +[08b 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e97372cd-4ec9-4566-8d5e-52b2afc14c5f +[08c 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[08d 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +[08e 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=4c4d1096-e875-4d04-938b-93edf478417b,syscc=true,proposal=0x0,canname=lscc:1.0.2 +[08f 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode lscc:1.0.2 is being launched +[090 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[091 01-14 11:45:30.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[092 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: lscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[093 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[094 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=lscc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[095 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock -[096 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock -[097 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 -[098 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) -[099 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 -[09b 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[09c 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[09a 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 -[09d 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[09e 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 -[09f 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0a0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0a1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0a2 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0a3 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 -[0a4 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED -[0a5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0a6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0a7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0a8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed -[0a9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0aa 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[0ab 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0ac 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]Move state message READY -[0ad 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5699316]Fabric side Handling ChaincodeMessage of type: READY in state established -[0ae 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a5699316]Entered state ready -[0af 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a5699316-2e9e-45cd-a746-d6dd8685a54a -[0b0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]sending state message READY -[0b1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Received message READY from shim -[0b3 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5699316]Handling ChaincodeMessage of type: READY(state:established) -[0b2 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[0b4 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0b5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0b6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[0b7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a5699316]Inside sendExecuteMessage. Message INIT -[0b8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0b9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a5699316]sendExecuteMsg trigger event INIT -[0ba 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]Move state message INIT -[0bb 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5699316]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0bc 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0bd 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]sending state message INIT -[0be 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Received message INIT from shim -[0bf 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5699316]Handling ChaincodeMessage of type: INIT(state:ready) -[0c0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[0c1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a5699316]Received INIT, initializing chaincode -[0c2 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -[0c3 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Init get response status: 200 -[0c4 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Init succeeded. Sending COMPLETED -[0c5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]Move state message COMPLETED -[0c6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5699316]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[0c7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5699316]send state message COMPLETED -[0c8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a5699316]Received message COMPLETED from shim -[0c9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5699316]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0ca 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a5699316-2e9e-45cd-a746-d6dd8685a54a]HandleMessage- COMPLETED. Notify -[0cb 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a5699316-2e9e-45cd-a746-d6dd8685a54a -[0cc 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[0cd 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -[0ce 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=bea1f5ae-3e08-4b33-bee1-fdae8385fd44,syscc=true,proposal=0x0,canname=escc:1.0.2 -[0cf 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched -[0d0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[0d1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0d2 01-04 01:50:56.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: escc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[0d3 01-04 01:50:56.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 -[0d4 01-04 01:50:56.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: +[095 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.0.2) lock +[096 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.0.2) lock +[097 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.0.2 +[098 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.0.2) +[099 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.0.2 +[09a 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[09c 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[09b 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.0.2 +[09d 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[09e 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.0.2 +[09f 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0a0 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0a1 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0a2 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0a3 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode lscc:1.0.2 +[0a4 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.0.2" , sending back REGISTERED +[0a5 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0a6 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[0a8 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[0a9 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[0a7 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode lscc:1.0.2 launch seq completed +[0aa 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[0ab 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0ac 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]Move state message READY +[0ad 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4c4d1096]Fabric side Handling ChaincodeMessage of type: READY in state established +[0ae 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [4c4d1096]Entered state ready +[0af 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:4c4d1096-e875-4d04-938b-93edf478417b +[0b1 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[0b2 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[0b3 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[0b4 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[0b5 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4c4d1096]Inside sendExecuteMessage. Message INIT +[0b6 01-14 11:45:30.19 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... +[0b7 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [4c4d1096]sendExecuteMsg trigger event INIT +[0b0 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]sending state message READY +[0b8 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]Move state message INIT +[0ba 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4c4d1096]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[0b9 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Received message READY from shim +[0bc 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c4d1096]Handling ChaincodeMessage of type: READY(state:established) +[0bb 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[0bd 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]sending state message INIT +[0be 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Received message INIT from shim +[0bf 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c4d1096]Handling ChaincodeMessage of type: INIT(state:ready) +[0c0 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[0c1 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [4c4d1096]Received INIT, initializing chaincode +[0c2 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP +[0c3 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Init get response status: 200 +[0c4 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Init succeeded. Sending COMPLETED +[0c5 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]Move state message COMPLETED +[0c6 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4c4d1096]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[0c7 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4c4d1096]send state message COMPLETED +[0c8 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4c4d1096]Received message COMPLETED from shim +[0c9 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4c4d1096]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[0ca 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4c4d1096-e875-4d04-938b-93edf478417b]HandleMessage- COMPLETED. Notify +[0cb 01-14 11:45:30.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4c4d1096-e875-4d04-938b-93edf478417b +[0cc 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[0cd 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +[0ce 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=escc,version=1.0.2,txid=13c86352-2bad-44f6-8edd-2fdb7eb8b658,syscc=true,proposal=0x0,canname=escc:1.0.2 +[0cf 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode escc:1.0.2 is being launched +[0d0 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[0d1 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[0d2 01-14 11:45:30.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: escc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[0d3 01-14 11:45:30.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 +[0d4 01-14 11:45:30.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 env: CORE_CHAINCODE_ID_NAME=escc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[0d5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock -[0d6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock -[0d7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 -[0d8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) -[0d9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 -[0da 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0db 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 -[0dd 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[0dc 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0de 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 -[0df 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0e0 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0e1 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0e2 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0e3 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 -[0e4 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED -[0e5 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0e6 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0e7 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0e8 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0e9 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed -[0ea 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[0eb 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0ec 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]Move state message READY -[0ed 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bea1f5ae]Fabric side Handling ChaincodeMessage of type: READY in state established -[0ee 01-04 01:50:56.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [bea1f5ae]Entered state ready -[0ef 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:bea1f5ae-3e08-4b33-bee1-fdae8385fd44 -[0f0 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]sending state message READY -[0f1 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Received message READY from shim -[0f2 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bea1f5ae]Handling ChaincodeMessage of type: READY(state:established) -[0f3 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[0f4 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0f5 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0f6 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[0f7 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bea1f5ae]Inside sendExecuteMessage. Message INIT -[0f8 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[0f9 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [bea1f5ae]sendExecuteMsg trigger event INIT -[0fa 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]Move state message INIT -[0fb 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bea1f5ae]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0fc 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0fd 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]sending state message INIT -[0fe 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Received message INIT from shim -[0ff 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bea1f5ae]Handling ChaincodeMessage of type: INIT(state:ready) -[100 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[101 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [bea1f5ae]Received INIT, initializing chaincode -[102 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[103 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Init get response status: 200 -[104 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Init succeeded. Sending COMPLETED -[105 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]Move state message COMPLETED -[106 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bea1f5ae]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[107 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bea1f5ae]send state message COMPLETED -[108 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [bea1f5ae]Received message COMPLETED from shim -[109 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bea1f5ae]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[10a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [bea1f5ae-3e08-4b33-bee1-fdae8385fd44]HandleMessage- COMPLETED. Notify -[10b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:bea1f5ae-3e08-4b33-bee1-fdae8385fd44 -[10c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[10d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed -[10e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=17ef014e-7888-4372-9b8f-5de7a34d16d2,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[10f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched -[110 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[111 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[112 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[113 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[114 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[0d5 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.0.2) lock +[0d6 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.0.2) lock +[0d7 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.0.2 +[0d8 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.0.2) +[0d9 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.0.2 +[0da 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0db 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.0.2 +[0dc 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0dd 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.0.2 +[0de 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0df 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[0e0 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[0e1 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[0e2 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[0e3 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode escc:1.0.2 +[0e4 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"escc:1.0.2" , sending back REGISTERED +[0e6 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[0e7 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[0e8 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[0e5 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[0e9 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode escc:1.0.2 launch seq completed +[0ea 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[0eb 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0ec 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]Move state message READY +[0ed 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13c86352]Fabric side Handling ChaincodeMessage of type: READY in state established +[0ee 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [13c86352]Entered state ready +[0ef 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:13c86352-2bad-44f6-8edd-2fdb7eb8b658 +[0f0 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]sending state message READY +[0f2 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Received message READY from shim +[0f3 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13c86352]Handling ChaincodeMessage of type: READY(state:established) +[0f1 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[0f4 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[0f5 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[0f6 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[0f7 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [13c86352]Inside sendExecuteMessage. Message INIT +[0f8 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[0f9 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [13c86352]sendExecuteMsg trigger event INIT +[0fa 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]Move state message INIT +[0fb 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13c86352]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[0fc 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[0fd 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]sending state message INIT +[0fe 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Received message INIT from shim +[0ff 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13c86352]Handling ChaincodeMessage of type: INIT(state:ready) +[100 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[101 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [13c86352]Received INIT, initializing chaincode +[102 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[103 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Init get response status: 200 +[104 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Init succeeded. Sending COMPLETED +[105 01-14 11:45:30.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]Move state message COMPLETED +[106 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [13c86352]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[107 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [13c86352]send state message COMPLETED +[108 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [13c86352]Received message COMPLETED from shim +[109 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13c86352]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[10a 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [13c86352-2bad-44f6-8edd-2fdb7eb8b658]HandleMessage- COMPLETED. Notify +[10b 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:13c86352-2bad-44f6-8edd-2fdb7eb8b658 +[10c 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[10d 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode escc/(github.com/hyperledger/fabric/core/scc/escc) deployed +[10e 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=vscc,version=1.0.2,txid=818854db-b07a-47b8-a9d4-f4729c5718de,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[10f 01-14 11:45:30.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode vscc:1.0.2 is being launched +[110 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[111 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[112 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[113 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[114 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=vscc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[115 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock -[116 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock -[117 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 -[118 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) -[119 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 -[11a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 -[11b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[11d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 -[11e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[11c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[11f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[120 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[121 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[122 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[123 01-04 01:50:56.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.0.2 -[124 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED -[125 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[126 01-04 01:50:56.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.0.2 launch seq completed -[128 01-04 01:50:56.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 -[129 01-04 01:50:56.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... -[127 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[12a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]Move state message READY -[12c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ef014e]Fabric side Handling ChaincodeMessage of type: READY in state established -[12d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [17ef014e]Entered state ready -[12e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:17ef014e-7888-4372-9b8f-5de7a34d16d2 -[12f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]sending state message READY -[12b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[130 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[132 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[133 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[134 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[135 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [17ef014e]Inside sendExecuteMessage. Message INIT -[136 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[137 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [17ef014e]sendExecuteMsg trigger event INIT -[131 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[139 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]Move state message INIT -[13a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ef014e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[138 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Received message READY from shim -[13c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ef014e]Handling ChaincodeMessage of type: READY(state:established) -[13b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[13d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]sending state message INIT -[13e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Received message INIT from shim -[13f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ef014e]Handling ChaincodeMessage of type: INIT(state:ready) -[140 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[141 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [17ef014e]Received INIT, initializing chaincode -[142 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Init get response status: 200 -[143 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Init succeeded. Sending COMPLETED -[144 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]Move state message COMPLETED -[145 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [17ef014e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[146 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [17ef014e]send state message COMPLETED -[147 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [17ef014e]Received message COMPLETED from shim -[148 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ef014e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[149 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [17ef014e-7888-4372-9b8f-5de7a34d16d2]HandleMessage- COMPLETED. Notify -[14a 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:17ef014e-7888-4372-9b8f-5de7a34d16d2 -[14b 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[14c 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -[14d 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=7c6cfed8-b2db-4109-a1c2-8469df2a87ac,syscc=true,proposal=0x0,canname=qscc:1.0.2 -[14e 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched -[14f 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[150 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[151 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) -[152 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[153 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: +[115 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.0.2) lock +[116 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.0.2) lock +[117 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.0.2 +[118 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.0.2) +[119 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.0.2 +[11b 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[11c 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[11a 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.0.2 +[11d 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[11e 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.0.2 +[11f 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[120 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[121 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[122 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[123 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode vscc:1.0.2 +[124 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"vscc:1.0.2" , sending back REGISTERED +[125 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[126 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[128 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[129 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[127 01-14 11:45:30.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 vscc:1.0.2 launch seq completed +[12a 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY +[12b 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[12c 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]Move state message READY +[12d 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [818854db]Fabric side Handling ChaincodeMessage of type: READY in state established +[12e 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [818854db]Entered state ready +[12f 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:818854db-b07a-47b8-a9d4-f4729c5718de +[130 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]sending state message READY +[131 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Received message READY from shim +[133 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [818854db]Handling ChaincodeMessage of type: READY(state:established) +[132 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed +[134 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[135 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[136 01-14 11:45:30.22 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[137 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [818854db]Inside sendExecuteMessage. Message INIT +[138 01-14 11:45:30.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... +[139 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [818854db]sendExecuteMsg trigger event INIT +[13a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]Move state message INIT +[13b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [818854db]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[13c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[13d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]sending state message INIT +[13e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Received message INIT from shim +[13f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [818854db]Handling ChaincodeMessage of type: INIT(state:ready) +[140 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[141 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [818854db]Received INIT, initializing chaincode +[142 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Init get response status: 200 +[143 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Init succeeded. Sending COMPLETED +[144 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]Move state message COMPLETED +[145 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [818854db]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[146 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [818854db]send state message COMPLETED +[147 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [818854db]Received message COMPLETED from shim +[148 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [818854db]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[149 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [818854db-b07a-47b8-a9d4-f4729c5718de]HandleMessage- COMPLETED. Notify +[14a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:818854db-b07a-47b8-a9d4-f4729c5718de +[14b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[14c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed +[14d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.0.2,txid=9902c4b9-dc72-4da4-8e81-e5e1991dcdca,syscc=true,proposal=0x0,canname=qscc:1.0.2 +[14e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.0.2 is being launched +[14f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[150 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[151 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: qscc:1.0.2(networkid:dev,peerid:peer0.org1.example.com) +[152 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[153 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: CORE_CHAINCODE_ID_NAME=qscc:1.0.2 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[154 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock -[155 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock -[156 01-04 01:50:56.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 -[157 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) -[158 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 -[15a 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[159 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 -[15b 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[15c 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 -[15d 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[15e 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP -[15f 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[160 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[161 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[162 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 -[163 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED -[164 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[165 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[166 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed -[168 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[167 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[169 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[16a 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[16b 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]Move state message READY -[16c 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c6cfed8]Fabric side Handling ChaincodeMessage of type: READY in state established -[16d 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [7c6cfed8]Entered state ready -[16e 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:7c6cfed8-b2db-4109-a1c2-8469df2a87ac -[16f 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]sending state message READY -[170 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Received message READY from shim -[171 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c6cfed8]Handling ChaincodeMessage of type: READY(state:established) -[172 01-04 01:50:56.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 -[173 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[174 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[175 01-04 01:50:56.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: qscc:1.0.2 -[176 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7c6cfed8]Inside sendExecuteMessage. Message INIT -[177 01-04 01:50:56.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... -[178 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [7c6cfed8]sendExecuteMsg trigger event INIT -[179 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]Move state message INIT -[17a 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c6cfed8]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[17b 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[17c 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]sending state message INIT -[17d 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Received message INIT from shim -[17e 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c6cfed8]Handling ChaincodeMessage of type: INIT(state:ready) -[17f 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[180 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [7c6cfed8]Received INIT, initializing chaincode -[181 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[182 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[183 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Init get response status: 200 -[184 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Init succeeded. Sending COMPLETED -[185 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]Move state message COMPLETED -[186 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c6cfed8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[187 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c6cfed8]send state message COMPLETED -[188 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7c6cfed8]Received message COMPLETED from shim -[189 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c6cfed8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[18a 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7c6cfed8-b2db-4109-a1c2-8469df2a87ac]HandleMessage- COMPLETED. Notify -[18b 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7c6cfed8-b2db-4109-a1c2-8469df2a87ac -[18c 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[18d 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[18e 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess -[18f 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[190 01-04 01:50:56.39 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -[191 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' -[192 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' -[193 01-04 01:50:56.40 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' -[194 01-04 01:50:56.40 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' -[195 01-04 01:50:56.40 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' -[196 01-04 01:50:56.40 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' -[197 01-04 01:50:56.40 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' -[198 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/comm' logger enabled for log level 'WARNING' -[199 01-04 01:50:56.40 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' -[19a 01-04 01:50:56.40 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' -[19b 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -[19c 01-04 01:50:56.40 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' -[19d 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' -[19e 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' -[19f 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -[1a0 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -[1a1 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -[1a2 01-04 01:50:56.40 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -[1a3 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[1a4 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4215dccf0 -[1a5 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[1a6 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[1a7 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[1a8 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[1a9 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[1aa 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4215a9450, header 0xc4215dcdb0 -[1ab 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -[1ac 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e -[1ad 01-04 01:50:57.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e channel id: -[1ae 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e channel id: version: 1.0.2 -[1af 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e,syscc=true,proposal=0xc4215a9450,canname=cscc:1.0.2 -[1b0 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -[1b1 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[1b2 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -[1b3 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1f63cc98]Inside sendExecuteMessage. Message TRANSACTION -[1b4 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[1b5 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[1b6 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1f63cc98]sendExecuteMsg trigger event TRANSACTION -[1b7 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f63cc98]Move state message TRANSACTION -[1b8 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f63cc98]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[1b9 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[1ba 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f63cc98]sending state message TRANSACTION -[1bb 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f63cc98]Received message TRANSACTION from shim -[1bc 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f63cc98]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[1bd 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1f63cc98]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[1be 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -[1bf 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -[1c0 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[1c1 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -[1c2 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -[1c3 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -[1c4 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -[1c5 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -[1c6 01-04 01:50:57.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -[1c7 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[1c8 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42033dec0), Data:(*common.BlockData)(0xc421648740), Metadata:(*common.BlockMetadata)(0xc421648780)}, doMVCCValidation=true -[1c9 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[1ca 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] -[1cb 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0x61, 0xe4, 0x69, 0xf1, 0xee, 0xa5, 0x26, 0xf8, 0x82, 0xb2, 0x7f, 0xf9, 0x50, 0x2d, 0xfb, 0x67, 0xc4, 0xd7, 0xc4, 0x2b, 0xd6, 0x9c, 0x67, 0x53, 0x48, 0x11, 0x32, 0xbd, 0xf, 0xe6, 0x98} txOffsets= +[154 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.0.2) lock +[155 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.0.2) lock +[156 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.0.2 +[157 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.0.2) +[158 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.0.2 +[15a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[159 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.0.2 +[15b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[15c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.0.2 +[15d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] HandleChaincodeStream.HandleChaincodeStream.newChaincodeSupportHandler.GetLocalMSP -> DEBU Returning existing local MSP +[15e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[15f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[160 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[161 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[162 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode qscc:1.0.2 +[163 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.0.2" , sending back REGISTERED +[164 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[165 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim +[166 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) +[167 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations +[168 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode qscc:1.0.2 launch seq completed +[169 01-14 11:45:30.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 +[16a 01-14 11:45:30.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... +[16b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]Move state message READY +[16c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9902c4b9]Fabric side Handling ChaincodeMessage of type: READY in state established +[16d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [9902c4b9]Entered state ready +[16e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:9902c4b9-dc72-4da4-8e81-e5e1991dcdca +[16f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]sending state message READY +[170 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Received message READY from shim +[171 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9902c4b9]Handling ChaincodeMessage of type: READY(state:established) +[172 01-14 11:45:30.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 +[173 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete +[174 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[175 01-14 11:45:30.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: qscc:1.0.2 +[176 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9902c4b9]Inside sendExecuteMessage. Message INIT +[177 01-14 11:45:30.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... +[178 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [9902c4b9]sendExecuteMsg trigger event INIT +[179 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]Move state message INIT +[17a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9902c4b9]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[17b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[17c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]sending state message INIT +[17d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Received message INIT from shim +[17e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9902c4b9]Handling ChaincodeMessage of type: INIT(state:ready) +[17f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[180 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [9902c4b9]Received INIT, initializing chaincode +[181 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[182 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP +[183 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Init get response status: 200 +[184 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Init succeeded. Sending COMPLETED +[185 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]Move state message COMPLETED +[186 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9902c4b9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[187 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9902c4b9]send state message COMPLETED +[188 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [9902c4b9]Received message COMPLETED from shim +[189 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9902c4b9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[18a 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [9902c4b9-dc72-4da4-8e81-e5e1991dcdca]HandleMessage- COMPLETED. Notify +[18b 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:9902c4b9-dc72-4da4-8e81-e5e1991dcdca +[18c 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[18d 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[18e 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodess +[18f 01-14 11:45:30.23 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +[190 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +[191 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'configvalues/msp' logger enabled for log level 'WARNING' +[192 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +[193 01-14 11:45:30.24 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' +[194 01-14 11:45:30.24 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' +[195 01-14 11:45:30.24 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' +[196 01-14 11:45:30.24 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' +[197 01-14 11:45:30.24 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' +[198 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +[199 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/discovery' logger enabled for log level 'WARNING' +[19a 01-14 11:45:30.24 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' +[19b 01-14 11:45:30.24 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' +[19c 01-14 11:45:30.24 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' +[19d 01-14 11:45:30.24 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' +[19e 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger.util' logger enabled for log level 'INFO' +[19f 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'kvledger' logger enabled for log level 'INFO' +[1a0 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +[1a1 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' +[1a2 01-14 11:45:30.24 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' +[1a3 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[1a4 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4216c4300 +[1a5 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[1a6 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[1a7 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[1a8 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[1a9 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[1aa 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421617ae0, header 0xc4216c4390 +[1ab 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +[1ac 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2 +[1ad 01-14 11:45:33.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2 channel id: +[1ae 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2 channel id: version: 1.0.2 +[1af 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.0.2,txid=1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2,syscc=true,proposal=0xc421617ae0,canname=cscc:1.0.2 +[1b0 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +[1b1 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[1b2 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +[1b3 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1973ce8a]Inside sendExecuteMessage. Message TRANSACTION +[1b4 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[1b5 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[1b6 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1973ce8a]sendExecuteMsg trigger event TRANSACTION +[1b7 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1973ce8a]Move state message TRANSACTION +[1b8 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1973ce8a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[1b9 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[1ba 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1973ce8a]sending state message TRANSACTION +[1bb 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1973ce8a]Received message TRANSACTION from shim +[1bc 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1973ce8a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1bd 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1973ce8a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[1be 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +[1bf 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +[1c0 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[1c1 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] +[1c2 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] +[1c3 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +[1c4 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] +[1c5 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] +[1c6 01-14 11:45:33.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] +[1c7 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[1c8 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421595440), Data:(*common.BlockData)(0xc421702880), Metadata:(*common.BlockMetadata)(0xc4217028c0)}, doMVCCValidation=true +[1c9 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[1ca 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [0] Transaction index [0] because, the transaction type is [CONFIG] +[1cb 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x8f, 0xc4, 0xf6, 0xef, 0x6e, 0xea, 0xc7, 0xd1, 0xa2, 0x1, 0xa, 0x48, 0x37, 0x3d, 0xf9, 0x14, 0x71, 0x13, 0xd2, 0x9, 0x4f, 0x96, 0x3b, 0x2c, 0xc3, 0xaf, 0xef, 0x96, 0xc4, 0x7b, 0xba, 0x6d} txOffsets= txId= locPointer=offset=38, bytesLength=11890 ] -[1cc 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index -[1cd 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index -[1ce 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] -[1cf 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -[1d0 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database -[1d1 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[1d2 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database -[1d3 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -[1d4 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[1d5 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -[1d6 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -[1d7 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[1d8 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[1d9 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[1da 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[1db 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[1dc 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[1dd 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[1de 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[1df 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[1e0 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[1e1 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[1e2 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[1e3 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[1e4 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[1e5 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[1e6 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[1e7 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[1e8 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[1e9 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[1ea 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[1eb 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[1ec 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[1ed 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[1ee 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[1ef 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[1f0 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[1f1 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[1f2 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[1f3 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[1f4 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[1f5 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[1f6 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[1f7 01-04 01:50:57.73 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[1f8 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[1f9 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[1fa 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[1fb 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[1fc 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[1fd 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[1fe 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[1ff 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[200 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel -[201 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[202 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[203 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[204 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[205 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[206 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[207 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[208 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[209 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[20a 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[20b 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[20c 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[20d 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[20e 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[20f 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[210 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[211 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[212 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[213 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[214 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[215 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[216 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[217 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[218 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[219 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[21a 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[21b 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[21c 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are -[21d 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[21e 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[21f 01-04 01:50:57.74 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[220 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[221 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[222 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[223 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[224 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[225 01-04 01:50:57.75 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -[226 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain -[227 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[228 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [76932619-2d69-4d22-b887-a6cd62b3ac52] -[229 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=74d27789-347b-470c-ab30-0362e00de8f1,syscc=true,proposal=0x0,canname=cscc:1.0.2 -[22a 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 -[22b 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[22c 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 -[22d 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [74d27789]Inside sendExecuteMessage. Message INIT -[22e 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[22f 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [74d27789]sendExecuteMsg trigger event INIT -[230 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74d27789]Move state message INIT -[231 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74d27789]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[232 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[233 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74d27789]sending state message INIT -[234 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]Received message INIT from shim -[235 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74d27789]Handling ChaincodeMessage of type: INIT(state:ready) -[236 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[237 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [74d27789]Received INIT, initializing chaincode -[238 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[239 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]Init get response status: 200 -[23a 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]Init succeeded. Sending COMPLETED -[23b 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]Move state message COMPLETED -[23c 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74d27789]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[23d 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74d27789]send state message COMPLETED -[23e 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74d27789]Received message COMPLETED from shim -[23f 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74d27789]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[240 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74d27789-347b-470c-ab30-0362e00de8f1]HandleMessage- COMPLETED. Notify -[241 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74d27789-347b-470c-ab30-0362e00de8f1 -[242 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[243 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -[244 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [76932619-2d69-4d22-b887-a6cd62b3ac52] -[245 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[246 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [27d68993-c622-43a3-bb40-cb91bacf1f32] -[247 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=e3b8971e-7aa8-47a0-a318-995308db154d,syscc=true,proposal=0x0,canname=lscc:1.0.2 -[248 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[249 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[24a 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[24b 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e3b8971e]Inside sendExecuteMessage. Message INIT -[24c 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[24d 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e3b8971e]sendExecuteMsg trigger event INIT -[24e 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3b8971e]Move state message INIT -[24f 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3b8971e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[250 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[251 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3b8971e]sending state message INIT -[252 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]Received message INIT from shim -[253 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e3b8971e]Handling ChaincodeMessage of type: INIT(state:ready) -[254 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[255 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e3b8971e]Received INIT, initializing chaincode -[256 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]Init get response status: 200 -[257 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]Init succeeded. Sending COMPLETED -[258 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]Move state message COMPLETED -[259 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e3b8971e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[25a 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e3b8971e]send state message COMPLETED -[25b 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e3b8971e]Received message COMPLETED from shim -[25c 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3b8971e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[25d 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e3b8971e-7aa8-47a0-a318-995308db154d]HandleMessage- COMPLETED. Notify -[25e 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e3b8971e-7aa8-47a0-a318-995308db154d -[25f 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[260 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -[261 01-04 01:50:57.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [27d68993-c622-43a3-bb40-cb91bacf1f32] -[262 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[263 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [6b7db544-cefd-4b96-b586-e313e265f61a] -[264 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=965133c5-e342-49c4-b7cc-6a99782405ef,syscc=true,proposal=0x0,canname=escc:1.0.2 -[265 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[266 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[267 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[268 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [965133c5]Inside sendExecuteMessage. Message INIT -[269 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[26a 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [965133c5]sendExecuteMsg trigger event INIT -[26b 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [965133c5]Move state message INIT -[26c 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [965133c5]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[26d 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[26e 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [965133c5]sending state message INIT -[26f 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]Received message INIT from shim -[270 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [965133c5]Handling ChaincodeMessage of type: INIT(state:ready) -[271 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[272 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [965133c5]Received INIT, initializing chaincode -[273 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[274 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]Init get response status: 200 -[275 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]Init succeeded. Sending COMPLETED -[276 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]Move state message COMPLETED -[277 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [965133c5]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[278 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [965133c5]send state message COMPLETED -[279 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [965133c5]Received message COMPLETED from shim -[27a 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [965133c5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[27b 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [965133c5-e342-49c4-b7cc-6a99782405ef]HandleMessage- COMPLETED. Notify -[27c 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:965133c5-e342-49c4-b7cc-6a99782405ef -[27d 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[27e 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed -[27f 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6b7db544-cefd-4b96-b586-e313e265f61a] -[280 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[281 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [abad93e6-557e-46a2-8f24-9e948ba854c4] -[282 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=111b7097-2aea-4658-8a02-66c16d064bba,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[283 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[284 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[285 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[286 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [111b7097]Inside sendExecuteMessage. Message INIT -[287 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[288 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [111b7097]sendExecuteMsg trigger event INIT -[289 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [111b7097]Move state message INIT -[28a 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [111b7097]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[28b 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[28c 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [111b7097]sending state message INIT -[28d 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]Received message INIT from shim -[28e 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [111b7097]Handling ChaincodeMessage of type: INIT(state:ready) -[28f 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[290 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [111b7097]Received INIT, initializing chaincode -[291 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]Init get response status: 200 -[292 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]Init succeeded. Sending COMPLETED -[293 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]Move state message COMPLETED -[294 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [111b7097]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[295 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [111b7097]send state message COMPLETED -[296 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [111b7097]Received message COMPLETED from shim -[297 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [111b7097]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[298 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [111b7097-2aea-4658-8a02-66c16d064bba]HandleMessage- COMPLETED. Notify -[299 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:111b7097-2aea-4658-8a02-66c16d064bba -[29a 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[29b 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed -[29c 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [abad93e6-557e-46a2-8f24-9e948ba854c4] -[29d 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[29e 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e6a1dab2-0fe6-4096-9ef3-51204ec23906] -[29f 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=77489167-29ec-4681-8c1a-432ee033de79,syscc=true,proposal=0x0,canname=qscc:1.0.2 -[2a0 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -[2a1 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2a2 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -[2a3 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [77489167]Inside sendExecuteMessage. Message INIT -[2a4 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2a5 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [77489167]sendExecuteMsg trigger event INIT -[2a6 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77489167]Move state message INIT -[2a7 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77489167]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2a8 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2a9 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77489167]sending state message INIT -[2aa 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]Received message INIT from shim -[2ab 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [77489167]Handling ChaincodeMessage of type: INIT(state:ready) -[2ac 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2ad 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [77489167]Received INIT, initializing chaincode -[2ae 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[2af 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]Init get response status: 200 -[2b0 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]Init succeeded. Sending COMPLETED -[2b1 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]Move state message COMPLETED -[2b2 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [77489167]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2b3 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [77489167]send state message COMPLETED -[2b4 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [77489167]Received message COMPLETED from shim -[2b5 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77489167]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2b6 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [77489167-29ec-4681-8c1a-432ee033de79]HandleMessage- COMPLETED. Notify -[2b7 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:77489167-29ec-4681-8c1a-432ee033de79 -[2b8 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2b9 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed -[2ba 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e6a1dab2-0fe6-4096-9ef3-51204ec23906] -[2bb 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry -[2bc 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] -[2bd 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry -[2be 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[2bf 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[2c0 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit -[2c1 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit -[2c2 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f63cc98]Transaction completed. Sending COMPLETED -[2c3 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f63cc98]Move state message COMPLETED -[2c4 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1f63cc98]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2c5 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1f63cc98]send state message COMPLETED -[2c6 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1f63cc98]Received message COMPLETED from shim -[2c7 01-04 01:50:57.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f63cc98]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2c8 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e]HandleMessage- COMPLETED. Notify -[2c9 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1f63cc98770a4ba2cd974b2c27ceacac7d26795f7775083aff513fe9970af46e -[2ca 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[2cb 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[2cc 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[2cd 01-04 01:50:57.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[2ce 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[2cf 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4202e2d80 -[2d0 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[2d1 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[2d2 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[2d3 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[2d4 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[2d5 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202caa00, header 0xc4202e2db0 -[2d6 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[2d7 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5 -[2d8 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5 channel id: -[2d9 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5 channel id: version: 1.0.2 -[2da 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5,syscc=true,proposal=0xc4202caa00,canname=lscc:1.0.2 -[2db 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[2dc 01-04 01:51:03.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[2dd 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[2de 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b95f3b5e]Inside sendExecuteMessage. Message TRANSACTION -[2df 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2e0 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[2e1 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [b95f3b5e]sendExecuteMsg trigger event TRANSACTION -[2e2 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95f3b5e]Move state message TRANSACTION -[2e3 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b95f3b5e]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[2e4 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2e5 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95f3b5e]sending state message TRANSACTION -[2e6 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95f3b5e]Received message TRANSACTION from shim -[2e7 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b95f3b5e]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[2e8 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [b95f3b5e]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[2e9 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95f3b5e]Transaction completed. Sending COMPLETED -[2ea 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95f3b5e]Move state message COMPLETED -[2eb 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b95f3b5e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2ec 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b95f3b5e]send state message COMPLETED -[2ed 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b95f3b5e]Received message COMPLETED from shim -[2ee 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b95f3b5e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2ef 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5]HandleMessage- COMPLETED. Notify -[2f0 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b95f3b5e2559cd7fdda0e5175c9558c07b7a98287c7b0bc83ae566bf957301f5 -[2f1 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[2f2 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[2f3 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[2f4 01-04 01:51:03.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[2f5 01-04 01:51:03.76 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -[2f6 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -[2f7 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -[2f8 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -[2f9 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -[2fa 01-04 01:51:03.77 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -[2fb 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -[2fd 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[2fe 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[2fc 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -[2ff 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[300 01-04 01:51:03.79 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420310fc0 -[301 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -[302 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[303 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[304 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -[305 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[306 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[307 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4213ce000, header channel_header:"\010\001\032\006\010\202\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030r\207js\367\256\323|4\316\241\0343;\255\313\244%\313?r\\\"F" -[308 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[309 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[30a 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[30b 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[30c 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[30d 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[30e 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[30f 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[310 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[311 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[312 01-04 01:51:03.80 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[313 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[314 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[315 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[316 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[317 01-04 01:51:03.81 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[318 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[319 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[31a 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[31b 01-04 01:51:03.82 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[31c 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[31d 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[31e 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[31f 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[320 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[321 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[322 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[323 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[325 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[324 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -[326 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[327 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[328 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[329 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[32a 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -[32b 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[32c 01-04 01:51:03.83 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[32d 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[32e 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[32f 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[330 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[331 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[332 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[333 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[334 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[335 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[336 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[337 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[338 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[339 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[33a 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[33b 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[33c 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[33d 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[33e 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[33f 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[340 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[341 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[342 01-04 01:51:03.84 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[343 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[344 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[345 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[346 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[347 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[348 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[349 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[34a 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[34b 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[34c 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[34d 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[34e 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[34f 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[350 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[351 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[352 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[353 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[354 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[355 01-04 01:51:03.85 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[356 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[357 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[358 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[359 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[35a 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[35b 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[35c 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[35d 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[35e 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[35f 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[360 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[361 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[362 01-04 01:51:03.86 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[363 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[364 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[365 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[366 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[367 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[368 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[369 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[36a 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[36b 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[36c 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[36d 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[36e 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[36f 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[370 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are -[371 01-04 01:51:03.87 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[372 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[373 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[374 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[375 01-04 01:51:03.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[376 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[377 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -[378 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[379 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[37a 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[37b 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42005e180), Data:(*common.BlockData)(0xc420267820), Metadata:(*common.BlockMetadata)(0xc420267860)}, doMVCCValidation=true -[37c 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[37d 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] -[37e 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x54, 0xbe, 0xd6, 0x3f, 0x54, 0x86, 0x6a, 0x3b, 0xfd, 0x9a, 0xdc, 0xb9, 0xfc, 0x15, 0x9e, 0x26, 0x4, 0x89, 0xff, 0xaa, 0x1a, 0x85, 0x5a, 0x81, 0x49, 0x6b, 0x26, 0x91, 0xff, 0x54, 0x5c, 0xb5} txOffsets= +[1cc 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx ID: [] to index +[1cd 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=11890] for tx number:[0] ID: [] to blockNumTranNum index +[1ce 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[11934], isChainEmpty=[false], lastBlockNumber=[0] +[1cf 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) +[1d0 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Committing updates to state database +[1d1 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[1d2 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Updates committed to state database +[1d3 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +[1d4 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[1d5 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +[1d6 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +[1d7 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[1d8 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[1d9 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[1da 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[1db 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewInitializer.newResources.NewRoot.NewChannelGroup.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[1dc 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[1dd 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[1de 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[1df 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[1e0 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[1e1 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[1e2 01-14 11:45:33.12 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[1e3 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[1e4 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[1e5 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[1e6 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[1e7 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[1e8 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[1e9 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[1ea 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[1eb 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[1ec 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[1ed 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[1ee 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[1ef 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[1f0 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[1f1 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[1f2 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[1f3 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[1f4 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[1f5 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[1f6 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1f7 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[1f8 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[1f9 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[1fa 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[1fb 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[1fc 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[1fd 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[1fe 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[1ff 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[200 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig -> DEBU Beginning new config for channel businesschannel +[201 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[202 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[203 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[204 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[205 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[206 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[207 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[208 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[209 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[20a 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[20b 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[20c 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[20d 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[20e 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[20f 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[210 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[211 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[212 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[213 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[214 01-14 11:45:33.13 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[215 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[216 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[217 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[218 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[219 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[21a 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[21b 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are +[21c 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[21d 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[21e 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[21f 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/common/config] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[220 01-14 11:45:33.14 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[221 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[222 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[223 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[224 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewManagerImpl.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[225 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel +[226 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func2 -> DEBU Deploying system CC, for chain +[227 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[228 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [09c3921f-7278-4f34-bcb5-eb6d8b90cb8e] +[229 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=cscc,version=1.0.2,txid=18560eed-ed27-4836-8a71-1c257edeb8cf,syscc=true,proposal=0x0,canname=cscc:1.0.2 +[22a 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.0.2 +[22b 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[22c 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: cscc:1.0.2 +[22d 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18560eed]Inside sendExecuteMessage. Message INIT +[22e 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[22f 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [18560eed]sendExecuteMsg trigger event INIT +[230 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18560eed]Move state message INIT +[231 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18560eed]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[232 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[233 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18560eed]sending state message INIT +[234 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]Received message INIT from shim +[235 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18560eed]Handling ChaincodeMessage of type: INIT(state:ready) +[236 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[237 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [18560eed]Received INIT, initializing chaincode +[238 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[239 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]Init get response status: 200 +[23a 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]Init succeeded. Sending COMPLETED +[23b 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]Move state message COMPLETED +[23c 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18560eed]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[23d 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18560eed]send state message COMPLETED +[23e 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [18560eed]Received message COMPLETED from shim +[23f 01-14 11:45:33.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18560eed]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[240 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [18560eed-ed27-4836-8a71-1c257edeb8cf]HandleMessage- COMPLETED. Notify +[241 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:18560eed-ed27-4836-8a71-1c257edeb8cf +[242 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[243 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +[244 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [09c3921f-7278-4f34-bcb5-eb6d8b90cb8e] +[245 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[246 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b99f7c75-a36e-4ac1-ae2f-bed62c3f2bf0] +[247 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=e46d4d8d-609b-4c06-a3cf-5054c8cda936,syscc=true,proposal=0x0,canname=lscc:1.0.2 +[248 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[249 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[24a 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[24b 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e46d4d8d]Inside sendExecuteMessage. Message INIT +[24c 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[24d 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [e46d4d8d]sendExecuteMsg trigger event INIT +[24e 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e46d4d8d]Move state message INIT +[24f 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e46d4d8d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[250 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[251 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e46d4d8d]sending state message INIT +[252 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]Received message INIT from shim +[253 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e46d4d8d]Handling ChaincodeMessage of type: INIT(state:ready) +[254 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[255 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [e46d4d8d]Received INIT, initializing chaincode +[256 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]Init get response status: 200 +[257 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]Init succeeded. Sending COMPLETED +[258 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]Move state message COMPLETED +[259 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e46d4d8d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[25a 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e46d4d8d]send state message COMPLETED +[25b 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [e46d4d8d]Received message COMPLETED from shim +[25c 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e46d4d8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[25d 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [e46d4d8d-609b-4c06-a3cf-5054c8cda936]HandleMessage- COMPLETED. Notify +[25e 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:e46d4d8d-609b-4c06-a3cf-5054c8cda936 +[25f 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[260 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +[261 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b99f7c75-a36e-4ac1-ae2f-bed62c3f2bf0] +[262 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[263 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [9af62c01-714a-4a7d-b862-6861262b0a29] +[264 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=b0b2862d-2e0a-44cb-a9f3-4285aeef8061,syscc=true,proposal=0x0,canname=escc:1.0.2 +[265 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[266 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[267 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[268 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b0b2862d]Inside sendExecuteMessage. Message INIT +[269 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[26a 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b0b2862d]sendExecuteMsg trigger event INIT +[26b 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0b2862d]Move state message INIT +[26c 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b0b2862d]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[26d 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[26e 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0b2862d]sending state message INIT +[26f 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]Received message INIT from shim +[270 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0b2862d]Handling ChaincodeMessage of type: INIT(state:ready) +[271 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[272 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b0b2862d]Received INIT, initializing chaincode +[273 01-14 11:45:33.16 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC +[274 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]Init get response status: 200 +[275 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]Init succeeded. Sending COMPLETED +[276 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]Move state message COMPLETED +[277 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b0b2862d]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[278 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b0b2862d]send state message COMPLETED +[279 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b0b2862d]Received message COMPLETED from shim +[27a 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b0b2862d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[27b 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [b0b2862d-2e0a-44cb-a9f3-4285aeef8061]HandleMessage- COMPLETED. Notify +[27c 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:b0b2862d-2e0a-44cb-a9f3-4285aeef8061 +[27d 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[27e 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode escc/businesschannel(github.com/hyperledger/fabric/core/scc/escc) deployed +[27f 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [9af62c01-714a-4a7d-b862-6861262b0a29] +[280 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[281 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [e1853bb4-6a7a-4287-bbec-89c604c23806] +[282 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=5f902ab2-bd41-43ef-99a6-70fef791cea8,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[283 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[284 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[285 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[286 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5f902ab2]Inside sendExecuteMessage. Message INIT +[287 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[288 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5f902ab2]sendExecuteMsg trigger event INIT +[289 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f902ab2]Move state message INIT +[28a 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f902ab2]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[28b 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[28c 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f902ab2]sending state message INIT +[28d 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]Received message INIT from shim +[28e 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f902ab2]Handling ChaincodeMessage of type: INIT(state:ready) +[28f 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[290 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5f902ab2]Received INIT, initializing chaincode +[291 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]Init get response status: 200 +[292 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]Init succeeded. Sending COMPLETED +[293 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]Move state message COMPLETED +[294 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f902ab2]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[295 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f902ab2]send state message COMPLETED +[296 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f902ab2]Received message COMPLETED from shim +[297 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f902ab2]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[298 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [5f902ab2-bd41-43ef-99a6-70fef791cea8]HandleMessage- COMPLETED. Notify +[299 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:5f902ab2-bd41-43ef-99a6-70fef791cea8 +[29a 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[29b 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/businesschannel(github.com/hyperledger/fabric/core/scc/vscc) deployed +[29c 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [e1853bb4-6a7a-4287-bbec-89c604c23806] +[29d 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[29e 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [84dfd666-8d81-417c-b6d2-04668eae53a9] +[29f 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=21230186-8728-487d-8580-94adb281be2a,syscc=true,proposal=0x0,canname=qscc:1.0.2 +[2a0 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +[2a1 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry +[2a2 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +[2a3 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [21230186]Inside sendExecuteMessage. Message INIT +[2a4 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2a5 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [21230186]sendExecuteMsg trigger event INIT +[2a6 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21230186]Move state message INIT +[2a7 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [21230186]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[2a8 01-14 11:45:33.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2a9 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21230186]sending state message INIT +[2aa 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]Received message INIT from shim +[2ab 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21230186]Handling ChaincodeMessage of type: INIT(state:ready) +[2ac 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready +[2ad 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [21230186]Received INIT, initializing chaincode +[2ae 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[2af 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]Init get response status: 200 +[2b0 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]Init succeeded. Sending COMPLETED +[2b1 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]Move state message COMPLETED +[2b2 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [21230186]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2b3 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [21230186]send state message COMPLETED +[2b4 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [21230186]Received message COMPLETED from shim +[2b5 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [21230186]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2b6 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [21230186-8728-487d-8580-94adb281be2a]HandleMessage- COMPLETED. Notify +[2b7 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:21230186-8728-487d-8580-94adb281be2a +[2b8 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit +[2b9 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/chaincode/qscc) deployed +[2ba 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func2.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [84dfd666-8d81-417c-b6d2-04668eae53a9] +[2bb 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Entry +[2bc 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [0] +[2bd 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Entry +[2be 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[2bf 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[2c0 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent.Send -> DEBU Exit +[2c1 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.SendProducerBlockEvent -> DEBU Exit +[2c2 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1973ce8a]Transaction completed. Sending COMPLETED +[2c3 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1973ce8a]Move state message COMPLETED +[2c4 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1973ce8a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2c5 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1973ce8a]send state message COMPLETED +[2c6 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1973ce8a]Received message COMPLETED from shim +[2c7 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1973ce8a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2c8 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2]HandleMessage- COMPLETED. Notify +[2c9 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1973ce8ac87c23116bf0fe0661cf06767f340f825f5e0b44617089dcd5b96bb2 +[2ca 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[2cb 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[2cc 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[2cd 01-14 11:45:33.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[2ce 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[2cf 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4216c4180 +[2d0 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[2d1 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[2d2 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[2d3 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[2d4 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[2d5 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4219aa0a0, header 0xc4216c41e0 +[2d6 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[2d7 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a +[2d8 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a channel id: +[2d9 01-14 11:45:38.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a channel id: version: 1.0.2 +[2da 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.0.2,txid=3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a,syscc=true,proposal=0xc4219aa0a0,canname=lscc:1.0.2 +[2db 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[2dc 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[2dd 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[2de 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b4a560b]Inside sendExecuteMessage. Message TRANSACTION +[2df 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[2e0 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[2e1 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3b4a560b]sendExecuteMsg trigger event TRANSACTION +[2e2 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b4a560b]Move state message TRANSACTION +[2e3 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b4a560b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[2e4 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[2e5 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b4a560b]sending state message TRANSACTION +[2e6 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b4a560b]Received message TRANSACTION from shim +[2e7 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b4a560b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[2e8 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3b4a560b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[2e9 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b4a560b]Transaction completed. Sending COMPLETED +[2ea 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b4a560b]Move state message COMPLETED +[2eb 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3b4a560b]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[2ec 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3b4a560b]send state message COMPLETED +[2ed 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3b4a560b]Received message COMPLETED from shim +[2ee 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b4a560b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[2ef 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a]HandleMessage- COMPLETED. Notify +[2f0 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3b4a560b1f8854d2798700d561c8f1ef475a0f959f6aa7f2e88264e144971f1a +[2f1 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[2f2 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[2f3 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[2f4 01-14 11:45:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[2f5 01-14 11:45:39.15 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +[2f6 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +[2f7 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +[2f8 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +[2f9 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +[2fa 01-14 11:45:39.16 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +[2fb 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +[2fc 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +[2fd 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[2fe 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[2ff 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[300 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421791c50 +[301 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +[302 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[303 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[304 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +[305 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[306 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[307 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42032f000, header channel_header:"\010\001\032\006\010\336\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\330\313\000\2642\267\214\014Gm\177\231\0312\220\303I\255\025\365\315.\206\r" +[308 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[309 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[30a 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[30b 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[30c 01-14 11:45:39.17 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[30d 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[30e 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[30f 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[310 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[311 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[312 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[313 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[314 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[315 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[316 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[317 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[318 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[319 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[31a 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[31b 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[31c 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[31d 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[31e 01-14 11:45:39.18 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[31f 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[320 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[321 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[322 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[323 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[324 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[325 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[326 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[327 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[328 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[329 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[32a 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[32b 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[32c 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[32d 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[32e 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[32f 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[330 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[331 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[332 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[333 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[334 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[335 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[336 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[337 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[338 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[339 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[33a 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[33b 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[33c 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[33d 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[33e 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[33f 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[340 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[341 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[342 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[343 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[344 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[345 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[346 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[347 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[348 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[349 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[34a 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[34b 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[34c 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[34d 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[34e 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[34f 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[350 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[351 01-14 11:45:39.19 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[352 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[353 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[354 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[355 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[356 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[357 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[358 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[359 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[35a 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[35b 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[35c 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[35d 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[35e 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[35f 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[360 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[361 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[362 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[363 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[364 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[365 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[366 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[367 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[368 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[369 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[36a 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[36b 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[36c 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[36d 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are +[36f 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[370 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[36e 01-14 11:45:39.20 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +[371 01-14 11:45:39.22 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +[372 01-14 11:45:39.23 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[373 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[374 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[375 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[376 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[377 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +[378 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[379 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[37a 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[37b 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421595dc0), Data:(*common.BlockData)(0xc4219d02e0), Metadata:(*common.BlockMetadata)(0xc4219d0320)}, doMVCCValidation=true +[37c 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[37d 01-14 11:45:39.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [1] Transaction index [0] because, the transaction type is [CONFIG] +[37e 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x6b, 0x28, 0x9a, 0xc6, 0x29, 0x57, 0x67, 0x99, 0x80, 0xcd, 0x5a, 0xa4, 0xc6, 0x31, 0xbb, 0xad, 0x21, 0x5a, 0x5e, 0x1b, 0xfa, 0x80, 0xe7, 0x68, 0xf1, 0x60, 0x5b, 0xdd, 0x90, 0x2, 0x8c, 0xbd} txOffsets= txId= locPointer=offset=70, bytesLength=11913 ] -[37f 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index -[380 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index -[381 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25667], isChainEmpty=[false], lastBlockNumber=[1] -[382 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -[383 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[384 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[385 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[386 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -[387 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[388 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -[389 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[38a 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] -[38b 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[38c 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[38d 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[38e 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[38f 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[390 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[391 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[392 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[393 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4219fa060 -[394 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -[395 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[396 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[397 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} -[398 01-04 01:51:03.89 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[399 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[39a 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421b93000, header channel_header:"\010\001\032\006\010\204\221\266\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\214\322v\245\t\n\246\373\340\251\226P\354\r\216\200\220\251[\347:\323\225+" -[39b 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[39c 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[39d 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[39e 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[39f 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[3a0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[3a1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[3a2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[3a3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[3a4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[3a5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[3a6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[3a7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[3a8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[3a9 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[3aa 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[3ab 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3ac 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[3ad 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[3ae 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[3af 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[3b0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3b1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3b2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3b3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[3b4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3b5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3b6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3b7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3b8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[3b9 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[3ba 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[3bb 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[3bc 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[3bd 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[3be 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[3bf 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[3c0 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[3c1 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[3c2 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[3c3 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3c4 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3c5 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3c6 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3c7 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3c8 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3c9 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[3ca 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3cb 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3cc 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers -[3cd 01-04 01:51:03.90 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3ce 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3cf 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3d0 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3d1 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3d2 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3d3 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3d4 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3d5 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3d6 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3d7 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[3d8 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3d9 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3da 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3db 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[3dc 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[3dd 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[3de 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3df 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3e0 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3e1 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3e2 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3e3 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3e4 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel -[3e5 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos -[3e6 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[3e7 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[3e8 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[3e9 01-04 01:51:03.91 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[3ea 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} -[3eb 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3ec 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3ed 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3ee 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3ef 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3f0 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3f1 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3f2 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3f3 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos -[3f4 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[3f5 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3f6 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3f7 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos -[3f8 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[3f9 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[3fa 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[3fb 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[3fc 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[3fd 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos -[3fe 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[3ff 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[400 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[401 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[402 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[403 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[404 01-04 01:51:03.92 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[405 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[406 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[407 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[408 01-04 01:51:03.94 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[409 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel -[40a 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[40b 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[40c 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[40d 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc42158edc0), Data:(*common.BlockData)(0xc421c865c0), Metadata:(*common.BlockMetadata)(0xc421c86600)}, doMVCCValidation=true -[40e 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[40f 01-04 01:51:03.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] -[410 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x8b, 0x73, 0x62, 0xf8, 0xa2, 0xa6, 0xcb, 0xf, 0x2a, 0x4e, 0xc3, 0x3a, 0xf, 0x19, 0x6c, 0x27, 0x97, 0xa5, 0xbf, 0x5e, 0x9, 0x65, 0x6b, 0x60, 0x29, 0xce, 0xda, 0x37, 0xfb, 0x33, 0x6, 0x65} txOffsets= -txId= locPointer=offset=70, bytesLength=11972 +[37f 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx ID: [] to index +[380 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12004, bytesLength=11913] for tx number:[0] ID: [] to blockNumTranNum index +[381 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[25668], isChainEmpty=[false], lastBlockNumber=[1] +[382 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) +[383 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[384 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[385 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[386 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +[387 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[388 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +[389 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[38a 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [1] +[38b 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[38c 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[38d 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[38e 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[38f 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[390 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[391 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[392 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[393 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421c261b0 +[394 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +[395 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[396 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[397 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 685c3e542c5c7e71cc8ac51ff9728a4a798d38a5cb22c31b73b7dddaa87ffa02} +[398 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[399 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[39a 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421c32000, header channel_header:"\010\001\032\006\010\340\205\355\322\005\"\017businesschannel" signature_header:"\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbKgAwIBAgIQMFw5QhVfwkdvrB3+YfYfpzAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEwMzEzMDk1NVoXDTI4MDEwMTEzMDk1NVowWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAARickRgGTqouBaO+IVL9+W0c00Su7x16rX8IjNGjo6gZkUAYjpz\nMKmB1CRW3eoU2tUd6rIBMXj4MQFURE9WzOeto00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCAZHyahNb+pKoei0h4Iig28xXPbxCmN\nRvZNLa+1K8uNqjAKBggqhkjOPQQDAgNIADBFAiEAvTrI3By4MRp+3J1BWOkua8HH\n/4VwYF64jn2OLIlN//0CID69Sn8rsGnjxr4SjF4k73sHo0d3dWY9Xpn7MMGpD+vl\n-----END -----\n\022\030\265IC)Ii\223\201\301j\021Vy$\356\300\353\246on\024C\032\232" +[39b 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[39c 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[39d 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[39e 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[39f 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[3a0 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[3a1 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3a2 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3a3 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3a4 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP +[3a5 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP +[3a6 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers +[3a7 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[3a8 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[3a9 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[3aa 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[3ab 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[3ac 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[3ad 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer +[3ae 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg +[3af 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP +[3b0 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[3b1 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[3b2 01-14 11:45:39.26 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[3b3 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions +[3b4 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType +[3b5 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize +[3b6 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout +[3b7 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[3b8 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[3b9 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[3ba 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[3bb 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium +[3bc 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses +[3bd 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm +[3be 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure +[3bf 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[3c0 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[3c1 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[3c2 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[3c3 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[3c4 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[3c5 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[3c6 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3c7 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3c8 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3c9 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel +[3ca 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application +[3cb 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP +[3cc 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/AnchorPeers +[3cd 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP +[3ce 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3cf 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3d0 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3d1 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[3d2 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[3d3 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[3d4 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3d5 01-14 11:45:39.27 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3d6 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3d7 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3d8 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3d9 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3da 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3db 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3dc 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3dd 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[3de 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3df 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e0 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e1 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e2 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3e3 01-14 11:45:39.28 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e4 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig -> DEBU Beginning new config for channel businesschannel +[3e5 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues -> DEBU Initializing protos for *config.ChannelProtos +[3e6 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3e7 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3e8 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3e9 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup.proposeGroup.BeginValueProposals.Allocate.NewChannelConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3ea 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationConfig.NewStandardValues -> DEBU Initializing protos for *struct {} +[3eb 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3ec 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3ed 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3ee 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3ef 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3f0 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3f1 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3f2 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3f3 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.ApplicationOrgProtos +[3f4 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3f5 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3f6 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewApplicationOrgConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3f7 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues -> DEBU Initializing protos for *config.OrdererProtos +[3f8 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3f9 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3fa 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3fb 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3fc 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrdererConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3fd 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues -> DEBU Initializing protos for *config.OrganizationProtos +[3fe 01-14 11:45:39.29 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.processConfig.proposeGroup...proposeGroup.BeginValueProposals.Allocate.NewOrganizationConfig.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3ff 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[400 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[401 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[402 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[403 01-14 11:45:39.30 UTC] [github.com/hyperledger/fabric/common/config] commitBlock.Commit.Validate.Apply.Apply.prepareApply.processConfig.preCommit...preCommit.PreCommit.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[404 01-14 11:45:39.33 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[405 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[406 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[407 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[408 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.Commit.Validate.Apply.Apply.commitCallbacks.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[409 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU config transaction received for chain businesschannel +[40a 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[40b 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[40c 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[40d 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219dcb00), Data:(*common.BlockData)(0xc42186a880), Metadata:(*common.BlockMetadata)(0xc42186a8c0)}, doMVCCValidation=true +[40e 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[40f 01-14 11:45:39.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Skipping mvcc validation for Block [2] Transaction index [0] because, the transaction type is [CONFIG] +[410 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xb9, 0x70, 0xfc, 0x86, 0xfa, 0x16, 0xa, 0x76, 0xc0, 0x74, 0xfe, 0xf4, 0x31, 0x60, 0x81, 0x1, 0x3f, 0x85, 0x4f, 0x9c, 0xcf, 0xe9, 0xaf, 0x6b, 0xf7, 0x1a, 0xbf, 0x6b, 0x65, 0x32, 0x5c, 0xd7} txOffsets= +txId= locPointer=offset=70, bytesLength=11973 ] -[411 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx ID: [] to index -[412 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25737, bytesLength=11972] for tx number:[0] ID: [] to blockNumTranNum index -[413 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] -[414 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -[415 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[416 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[417 01-04 01:51:03.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[418 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -[419 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[41a 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -[41b 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[41c 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] -[41d 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[41e 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[41f 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[420 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[421 01-04 01:51:03.97 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[422 01-04 01:51:04.02 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer1.org1.example.com:7051, PKIid:[41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175] isn't responsive: rpc error: code = Internal desc = transport is closing -[423 01-04 01:51:04.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175]] -[424 01-04 01:51:04.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer1.org1.example.com:7051, InternalEndpoint: peer1.org1.example.com:7051, PKI-ID: [41 212 113 155 111 60 253 152 128 154 139 93 55 46 176 226 115 170 244 7 180 226 17 187 201 154 21 203 20 223 179 175], Metadata: [] -[425 01-04 01:51:04.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting -[426 01-04 01:51:05.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[427 01-04 01:51:05.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42155cf90 -[428 01-04 01:51:05.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[429 01-04 01:51:05.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[42a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[42b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[42c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[42d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42202a050, header 0xc42155d020 -[42e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[42f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -[430 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] -[431 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[432 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [546e9e81-9b46-40bf-8ab1-e3c2a821dfb7] -[433 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa channel id: businesschannel -[434 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa channel id: businesschannel version: 1.0.2 -[435 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa,syscc=true,proposal=0xc42202a050,canname=lscc:1.0.2 -[436 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[437 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[438 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[439 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]Inside sendExecuteMessage. Message TRANSACTION -[43a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[43b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[43c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]sendExecuteMsg trigger event TRANSACTION -[43d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message TRANSACTION -[43e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[43f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[440 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message TRANSACTION -[441 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Received message TRANSACTION from shim -[442 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[443 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [065ac20a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[444 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [065ac20a]Sending GET_STATE -[445 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message GET_STATE from shim -[446 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[447 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [065ac20a]Received GET_STATE, invoking get state from ledger -[448 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[449 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a] getting state for chaincode lscc, key mycc, channel businesschannel -[44a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[44b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]No state associated with key: mycc. Sending RESPONSE with an empty payload -[44c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [065ac20a]handleGetState serial send RESPONSE -[44d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Received message RESPONSE from shim -[44e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[44f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [065ac20a]before send -[451 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [065ac20a]GetState received payload RESPONSE -[450 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [065ac20a]after send -[452 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [065ac20a]Received RESPONSE, communicated (state:ready) -[453 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [065ac20a]Inside putstate -[454 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [065ac20a]Sending PUT_STATE -[455 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message PUT_STATE from shim -[456 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[458 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]state is ready -[459 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]Completed PUT_STATE. Sending RESPONSE -[45a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [065ac20a]enterBusyState trigger event RESPONSE -[457 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[45b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message RESPONSE -[45c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[45d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[45e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message RESPONSE -[45f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Received message RESPONSE from shim -[460 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[461 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [065ac20a]before send -[462 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [065ac20a]after send -[464 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [065ac20a]Received RESPONSE, communicated (state:ready) -[463 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [065ac20a]Received RESPONSE. Successfully updated state -[465 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Transaction completed. Sending COMPLETED -[466 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Move state message COMPLETED -[467 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[468 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]send state message COMPLETED -[469 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message COMPLETED from shim -[46a 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[46b 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa]HandleMessage- COMPLETED. Notify -[46c 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -[46d 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[46e 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa,syscc=false,proposal=0xc42202a050,canname=mycc:1.0 -[46f 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1818 bytes from file system -[470 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -[471 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode -[472 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[473 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) -[474 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[475 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: - CORE_CHAINCODE_ID_NAME=mycc:1.0 +[411 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx ID: [] to index +[412 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=25738, bytesLength=11973] for tx number:[0] ID: [] to blockNumTranNum index +[413 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[39461], isChainEmpty=[false], lastBlockNumber=[2] +[414 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) +[415 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[416 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[417 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[418 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +[419 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[41a 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +[41b 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[41c 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [2] +[41d 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[41e 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[41f 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[420 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[421 01-14 11:45:39.35 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[422 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[423 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421f5e4b0 +[424 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[425 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[426 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[427 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[428 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[429 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422135810, header 0xc421f5e4e0 +[42a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[42b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +[42c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] +[42d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[42e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [03bbbed3-1493-4684-aac4-9bf6055bbb87] +[42f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d channel id: businesschannel +[430 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d channel id: businesschannel version: 1.0.2 +[431 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d,syscc=true,proposal=0xc422135810,canname=lscc:1.0.2 +[432 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[433 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[434 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[435 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]Inside sendExecuteMessage. Message TRANSACTION +[436 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[437 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[438 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]sendExecuteMsg trigger event TRANSACTION +[439 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message TRANSACTION +[43a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[43b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[43c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message TRANSACTION +[43d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Received message TRANSACTION from shim +[43e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[43f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [df774408]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[440 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [df774408]Sending GET_STATE +[441 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message GET_STATE from shim +[442 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[443 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [df774408]Received GET_STATE, invoking get state from ledger +[444 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[445 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408] getting state for chaincode lscc, key exp02, channel businesschannel +[446 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[447 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]No state associated with key: exp02. Sending RESPONSE with an empty payload +[448 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [df774408]handleGetState serial send RESPONSE +[449 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Received message RESPONSE from shim +[44a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[44b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [df774408]before send +[44c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [df774408]after send +[44d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [df774408]Received RESPONSE, communicated (state:ready) +[44e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [df774408]GetState received payload RESPONSE +[44f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [df774408]Inside putstate +[450 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [df774408]Sending PUT_STATE +[451 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message PUT_STATE from shim +[452 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[453 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[454 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]state is ready +[455 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]Completed PUT_STATE. Sending RESPONSE +[456 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [df774408]enterBusyState trigger event RESPONSE +[457 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message RESPONSE +[458 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[459 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[45a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message RESPONSE +[45b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Received message RESPONSE from shim +[45c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[45d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [df774408]before send +[45e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [df774408]after send +[45f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [df774408]Received RESPONSE, communicated (state:ready) +[460 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [df774408]Received RESPONSE. Successfully updated state +[461 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Transaction completed. Sending COMPLETED +[462 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Move state message COMPLETED +[463 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[464 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]send state message COMPLETED +[465 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message COMPLETED from shim +[466 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[467 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d]HandleMessage- COMPLETED. Notify +[468 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +[469 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[46a 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d,syscc=false,proposal=0xc422135810,canname=exp02:1.0 +[46b 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 2248 bytes from file system +[46c 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode exp02:1.0 is being launched +[46d 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Executable is chaincode +[46e 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getArgsAndEnv -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] +[46f 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: exp02:1.0(networkid:dev,peerid:peer0.org1.example.com) +[470 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[471 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: + CORE_CHAINCODE_ID_NAME=exp02:1.0 CORE_PEER_TLS_ENABLED=true CORE_CHAINCODE_LOGGING_LEVEL=info CORE_CHAINCODE_LOGGING_SHIM=warning CORE_CHAINCODE_LOGGING_FORMAT=%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message} -[476 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock -[477 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock -[478 01-04 01:51:05.45 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 -[479 01-04 01:51:05.46 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) -[47a 01-04 01:51:05.46 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) -[47b 01-04 01:51:05.46 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) -[47c 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 -[47d 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default -[47e 01-04 01:51:05.46 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -[47f 01-04 01:51:05.46 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 -[480 01-04 01:51:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU +[472 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-exp02-1.0) lock +[473 01-14 11:45:41.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-exp02-1.0) lock +[474 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 +[475 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Stop container dev-peer0.org1.example.com-exp02-1.0(No such container: dev-peer0.org1.example.com-exp02-1.0) +[476 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Kill container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +[477 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.stopInternal -> DEBU Remove container dev-peer0.org1.example.com-exp02-1.0 (No such container: dev-peer0.org1.example.com-exp02-1.0) +[478 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 +[479 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: v102_default +[47a 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +[47b 01-14 11:45:41.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +[47c 01-14 11:45:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] do.do.Start.func1.GenerateDockerBuild.generateDockerfile -> DEBU FROM hyperledger/fabric-baseos:x86_64-0.3.2 ADD binpackage.tar /usr/local/bin -LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ +LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ org.hyperledger.fabric.chaincode.id.version="1.0" \ org.hyperledger.fabric.chaincode.type="GOLANG" \ org.hyperledger.fabric.version="1.0.2" \ @@ -1244,1230 +1240,1314 @@ LABEL org.hyperledger.fabric.chaincode.id.name="mycc" \ ENV CORE_CHAINCODE_BUILDLEVEL=1.0.2 ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt COPY peer.crt /etc/hyperledger/fabric/peer.crt -[481 01-04 01:51:05.47 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 -[482 01-04 01:51:25.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -[483 01-04 01:51:25.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -[484 01-04 01:51:25.61 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -[485 01-04 01:51:25.74 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -[486 01-04 01:51:26.23 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 -[487 01-04 01:51:26.23 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) -[488 01-04 01:51:26.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[489 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[48a 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[48b 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[48c 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode mycc:1.0 -[48d 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"mycc:1.0" , sending back REGISTERED -[48e 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[48f 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -[490 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -[491 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[492 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[493 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message READY -[494 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: READY in state established -[495 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [065ac20a]Entered state ready -[496 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -[497 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message READY -[498 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -[499 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -[49a 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -[49b 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[49c 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]Inside sendExecuteMessage. Message INIT -[49d 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[49e 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[49f 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]sendExecuteMsg trigger event INIT -[4a0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message INIT -[4a1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[4a2 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4a3 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message INIT -[4a4 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message PUT_STATE from shim -[4a5 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[4a6 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4a7 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]state is ready -[4a8 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]Completed PUT_STATE. Sending RESPONSE -[4a9 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [065ac20a]enterBusyState trigger event RESPONSE -[4aa 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message RESPONSE -[4ab 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[4ac 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4ad 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message RESPONSE -[4ae 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message PUT_STATE from shim -[4af 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[4b0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4b1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]state is ready -[4b2 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [065ac20a]Completed PUT_STATE. Sending RESPONSE -[4b3 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [065ac20a]enterBusyState trigger event RESPONSE -[4b4 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message RESPONSE -[4b5 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[4b6 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4b7 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message RESPONSE -[4b8 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message COMPLETED from shim -[4b9 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[4ba 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa]HandleMessage- COMPLETED. Notify -[4bb 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -[4bc 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -[4bd 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[4be 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[4bf 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [546e9e81-9b46-40bf-8ab1-e3c2a821dfb7] -[4c0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[4c1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa channel id: businesschannel chaincode id: name:"lscc" -[4c2 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[4c3 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa channel id: businesschannel version: 1.0.2 -[4c4 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa,syscc=true,proposal=0xc42202a050,canname=escc:1.0.2 -[4c5 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[4c6 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[4c7 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[4c8 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]Inside sendExecuteMessage. Message TRANSACTION -[4c9 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[4ca 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[4cb 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [065ac20a]sendExecuteMsg trigger event TRANSACTION -[4cc 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Move state message TRANSACTION -[4cd 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[4ce 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4cf 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]sending state message TRANSACTION -[4d0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Received message TRANSACTION from shim -[4d1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[4d2 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [065ac20a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[4d3 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[4d4 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[4d5 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Transaction completed. Sending COMPLETED -[4d6 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]Move state message COMPLETED -[4d7 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [065ac20a]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[4d8 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [065ac20a]send state message COMPLETED -[4d9 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [065ac20a]Received message COMPLETED from shim -[4da 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[4db 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa]HandleMessage- COMPLETED. Notify -[4dc 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -[4dd 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[4de 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[4df 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[4e0 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [546e9e81-9b46-40bf-8ab1-e3c2a821dfb7] -[4e1 01-04 01:51:26.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[4e2 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -[4e3 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[4e4 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[4e5 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[4e6 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ae5290 -[4e7 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -[4e8 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[4e9 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[4ea 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -[4eb 01-04 01:51:28.31 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[4ec 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[4ed 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[4ee 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421963500, header channel_header:"\010\003\032\014\010\211\221\266\322\005\020\300\344\250\325\001\"\017businesschannel*@065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\300\260\241\010\377 \005\335*QA\334\313\305\207\337\013\250\305\030\272\324\237H" -[4ef 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[4f0 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[4f1 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[4f2 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[4f3 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] -[4f4 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[4f5 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[4f6 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4959d2df-cad6-408e-9f89-41b0502faeb5] -[4f7 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=083fae01-a28d-4199-9e61-2027e6b92162,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[4f8 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa chaindID businesschannel -[4f9 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[4fa 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[4fb 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[4fc 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [083fae01]Inside sendExecuteMessage. Message TRANSACTION -[4fd 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[4fe 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [083fae01]sendExecuteMsg trigger event TRANSACTION -[4ff 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083fae01]Move state message TRANSACTION -[500 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083fae01]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[501 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[502 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083fae01]sending state message TRANSACTION -[503 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083fae01]Received message TRANSACTION from shim -[504 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [083fae01]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[505 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [083fae01]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[506 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[507 01-04 01:51:28.32 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[508 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[509 01-04 01:51:28.33 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}} -[50a 01-04 01:51:28.33 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}} -[50b 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[50c 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [42d831a5-14fa-435f-b0a5-1003d1f26b66] -[50d 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[50e 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [42d831a5-14fa-435f-b0a5-1003d1f26b66] -[50f 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -[510 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -[511 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[512 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083fae01]Transaction completed. Sending COMPLETED -[513 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083fae01]Move state message COMPLETED -[514 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [083fae01]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[515 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [083fae01]send state message COMPLETED -[516 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [083fae01]Received message COMPLETED from shim -[517 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083fae01]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[518 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [083fae01-a28d-4199-9e61-2027e6b92162]HandleMessage- COMPLETED. Notify -[519 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:083fae01-a28d-4199-9e61-2027e6b92162 -[51a 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[51b 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [4959d2df-cad6-408e-9f89-41b0502faeb5] -[51c 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[51d 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[51e 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4221a2000), Data:(*common.BlockData)(0xc421879dc0), Metadata:(*common.BlockMetadata)(0xc421879e00)}, doMVCCValidation=true -[51f 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[520 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -[521 01-04 01:51:28.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] marked as valid by state validator -[522 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x1, 0x89, 0x46, 0x2c, 0xf9, 0x7a, 0xc5, 0x26, 0xa0, 0x0, 0x75, 0xd, 0x2c, 0xe4, 0xad, 0x19, 0xe1, 0x78, 0x94, 0x3b, 0x7f, 0xa4, 0x2b, 0xe, 0x79, 0xfc, 0x32, 0xb3, 0x54, 0x7b, 0x83, 0x63} txOffsets= -txId=065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa locPointer=offset=70, bytesLength=3389 +[47d 01-14 11:45:41.11 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:x86_64-1.0.2 +[47e 01-14 11:45:59.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +[47f 01-14 11:45:59.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully +[480 01-14 11:45:59.98 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +[481 01-14 11:46:00.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +[482 01-14 11:46:00.56 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 +[483 01-14 11:46:00.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-exp02-1.0) +[484 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[485 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim +[486 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created +[487 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created +[488 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent.registerHandler -> DEBU registered handler complete for chaincode exp02:1.0 +[489 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +[48a 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup +[48b 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode exp02:1.0 launch seq completed +[48c 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY +[48d 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[48e 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[48f 01-14 11:46:00.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message READY +[490 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: READY in state established +[491 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [df774408]Entered state ready +[492 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +[493 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message READY +[494 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed +[495 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete +[496 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry +[497 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[498 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]Inside sendExecuteMessage. Message INIT +[499 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[49a 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[49b 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]sendExecuteMsg trigger event INIT +[49c 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message INIT +[49d 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: INIT in state ready +[49e 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[49f 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message INIT +[4a0 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message PUT_STATE from shim +[4a1 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[4a2 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4a3 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]state is ready +[4a4 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]Completed PUT_STATE. Sending RESPONSE +[4a5 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [df774408]enterBusyState trigger event RESPONSE +[4a6 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message RESPONSE +[4a7 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[4a8 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4a9 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message RESPONSE +[4aa 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message PUT_STATE from shim +[4ab 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[4ac 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4ad 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]state is ready +[4ae 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [df774408]Completed PUT_STATE. Sending RESPONSE +[4af 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [df774408]enterBusyState trigger event RESPONSE +[4b0 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message RESPONSE +[4b1 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[4b2 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4b3 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message RESPONSE +[4b4 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message COMPLETED from shim +[4b5 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[4b6 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d]HandleMessage- COMPLETED. Notify +[4b7 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +[4b8 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit +[4b9 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[4ba 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[4bb 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [03bbbed3-1493-4684-aac4-9bf6055bbb87] +[4bc 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[4bd 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d channel id: businesschannel chaincode id: name:"lscc" +[4be 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[4bf 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d channel id: businesschannel version: 1.0.2 +[4c0 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d,syscc=true,proposal=0xc422135810,canname=escc:1.0.2 +[4c1 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[4c2 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[4c3 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[4c4 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]Inside sendExecuteMessage. Message TRANSACTION +[4c5 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[4c6 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[4c7 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [df774408]sendExecuteMsg trigger event TRANSACTION +[4c8 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Move state message TRANSACTION +[4c9 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[4ca 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4cb 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]sending state message TRANSACTION +[4cc 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Received message TRANSACTION from shim +[4cd 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[4ce 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [df774408]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[4cf 01-14 11:46:00.60 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[4d0 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[4d1 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Transaction completed. Sending COMPLETED +[4d2 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]Move state message COMPLETED +[4d3 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [df774408]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[4d4 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [df774408]send state message COMPLETED +[4d5 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [df774408]Received message COMPLETED from shim +[4d6 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[4d7 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d]HandleMessage- COMPLETED. Notify +[4d8 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +[4d9 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[4da 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[4db 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[4dc 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [03bbbed3-1493-4684-aac4-9bf6055bbb87] +[4dd 01-14 11:46:00.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[4de 01-14 11:46:02.64 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +[4df 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +[4e0 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[4e1 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[4e2 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[4e3 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421791920 +[4e4 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +[4e5 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[4e6 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[4e7 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[4e8 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[4e9 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[4ea 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421c45500, header channel_header:"\010\003\032\013\010\345\205\355\322\005\020\274\332\251-\"\017businesschannel*@df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\366\371\230\375\030\262\020)\315\207\344\263y\366\323$5=s\372\032\007)$" +[4eb 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[4ec 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[4ed 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[4ee 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[4ef 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] +[4f0 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[4f1 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[4f2 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [cc9b60df-823a-4a76-b996-ae1133dd827d] +[4f3 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=0f1aa104-a129-4edc-8308-a095fdbb096f,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[4f4 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d chaindID businesschannel +[4f5 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[4f6 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[4f7 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[4f8 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0f1aa104]Inside sendExecuteMessage. Message TRANSACTION +[4f9 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[4fa 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0f1aa104]sendExecuteMsg trigger event TRANSACTION +[4fb 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0f1aa104]Move state message TRANSACTION +[4fc 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0f1aa104]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[4fd 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[4fe 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0f1aa104]sending state message TRANSACTION +[4ff 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0f1aa104]Received message TRANSACTION from shim +[500 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0f1aa104]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[501 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0f1aa104]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[502 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[503 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[504 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[505 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[506 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[507 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +[508 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[509 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f534177d-e4e2-4fd1-b7ef-ca9c1243d12c] +[50a 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[50b 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f534177d-e4e2-4fd1-b7ef-ca9c1243d12c] +[50c 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +[50d 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +[50e 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[50f 01-14 11:46:02.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0f1aa104]Transaction completed. Sending COMPLETED +[510 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0f1aa104]Move state message COMPLETED +[511 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0f1aa104]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[512 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0f1aa104]send state message COMPLETED +[513 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0f1aa104]Received message COMPLETED from shim +[514 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0f1aa104]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[515 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0f1aa104-a129-4edc-8308-a095fdbb096f]HandleMessage- COMPLETED. Notify +[516 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0f1aa104-a129-4edc-8308-a095fdbb096f +[517 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[518 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [cc9b60df-823a-4a76-b996-ae1133dd827d] +[519 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[51a 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[51b 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421b9f340), Data:(*common.BlockData)(0xc421f10f80), Metadata:(*common.BlockMetadata)(0xc421f10fc0)}, doMVCCValidation=true +[51c 01-14 11:46:02.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[51d 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[51e 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] marked as valid by state validator +[51f 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xba, 0x24, 0x96, 0x98, 0xea, 0x83, 0xc, 0x88, 0x92, 0x2d, 0x8d, 0xe0, 0x99, 0x42, 0x2d, 0x3a, 0xe0, 0x84, 0xec, 0x46, 0x3c, 0xa6, 0xc, 0x6, 0xc2, 0x1e, 0xe1, 0x1a, 0x22, 0xb8, 0xa2, 0x6b} txOffsets= +txId=df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d locPointer=offset=70, bytesLength=3394 ] -[523 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to index -[524 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3389] for tx number:[0] ID: [065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa] to blockNumTranNum index -[525 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44672], isChainEmpty=[false], lastBlockNumber=[3] -[526 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -[527 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[528 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[529 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -[52a 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -[52b 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x6d, 0x79, 0x63, 0x63}] -[52c 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[52d 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -[52e 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -[52f 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[530 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 065ac20a44cf9266dafa20aaf153b0c88423c14d6a16f96531bb64f10421d7aa -[531 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] -[532 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[533 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[534 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[535 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[536 01-04 01:51:28.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[537 01-04 01:51:47.85 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -[538 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -[539 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[53a 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[53b 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[53c 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424df1470 -[53d 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -[53e 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[53f 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[540 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} -[541 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[542 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[543 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421bc3500, header channel_header:"\010\003\032\014\010\236\221\266\322\005\020\330\210\347\332\001\"\017businesschannel*@f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030Iw\375G\244-\363a\323\312\014\252A\233\200\203\364\330\026\203\214\337\230<" -[544 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[545 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[546 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[547 01-04 01:51:47.86 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[548 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] -[549 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[54a 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[54b 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [19efde37-5466-488b-946f-5607002abcc2] -[54c 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=235b7aab-023d-44d3-b1e7-8132a86c7d5d,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[54d 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 chaindID businesschannel -[54e 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[54f 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[550 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[551 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [235b7aab]Inside sendExecuteMessage. Message TRANSACTION -[552 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[553 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [235b7aab]sendExecuteMsg trigger event TRANSACTION -[554 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [235b7aab]Move state message TRANSACTION -[555 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [235b7aab]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[556 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[557 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [235b7aab]sending state message TRANSACTION -[558 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [235b7aab]Received message TRANSACTION from shim -[559 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [235b7aab]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[55a 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [235b7aab]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[55b 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[55c 01-04 01:51:47.90 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[55d 01-04 01:51:47.91 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[55e 01-04 01:51:47.91 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}} -[55f 01-04 01:51:47.92 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}} -[560 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[561 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f2907564-5d65-483d-9b12-279905d9ff29] -[562 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[563 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [f2907564-5d65-483d-9b12-279905d9ff29] -[564 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -[565 01-04 01:51:47.92 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} -[566 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode mycc is already instantiated -[567 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [235b7aab]Transaction completed. Sending COMPLETED -[568 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [235b7aab]Move state message COMPLETED -[569 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [235b7aab]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[56a 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [235b7aab]send state message COMPLETED -[56b 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [235b7aab]Received message COMPLETED from shim -[56c 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [235b7aab]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[56d 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [235b7aab-023d-44d3-b1e7-8132a86c7d5d]HandleMessage- COMPLETED. Notify -[56e 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:235b7aab-023d-44d3-b1e7-8132a86c7d5d -[56f 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[570 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917, error Chaincode mycc is already instantiated -[571 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [19efde37-5466-488b-946f-5607002abcc2] -[572 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 returned error Chaincode mycc is already instantiated -[573 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[574 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[575 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc424aa6cc0), Data:(*common.BlockData)(0xc4219d6260), Metadata:(*common.BlockMetadata)(0xc4219d62a0)}, doMVCCValidation=true -[576 01-04 01:51:47.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[577 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] -[578 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xce, 0x54, 0x20, 0x1a, 0xf4, 0x6a, 0xac, 0x8f, 0xbc, 0x59, 0x8, 0xbf, 0xd7, 0xbd, 0x23, 0x20, 0x17, 0xe6, 0x36, 0xd, 0xbe, 0xfa, 0x91, 0x3, 0x38, 0x61, 0x2e, 0xf1, 0x4, 0x9f, 0x6e, 0xa2} txOffsets= -txId=f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 locPointer=offset=70, bytesLength=3388 +[520 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to index +[521 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=39531, bytesLength=3394] for tx number:[0] ID: [df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d] to blockNumTranNum index +[522 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[44676], isChainEmpty=[false], lastBlockNumber=[3] +[523 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) +[524 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[525 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[526 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[527 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[528 01-14 11:46:02.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +[529 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[52a 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +[52b 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +[52c 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[52d 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: df774408b83efa4feb7d4a94e9050255ea4c5efe34c5e80b52fa0ac2bfadca5d +[52e 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [3] +[52f 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[530 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[531 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[532 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[533 01-14 11:46:02.70 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[534 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +[535 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +[536 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[537 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[538 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[539 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421ffc360 +[53a 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +[53b 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[53c 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[53d 01-14 11:46:20.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +[53e 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[53f 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[540 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421f3b500, header channel_header:"\010\003\032\014\010\370\205\355\322\005\020\240\323\236\361\002\"\017businesschannel*@73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee:\010\022\006\022\004lscc" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\030\033\372\211\013\300\307ci\202\223\r%g\247&# P\372\234\357\202\307\222" +[541 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[542 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[543 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[544 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[545 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] +[546 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[547 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[548 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [64d8c4d5-046a-4296-a4bf-82e38277468a] +[549 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=a6bff49a-3678-4c1c-8248-045119d5c177,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[54a 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee chaindID businesschannel +[54b 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[54c 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[54d 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[54e 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a6bff49a]Inside sendExecuteMessage. Message TRANSACTION +[54f 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[550 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [a6bff49a]sendExecuteMsg trigger event TRANSACTION +[551 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6bff49a]Move state message TRANSACTION +[552 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6bff49a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[553 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[554 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6bff49a]sending state message TRANSACTION +[555 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6bff49a]Received message TRANSACTION from shim +[556 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6bff49a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[557 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [a6bff49a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[558 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[559 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[55a 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC +[55b 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[55c 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +[55d 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace exp02 +[55e 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc +[55f 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [3ddf7dd3-0702-453e-bcd0-74474986ad38] +[560 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[561 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [3ddf7dd3-0702-453e-bcd0-74474986ad38] +[562 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +[563 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x953df0)} +[564 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +[565 01-14 11:46:20.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6bff49a]Transaction completed. Sending COMPLETED +[566 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6bff49a]Move state message COMPLETED +[567 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a6bff49a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[568 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a6bff49a]send state message COMPLETED +[569 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a6bff49a]Received message COMPLETED from shim +[56a 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6bff49a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[56b 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [a6bff49a-3678-4c1c-8248-045119d5c177]HandleMessage- COMPLETED. Notify +[56c 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:a6bff49a-3678-4c1c-8248-045119d5c177 +[56d 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[56e 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> ERRO VSCC check failed for transaction txid=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee, error Chaincode exp02 is already instantiated +[56f 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [64d8c4d5-046a-4296-a4bf-82e38277468a] +[570 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> ERRO VSCCValidateTx for transaction txId = 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee returned error Chaincode exp02 is already instantiated +[571 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[572 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[573 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc4219ddac0), Data:(*common.BlockData)(0xc422244ba0), Metadata:(*common.BlockMetadata)(0xc422244be0)}, doMVCCValidation=true +[574 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[575 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> WARN Block [4] Transaction index [0] marked as invalid by committer. Reason code [10] +[576 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x3e, 0xa5, 0xb9, 0x9c, 0xb8, 0xc5, 0x29, 0x6f, 0xda, 0xd3, 0xfd, 0xc3, 0x49, 0x31, 0x1d, 0xc8, 0xf5, 0x6d, 0xce, 0x76, 0x5e, 0x7f, 0x6e, 0x5c, 0xf0, 0x98, 0xb6, 0x7b, 0x85, 0xb8, 0x9, 0x2b} txOffsets= +txId=73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee locPointer=offset=70, bytesLength=3395 ] -[579 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to index -[57a 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44742, bytesLength=3388] for tx number:[0] ID: [f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917] to blockNumTranNum index -[57b 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49881], isChainEmpty=[false], lastBlockNumber=[4] -[57c 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) -[57d 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[57e 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[57f 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[580 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -[581 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -[582 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -[583 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[584 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: f30b1002f9528f1cd3a9930b13255be1e796c10467673b701c7117e0dc6c3917 -[585 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] -[586 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[587 01-04 01:51:47.94 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[588 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[589 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[58a 01-04 01:51:47.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[58b 01-04 01:52:07.24 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[58c 01-04 01:52:07.24 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220b3770 -[58d 01-04 01:52:07.24 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[58e 01-04 01:52:07.24 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[58f 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[590 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[591 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[592 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421d66550, header 0xc4220b37a0 -[593 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -[594 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -[595 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] -[596 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[597 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [a5221f0a-23c9-42a8-99f2-62837b6b037a] -[598 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec channel id: businesschannel -[599 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec,syscc=true,proposal=0xc421d66550,canname=lscc:1.0.2 -[59a 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[59b 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[59c 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[59d 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]Inside sendExecuteMessage. Message TRANSACTION -[59e 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[59f 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5a0 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]sendExecuteMsg trigger event TRANSACTION -[5a1 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message TRANSACTION -[5a2 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[5a3 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5a4 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message TRANSACTION -[5a5 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Received message TRANSACTION from shim -[5a6 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[5a7 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7098cf0b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[5a8 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7098cf0b]Sending GET_STATE -[5a9 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message GET_STATE from shim -[5aa 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5ab 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7098cf0b]Received GET_STATE, invoking get state from ledger -[5ac 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5ad 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b] getting state for chaincode lscc, key mycc, channel businesschannel -[5ae 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[5af 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Got state. Sending RESPONSE -[5b0 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]handleGetState serial send RESPONSE -[5b1 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Received message RESPONSE from shim -[5b2 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5b3 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7098cf0b]before send -[5b4 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [7098cf0b]after send -[5b5 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [7098cf0b]Received RESPONSE, communicated (state:ready) -[5b6 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7098cf0b]GetState received payload RESPONSE -[5b7 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Transaction completed. Sending COMPLETED -[5b8 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Move state message COMPLETED -[5b9 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[5ba 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]send state message COMPLETED -[5bb 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message COMPLETED from shim -[5bc 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5bd 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec]HandleMessage- COMPLETED. Notify -[5be 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -[5bf 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5c0 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[5c1 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec channel id: businesschannel version: 1.0 -[5c2 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec,syscc=false,proposal=0xc421d66550,canname=mycc:1.0 -[5c3 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[5c4 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[5c5 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[5c6 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]Inside sendExecuteMessage. Message TRANSACTION -[5c7 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[5c8 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5c9 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]sendExecuteMsg trigger event TRANSACTION -[5ca 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message TRANSACTION -[5cb 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[5cc 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5cd 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message TRANSACTION -[5ce 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message GET_STATE from shim -[5cf 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5d0 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7098cf0b]Received GET_STATE, invoking get state from ledger -[5d1 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5d2 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b] getting state for chaincode mycc, key a, channel businesschannel -[5d3 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -[5d4 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Got state. Sending RESPONSE -[5d5 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]handleGetState serial send RESPONSE -[5d6 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message GET_STATE from shim -[5d7 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5d8 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [7098cf0b]Received GET_STATE, invoking get state from ledger -[5d9 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5da 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b] getting state for chaincode mycc, key b, channel businesschannel -[5db 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=b -[5dc 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Got state. Sending RESPONSE -[5dd 01-04 01:52:07.25 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]handleGetState serial send RESPONSE -[5de 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message PUT_STATE from shim -[5df 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5e0 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5e1 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]state is ready -[5e2 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Completed PUT_STATE. Sending RESPONSE -[5e3 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]enterBusyState trigger event RESPONSE -[5e4 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message RESPONSE -[5e5 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5e6 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5e7 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message RESPONSE -[5e8 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message PUT_STATE from shim -[5e9 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5ea 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5eb 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]state is ready -[5ec 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7098cf0b]Completed PUT_STATE. Sending RESPONSE -[5ed 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [7098cf0b]enterBusyState trigger event RESPONSE -[5ee 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message RESPONSE -[5ef 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5f0 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5f1 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message RESPONSE -[5f2 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message COMPLETED from shim -[5f3 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5f4 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec]HandleMessage- COMPLETED. Notify -[5f5 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -[5f6 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5f7 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[5f8 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[5f9 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [a5221f0a-23c9-42a8-99f2-62837b6b037a] -[5fa 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[5fb 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec channel id: businesschannel chaincode id: name:"mycc" -[5fc 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -[5fd 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec channel id: businesschannel version: 1.0.2 -[5fe 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec,syscc=true,proposal=0xc421d66550,canname=escc:1.0.2 -[5ff 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[600 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[601 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[602 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]Inside sendExecuteMessage. Message TRANSACTION -[603 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[604 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[605 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7098cf0b]sendExecuteMsg trigger event TRANSACTION -[606 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Move state message TRANSACTION -[607 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[608 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[609 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]sending state message TRANSACTION -[60a 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Received message TRANSACTION from shim -[60b 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[60c 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7098cf0b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[60d 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[60e 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[60f 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Transaction completed. Sending COMPLETED -[610 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]Move state message COMPLETED -[611 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7098cf0b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[612 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7098cf0b]send state message COMPLETED -[613 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7098cf0b]Received message COMPLETED from shim -[614 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[615 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec]HandleMessage- COMPLETED. Notify -[616 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -[617 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[618 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[619 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[61a 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a5221f0a-23c9-42a8-99f2-62837b6b037a] -[61b 01-04 01:52:07.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[61c 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -[61d 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -[61e 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block -[61f 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation -[620 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[621 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217d2db0 -[622 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -[623 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[624 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[625 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[626 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[627 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[628 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42232e800, header channel_header:"\010\003\032\013\010\307\221\266\322\005\020\264\337\316v\"\017businesschannel*@7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec:\010\022\006\022\004mycc" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030{w\014f\240N\352\256#\230\304h\200\3027\247\366X\337\3144\234h\311" -[629 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[62a 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[62b 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[62c 01-04 01:52:09.28 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel -[62d 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] -[62e 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate -[62f 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [678456a4-06ce-4ad7-910a-96b6407ad48e] -[630 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[631 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [678456a4-06ce-4ad7-910a-96b6407ad48e] -[632 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[633 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [db9c005f-9318-4785-8c1d-e71ade6c3441] -[634 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=857be128-025e-43df-a8b1-11300b6f7a7e,syscc=true,proposal=0x0,canname=vscc:1.0.2 -[635 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec chaindID businesschannel -[636 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 -[637 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[638 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 -[639 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [857be128]Inside sendExecuteMessage. Message TRANSACTION -[63a 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[63b 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [857be128]sendExecuteMsg trigger event TRANSACTION -[63c 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [857be128]Move state message TRANSACTION -[63d 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [857be128]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[63e 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[63f 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [857be128]sending state message TRANSACTION -[640 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [857be128]Received message TRANSACTION from shim -[641 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [857be128]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[642 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [857be128]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[643 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[644 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[645 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[646 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [857be128]Transaction completed. Sending COMPLETED -[647 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [857be128]Move state message COMPLETED -[648 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [857be128]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[649 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [857be128]send state message COMPLETED -[64a 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [857be128]Received message COMPLETED from shim -[64b 01-04 01:52:09.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [857be128]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[64c 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [857be128-025e-43df-a8b1-11300b6f7a7e]HandleMessage- COMPLETED. Notify -[64d 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:857be128-025e-43df-a8b1-11300b6f7a7e -[64e 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[64f 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [db9c005f-9318-4785-8c1d-e71ade6c3441] -[650 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation -[651 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[652 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc424aa71c0), Data:(*common.BlockData)(0xc4217eb9a0), Metadata:(*common.BlockMetadata)(0xc4217eb9e0)}, doMVCCValidation=true -[653 01-04 01:52:09.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions -[654 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=mycc -[655 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=a -[656 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=mycc, key=b -[657 01-04 01:52:09.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] marked as valid by state validator -[658 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xe8, 0x99, 0x74, 0xde, 0xf0, 0x6e, 0x31, 0xc2, 0xbb, 0xbe, 0x2a, 0x50, 0x27, 0x3f, 0xfb, 0x5c, 0x63, 0xb0, 0xc1, 0x65, 0xf4, 0x14, 0xd3, 0x85, 0x3a, 0xd3, 0x86, 0x68, 0x6d, 0x6e, 0x6, 0x7e} txOffsets= -txId=7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec locPointer=offset=70, bytesLength=2849 +[577 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to index +[578 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=44746, bytesLength=3395] for tx number:[0] ID: [73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee] to blockNumTranNum index +[579 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[49893], isChainEmpty=[false], lastBlockNumber=[4] +[57a 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [4] with 1 transaction(s) +[57b 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[57c 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[57d 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[57e 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +[57f 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +[580 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +[581 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[582 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 73c65c2437c2900498095126fc2223a3e69f210779a77db626190ad0027be0ee +[583 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [4] +[584 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[585 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[586 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[587 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[588 01-14 11:46:20.38 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[589 01-14 11:46:38.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[58a 01-14 11:46:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422717050 +[58b 01-14 11:46:38.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[58c 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[58d 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[58e 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[58f 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[590 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42245de00, header 0xc422717080 +[591 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[592 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +[593 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] +[594 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[595 01-14 11:46:38.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [0c14dfd7-27c2-42b7-98cc-a6087dc9f74d] +[596 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 channel id: businesschannel +[597 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38,syscc=true,proposal=0xc42245de00,canname=lscc:1.0.2 +[598 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[599 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +[59a 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[59b 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]Inside sendExecuteMessage. Message TRANSACTION +[59c 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[59d 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[59e 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]sendExecuteMsg trigger event TRANSACTION +[59f 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message TRANSACTION +[5a0 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5a1 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5a2 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message TRANSACTION +[5a3 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Received message TRANSACTION from shim +[5a4 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[5a5 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0aa15551]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[5a6 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0aa15551]Sending GET_STATE +[5a7 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message GET_STATE from shim +[5a8 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5a9 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0aa15551]Received GET_STATE, invoking get state from ledger +[5aa 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5ab 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551] getting state for chaincode lscc, key exp02, channel businesschannel +[5ac 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[5ad 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Got state. Sending RESPONSE +[5ae 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]handleGetState serial send RESPONSE +[5af 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Received message RESPONSE from shim +[5b0 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[5b1 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0aa15551]before send +[5b2 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [0aa15551]after send +[5b3 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [0aa15551]Received RESPONSE, communicated (state:ready) +[5b4 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0aa15551]GetState received payload RESPONSE +[5b5 01-14 11:46:38.94 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Transaction completed. Sending COMPLETED +[5b6 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Move state message COMPLETED +[5b7 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[5b8 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]send state message COMPLETED +[5b9 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message COMPLETED from shim +[5ba 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5bb 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38]HandleMessage- COMPLETED. Notify +[5bc 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +[5bd 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5be 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[5bf 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 channel id: businesschannel version: 1.0 +[5c0 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38,syscc=false,proposal=0xc42245de00,canname=exp02:1.0 +[5c1 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +[5c2 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5c3 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[5c4 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]Inside sendExecuteMessage. Message TRANSACTION +[5c5 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[5c6 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[5c7 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]sendExecuteMsg trigger event TRANSACTION +[5c8 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message TRANSACTION +[5c9 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[5ca 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5cb 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message TRANSACTION +[5cc 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message GET_STATE from shim +[5cd 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5ce 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0aa15551]Received GET_STATE, invoking get state from ledger +[5cf 01-14 11:46:38.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5d0 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551] getting state for chaincode exp02, key a, channel businesschannel +[5d1 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +[5d2 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Got state. Sending RESPONSE +[5d3 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]handleGetState serial send RESPONSE +[5d4 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message GET_STATE from shim +[5d5 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[5d6 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [0aa15551]Received GET_STATE, invoking get state from ledger +[5d7 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5d8 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551] getting state for chaincode exp02, key b, channel businesschannel +[5d9 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=b +[5da 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Got state. Sending RESPONSE +[5db 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]handleGetState serial send RESPONSE +[5dc 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message PUT_STATE from shim +[5dd 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[5de 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5df 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]state is ready +[5e0 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Completed PUT_STATE. Sending RESPONSE +[5e1 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]enterBusyState trigger event RESPONSE +[5e2 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message RESPONSE +[5e3 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[5e4 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5e5 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message RESPONSE +[5e6 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message PUT_STATE from shim +[5e7 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready +[5e8 01-14 11:46:38.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5e9 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]state is ready +[5ea 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0aa15551]Completed PUT_STATE. Sending RESPONSE +[5eb 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [0aa15551]enterBusyState trigger event RESPONSE +[5ec 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message RESPONSE +[5ed 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready +[5ee 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[5ef 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message RESPONSE +[5f0 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message COMPLETED from shim +[5f1 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[5f2 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38]HandleMessage- COMPLETED. Notify +[5f3 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +[5f4 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[5f5 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[5f6 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[5f7 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [0c14dfd7-27c2-42b7-98cc-a6087dc9f74d] +[5f8 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[5f9 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 channel id: businesschannel chaincode id: name:"exp02" +[5fa 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +[5fb 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 channel id: businesschannel version: 1.0.2 +[5fc 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38,syscc=true,proposal=0xc42245de00,canname=escc:1.0.2 +[5fd 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[5fe 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[5ff 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[600 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]Inside sendExecuteMessage. Message TRANSACTION +[601 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[602 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[603 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0aa15551]sendExecuteMsg trigger event TRANSACTION +[604 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Move state message TRANSACTION +[605 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[606 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[607 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]sending state message TRANSACTION +[608 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Received message TRANSACTION from shim +[609 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[60a 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0aa15551]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[60b 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[60c 01-14 11:46:38.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[60d 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Transaction completed. Sending COMPLETED +[60e 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]Move state message COMPLETED +[60f 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0aa15551]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[610 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0aa15551]send state message COMPLETED +[611 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0aa15551]Received message COMPLETED from shim +[612 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa15551]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[613 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38]HandleMessage- COMPLETED. Notify +[614 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +[615 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[616 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[617 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[618 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [0c14dfd7-27c2-42b7-98cc-a6087dc9f74d] +[619 01-14 11:46:38.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[61a 01-14 11:46:41.03 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +[61b 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +[61c 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[61d 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[61e 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[61f 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42215b5f0 +[620 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +[621 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[622 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[623 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[624 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[625 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[626 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42160b000, header channel_header:"\010\003\032\014\010\236\206\355\322\005\020\264\214\215\272\003\"\017businesschannel*@0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org1MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAP+Z88k7njsHp9l3kiWmd9swCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU0WhcNMjgwMTAxMTMwOTU0\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABD40IiVrRtcNkC4EGP7DXUx7ZEzEG2DB\nxnYespKCV1j0QYoRr2RSeoVuDV1RHSQw/UrOtLfnMsaMSyU8UpGxBpWjTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAICKbVYgqqe6i\nftb7gBsxJR1OGLlCz8tFy6SVGDhUCdARMAoGCCqGSM49BAMCA0gAMEUCIQD1TkLY\ngfRkLgKHhVLmKGnVRf0iohoYuAT5bxUjrfVGwwIgNgN5L0HfIss0SGfDZ8ZEJ2U+\nxHTBvxfK6mAzmUitFmY=\n-----END -----\n\022\030\277\023M3\225\004\006\376b\342\266\367\260z\335\033\327\370>\233\034\272\307\365" +[627 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[628 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[629 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[62a 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[62b 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] +[62c 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[62d 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [f9100b90-5d46-4137-9576-fe71cfca9a2c] +[62e 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[62f 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [f9100b90-5d46-4137-9576-fe71cfca9a2c] +[630 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[631 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [71d4df85-8edb-4bc3-9692-f42130d2837e] +[632 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=4bd4d0a0-7794-435d-bb60-634d52ea89d9,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[633 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 chaindID businesschannel +[634 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[635 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[636 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[637 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4bd4d0a0]Inside sendExecuteMessage. Message TRANSACTION +[638 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[639 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4bd4d0a0]sendExecuteMsg trigger event TRANSACTION +[63a 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bd4d0a0]Move state message TRANSACTION +[63b 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bd4d0a0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[63c 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[63d 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bd4d0a0]sending state message TRANSACTION +[63e 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bd4d0a0]Received message TRANSACTION from shim +[63f 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bd4d0a0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[640 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4bd4d0a0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[641 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[642 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[643 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[644 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bd4d0a0]Transaction completed. Sending COMPLETED +[645 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bd4d0a0]Move state message COMPLETED +[646 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4bd4d0a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[647 01-14 11:46:41.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4bd4d0a0]send state message COMPLETED +[648 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4bd4d0a0]Received message COMPLETED from shim +[649 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bd4d0a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[64a 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4bd4d0a0-7794-435d-bb60-634d52ea89d9]HandleMessage- COMPLETED. Notify +[64b 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4bd4d0a0-7794-435d-bb60-634d52ea89d9 +[64c 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[64d 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [71d4df85-8edb-4bc3-9692-f42130d2837e] +[64e 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[64f 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[650 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc422194080), Data:(*common.BlockData)(0xc42218b120), Metadata:(*common.BlockMetadata)(0xc42218b160)}, doMVCCValidation=true +[651 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[652 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +[653 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +[654 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[655 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] marked as valid by state validator +[656 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xcd, 0x59, 0x35, 0x43, 0xb3, 0xfa, 0x14, 0xcb, 0x59, 0x18, 0x46, 0x89, 0x5f, 0xd3, 0xa0, 0x0, 0x87, 0xb9, 0x64, 0x3c, 0xe6, 0xb3, 0x98, 0x4d, 0x7a, 0xc5, 0x75, 0xe5, 0xbd, 0x79, 0xfa, 0x45} txOffsets= +txId=0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 locPointer=offset=70, bytesLength=2855 ] -[659 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to index -[65a 01-04 01:52:09.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49951, bytesLength=2849] for tx number:[0] ID: [7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec] to blockNumTranNum index -[65b 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54551], isChainEmpty=[false], lastBlockNumber=[5] -[65c 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) -[65d 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database -[65e 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database -[65f 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x61}] -[660 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x6d, 0x79, 0x63, 0x63, 0x0, 0x62}] -[661 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database -[662 01-04 01:52:09.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -[663 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -[664 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry -[665 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 7098cf0b2d57c3d415e1ac7f589a12813c0deb935edf1229f1b3ac949f4c2aec -[666 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] -[667 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry -[668 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 -[669 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully -[66a 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit -[66b 01-04 01:52:09.34 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit -[66c 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[66d 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221c1890 -[66e 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[66f 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[670 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[671 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[672 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[673 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4217843c0, header 0xc4221c18c0 -[674 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"mycc" -[675 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc -[676 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc] -[677 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[678 01-04 01:52:24.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [f5f40dba-2574-4125-bc5b-1ff1c28c5166] -[679 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc channel id: businesschannel -[67a 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc,syscc=true,proposal=0xc4217843c0,canname=lscc:1.0.2 -[67b 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[67c 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[67d 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[67e 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]Inside sendExecuteMessage. Message TRANSACTION -[67f 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[680 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[681 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]sendExecuteMsg trigger event TRANSACTION -[682 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Move state message TRANSACTION -[683 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[684 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[685 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]sending state message TRANSACTION -[686 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Received message TRANSACTION from shim -[687 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[688 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ae249c29]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[689 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ae249c29]Sending GET_STATE -[68a 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message GET_STATE from shim -[68b 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[68c 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ae249c29]Received GET_STATE, invoking get state from ledger -[68d 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[68e 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae249c29] getting state for chaincode lscc, key mycc, channel businesschannel -[68f 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[690 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae249c29]Got state. Sending RESPONSE -[691 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae249c29]handleGetState serial send RESPONSE -[692 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Received message RESPONSE from shim -[693 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[694 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ae249c29]before send -[696 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [ae249c29]GetState received payload RESPONSE -[695 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [ae249c29]after send -[698 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Transaction completed. Sending COMPLETED -[697 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [ae249c29]Received RESPONSE, communicated (state:ready) -[699 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Move state message COMPLETED -[69a 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[69b 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]send state message COMPLETED -[69c 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message COMPLETED from shim -[69d 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[69e 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc]HandleMessage- COMPLETED. Notify -[69f 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc -[6a0 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6a1 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[6a2 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc channel id: businesschannel version: 1.0 -[6a3 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc,syscc=false,proposal=0xc4217843c0,canname=mycc:1.0 -[6a4 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[6a5 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6a6 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[6a7 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]Inside sendExecuteMessage. Message TRANSACTION -[6a8 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6a9 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6aa 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]sendExecuteMsg trigger event TRANSACTION -[6ab 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Move state message TRANSACTION -[6ac 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6ad 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6ae 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]sending state message TRANSACTION -[6af 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message GET_STATE from shim -[6b0 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[6b1 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [ae249c29]Received GET_STATE, invoking get state from ledger -[6b2 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6b3 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae249c29] getting state for chaincode mycc, key a, channel businesschannel -[6b4 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=mycc, key=a -[6b5 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [ae249c29]Got state. Sending RESPONSE -[6b6 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [ae249c29]handleGetState serial send RESPONSE -[6b7 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message COMPLETED from shim -[6b8 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6b9 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc]HandleMessage- COMPLETED. Notify -[6ba 01-04 01:52:24.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc -[6bb 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6bc 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[6bd 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[6be 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [f5f40dba-2574-4125-bc5b-1ff1c28c5166] -[6bf 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[6c0 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc channel id: businesschannel chaincode id: name:"mycc" -[6c1 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"mycc" is escc -[6c2 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc channel id: businesschannel version: 1.0.2 -[6c3 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc,syscc=true,proposal=0xc4217843c0,canname=escc:1.0.2 -[6c4 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[6c5 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6c6 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[6c7 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]Inside sendExecuteMessage. Message TRANSACTION -[6c8 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6c9 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6ca 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [ae249c29]sendExecuteMsg trigger event TRANSACTION -[6cb 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Move state message TRANSACTION -[6cc 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6cd 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6ce 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]sending state message TRANSACTION -[6cf 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Received message TRANSACTION from shim -[6d0 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6d1 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [ae249c29]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6d2 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[6d3 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[6d4 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Transaction completed. Sending COMPLETED -[6d5 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]Move state message COMPLETED -[6d6 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ae249c29]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[6d7 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ae249c29]send state message COMPLETED -[6d8 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ae249c29]Received message COMPLETED from shim -[6d9 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6da 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc]HandleMessage- COMPLETED. Notify -[6db 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:ae249c29e88b8d6ce8350fe6932b5402f203438df10cda9433401337bd619edc -[6dc 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6dd 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[6de 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[6df 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f5f40dba-2574-4125-bc5b-1ff1c28c5166] -[6e0 01-04 01:52:24.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[6e1 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[6e2 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421a59830 -[6e3 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[6e4 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[6e5 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[6e6 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[6e7 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[6e8 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421785720, header 0xc421a59860 -[6e9 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[6ea 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf -[6eb 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf] -[6ec 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[6ed 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [3b305756-03fe-43bd-bedf-2f3f6ea5c38a] -[6ee 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf channel id: businesschannel -[6ef 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf channel id: businesschannel version: 1.0.2 -[6f0 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf,syscc=true,proposal=0xc421785720,canname=lscc:1.0.2 -[6f1 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[6f2 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6f3 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[6f4 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74683b32]Inside sendExecuteMessage. Message TRANSACTION -[6f5 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6f6 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6f7 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74683b32]sendExecuteMsg trigger event TRANSACTION -[6f8 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Move state message TRANSACTION -[6f9 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6fa 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6fb 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]sending state message TRANSACTION -[6fc 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Received message TRANSACTION from shim -[6fd 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6fe 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74683b32]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6ff 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [74683b32]Sending GET_STATE -[700 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Received message GET_STATE from shim -[701 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[702 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [74683b32]Received GET_STATE, invoking get state from ledger -[703 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[704 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74683b32] getting state for chaincode lscc, key mycc, channel businesschannel -[705 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[706 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [74683b32]Got state. Sending RESPONSE -[707 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [74683b32]handleGetState serial send RESPONSE -[708 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Received message RESPONSE from shim -[709 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[70a 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [74683b32]before send -[70b 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [74683b32]after send -[70c 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [74683b32]Received RESPONSE, communicated (state:ready) -[70d 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [74683b32]GetState received payload RESPONSE -[70e 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Transaction completed. Sending COMPLETED -[70f 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Move state message COMPLETED -[710 01-04 01:52:24.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[711 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]send state message COMPLETED -[712 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Received message COMPLETED from shim -[713 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[714 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf]HandleMessage- COMPLETED. Notify -[715 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf -[716 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[717 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[718 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[719 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [3b305756-03fe-43bd-bedf-2f3f6ea5c38a] -[71a 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[71b 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf channel id: businesschannel chaincode id: name:"lscc" -[71c 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[71d 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf channel id: businesschannel version: 1.0.2 -[71e 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf,syscc=true,proposal=0xc421785720,canname=escc:1.0.2 -[71f 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[720 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[721 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[722 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74683b32]Inside sendExecuteMessage. Message TRANSACTION -[723 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[724 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[725 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [74683b32]sendExecuteMsg trigger event TRANSACTION -[726 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Move state message TRANSACTION -[727 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[728 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[729 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]sending state message TRANSACTION -[72a 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Received message TRANSACTION from shim -[72b 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[72c 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [74683b32]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[72d 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[72e 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[72f 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Transaction completed. Sending COMPLETED -[730 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]Move state message COMPLETED -[731 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [74683b32]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[732 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [74683b32]send state message COMPLETED -[733 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [74683b32]Received message COMPLETED from shim -[734 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b32]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[735 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf]HandleMessage- COMPLETED. Notify -[736 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:74683b329ce9895716b01196130cac25951d7e1a874acb54d92b6670b45baecf -[737 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[738 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[739 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[73a 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [3b305756-03fe-43bd-bedf-2f3f6ea5c38a] -[73b 01-04 01:52:24.93 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[73c 01-04 01:52:25.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[73d 01-04 01:52:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424c45170 -[73e 01-04 01:52:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[73f 01-04 01:52:25.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[740 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[741 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[742 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[743 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424c56640, header 0xc424c451a0 -[744 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[745 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 -[746 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5] -[747 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[748 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [612fe2b6-261c-4597-87da-08de532e9503] -[749 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 channel id: businesschannel -[74a 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 channel id: businesschannel version: 1.0.2 -[74b 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5,syscc=true,proposal=0xc424c56640,canname=lscc:1.0.2 -[74c 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[74d 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[74e 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[74f 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f0708c21]Inside sendExecuteMessage. Message TRANSACTION -[750 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[751 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[752 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f0708c21]sendExecuteMsg trigger event TRANSACTION -[753 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Move state message TRANSACTION -[754 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[755 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[756 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]sending state message TRANSACTION -[757 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Received message TRANSACTION from shim -[758 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[759 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f0708c21]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[75a 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f0708c21]Sending GET_STATE -[75b 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Received message GET_STATE from shim -[75c 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[75d 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f0708c21]Received GET_STATE, invoking get state from ledger -[75f 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f0708c21] getting state for chaincode lscc, key mycc, channel businesschannel -[760 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[761 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f0708c21]Got state. Sending RESPONSE -[762 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f0708c21]handleGetState serial send RESPONSE -[763 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Received message RESPONSE from shim -[764 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[765 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f0708c21]before send -[766 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f0708c21]after send -[767 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f0708c21]Received RESPONSE, communicated (state:ready) -[768 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f0708c21]GetState received payload RESPONSE -[769 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Transaction completed. Sending COMPLETED -[76a 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Move state message COMPLETED -[76b 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[76c 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]send state message COMPLETED -[75e 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[76d 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Received message COMPLETED from shim -[76e 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[76f 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5]HandleMessage- COMPLETED. Notify -[770 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 -[771 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[772 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[773 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[774 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [612fe2b6-261c-4597-87da-08de532e9503] -[775 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[776 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 channel id: businesschannel chaincode id: name:"lscc" -[777 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[778 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 channel id: businesschannel version: 1.0.2 -[779 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5,syscc=true,proposal=0xc424c56640,canname=escc:1.0.2 -[77a 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[77b 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[77c 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[77d 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f0708c21]Inside sendExecuteMessage. Message TRANSACTION -[77e 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[77f 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[780 01-04 01:52:25.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f0708c21]sendExecuteMsg trigger event TRANSACTION -[781 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Move state message TRANSACTION -[782 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[783 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[784 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]sending state message TRANSACTION -[785 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Received message TRANSACTION from shim -[786 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[787 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f0708c21]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[788 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[789 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[78a 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Transaction completed. Sending COMPLETED -[78b 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]Move state message COMPLETED -[78c 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f0708c21]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[78d 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f0708c21]send state message COMPLETED -[78e 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f0708c21]Received message COMPLETED from shim -[78f 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c21]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[790 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5]HandleMessage- COMPLETED. Notify -[791 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f0708c216729c834dd51d1ce9fd5493856b9d2c0a96fae4f6ddb6e32bf01a1e5 -[792 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[793 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[794 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[795 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [612fe2b6-261c-4597-87da-08de532e9503] -[796 01-04 01:52:25.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[797 01-04 01:52:25.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[798 01-04 01:52:25.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424bf6330 -[799 01-04 01:52:25.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[79a 01-04 01:52:25.29 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[79b 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[79c 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[79d 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[79e 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42294c0f0, header 0xc424bf6360 -[79f 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[7a0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 -[7a1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8] -[7a2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7a3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [ad920e34-c9de-4dbd-8f95-23bd005d54d8] -[7a4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 channel id: businesschannel -[7a5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 channel id: businesschannel version: 1.0.2 -[7a6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8,syscc=true,proposal=0xc42294c0f0,canname=lscc:1.0.2 -[7a7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[7a8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7a9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[7aa 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9ab5b94]Inside sendExecuteMessage. Message TRANSACTION -[7ab 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7ac 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[7ad 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9ab5b94]sendExecuteMsg trigger event TRANSACTION -[7ae 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Move state message TRANSACTION -[7af 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7b0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7b1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]sending state message TRANSACTION -[7b2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Received message TRANSACTION from shim -[7b3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7b4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f9ab5b94]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7b5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f9ab5b94]Sending GET_STATE -[7b6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Received message GET_STATE from shim -[7b7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[7b8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [f9ab5b94]Received GET_STATE, invoking get state from ledger -[7b9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7ba 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f9ab5b94] getting state for chaincode lscc, key mycc, channel businesschannel -[7bb 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[7bc 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f9ab5b94]Got state. Sending RESPONSE -[7bd 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [f9ab5b94]handleGetState serial send RESPONSE -[7be 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Received message RESPONSE from shim -[7bf 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[7c0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f9ab5b94]before send -[7c1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [f9ab5b94]after send -[7c2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [f9ab5b94]Received RESPONSE, communicated (state:ready) -[7c3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f9ab5b94]GetState received payload RESPONSE -[7c4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Transaction completed. Sending COMPLETED -[7c5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Move state message COMPLETED -[7c6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7c7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]send state message COMPLETED -[7c8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Received message COMPLETED from shim -[7c9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7ca 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8]HandleMessage- COMPLETED. Notify -[7cb 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 -[7cc 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7cd 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[7ce 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[7cf 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [ad920e34-c9de-4dbd-8f95-23bd005d54d8] -[7d0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[7d1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 channel id: businesschannel chaincode id: name:"lscc" -[7d2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[7d3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 channel id: businesschannel version: 1.0.2 -[7d4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8,syscc=true,proposal=0xc42294c0f0,canname=escc:1.0.2 -[7d5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[7d6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[7d7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[7d8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9ab5b94]Inside sendExecuteMessage. Message TRANSACTION -[7d9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[7da 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[7db 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [f9ab5b94]sendExecuteMsg trigger event TRANSACTION -[7dc 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Move state message TRANSACTION -[7dd 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[7de 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[7df 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]sending state message TRANSACTION -[7e0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Received message TRANSACTION from shim -[7e1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[7e2 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [f9ab5b94]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[7e3 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[7e4 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[7e5 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Transaction completed. Sending COMPLETED -[7e6 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]Move state message COMPLETED -[7e7 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f9ab5b94]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[7e8 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f9ab5b94]send state message COMPLETED -[7e9 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [f9ab5b94]Received message COMPLETED from shim -[7ea 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[7eb 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8]HandleMessage- COMPLETED. Notify -[7ec 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:f9ab5b94a5b7f9f1a5d3f642810816e46b7d216e4b77f4be45299afc41cc76a8 -[7ed 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[7ee 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[7ef 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[7f0 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [ad920e34-c9de-4dbd-8f95-23bd005d54d8] -[7f1 01-04 01:52:25.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[7f2 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[7f3 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc424bf7890 -[7f4 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[7f5 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[7f6 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[7f7 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[7f8 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[7f9 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42294ce10, header 0xc424bf78c0 -[7fa 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[7fb 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a -[7fc 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a] -[7fd 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[7fe 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [5c803ec6-82ec-434a-9943-6396becd8365] -[7ff 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a channel id: businesschannel -[800 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a channel id: businesschannel version: 1.0.2 -[801 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a,syscc=true,proposal=0xc42294ce10,canname=lscc:1.0.2 -[802 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[803 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[804 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[805 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1c8370]Inside sendExecuteMessage. Message TRANSACTION -[806 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[807 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[808 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1c8370]sendExecuteMsg trigger event TRANSACTION -[809 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]Move state message TRANSACTION -[80a 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[80b 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[80c 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]sending state message TRANSACTION -[80d 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Received message TRANSACTION from shim -[80e 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1c8370]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[80f 01-04 01:52:25.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3e1c8370]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[810 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Transaction completed. Sending COMPLETED -[811 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Move state message COMPLETED -[812 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1c8370]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[813 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]send state message COMPLETED -[814 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]Received message COMPLETED from shim -[815 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[816 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a]HandleMessage- COMPLETED. Notify -[817 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a -[818 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[819 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[81a 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[81b 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [5c803ec6-82ec-434a-9943-6396becd8365] -[81c 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[81d 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a channel id: businesschannel chaincode id: name:"lscc" -[81e 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[81f 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a channel id: businesschannel version: 1.0.2 -[820 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a,syscc=true,proposal=0xc42294ce10,canname=escc:1.0.2 -[821 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[822 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[823 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[824 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1c8370]Inside sendExecuteMessage. Message TRANSACTION -[825 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[826 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[827 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3e1c8370]sendExecuteMsg trigger event TRANSACTION -[828 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]Move state message TRANSACTION -[829 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[82a 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[82b 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]sending state message TRANSACTION -[82c 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Received message TRANSACTION from shim -[82d 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1c8370]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[82e 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3e1c8370]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[82f 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[830 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[831 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Transaction completed. Sending COMPLETED -[832 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]Move state message COMPLETED -[833 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3e1c8370]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[834 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3e1c8370]send state message COMPLETED -[835 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3e1c8370]Received message COMPLETED from shim -[836 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[837 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a]HandleMessage- COMPLETED. Notify -[838 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:3e1c8370b8f7e9fcdbfd3a9dfe4e360990740fcfecfe4e55bd18bc230593006a -[839 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[83a 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[83b 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[83c 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5c803ec6-82ec-434a-9943-6396becd8365] -[83d 01-04 01:52:25.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[83e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[83f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221632c0 -[840 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[841 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[842 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[843 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[844 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[845 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42294dd60, header 0xc4221632f0 -[846 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[847 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 -[848 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510] -[849 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[84a 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [46b35e5e-7a8e-4154-8082-8a5ab4f95562] -[84b 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 channel id: businesschannel -[84c 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 channel id: businesschannel version: 1.0.2 -[84d 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510,syscc=true,proposal=0xc42294dd60,canname=lscc:1.0.2 -[84e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 -[84f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[850 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 -[851 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1e5fc5dd]Inside sendExecuteMessage. Message TRANSACTION -[852 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[853 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[854 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1e5fc5dd]sendExecuteMsg trigger event TRANSACTION -[855 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Move state message TRANSACTION -[856 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[857 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[858 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]sending state message TRANSACTION -[859 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Received message TRANSACTION from shim -[85a 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[85b 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1e5fc5dd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[85c 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [1e5fc5dd]Sending GET_STATE_BY_RANGE -[85d 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Received message GET_STATE_BY_RANGE from shim -[85e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -[85f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger -[860 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE -[861 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[862 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -[863 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -[864 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE -[865 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1e5fc5dd]handleGetStateByRange serial send RESPONSE -[866 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Received message RESPONSE from shim -[867 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[868 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1e5fc5dd]before send -[869 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1e5fc5dd]after send -[86a 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [1e5fc5dd]Received RESPONSE, communicated (state:ready) -[86b 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [1e5fc5dd]Received RESPONSE. Successfully got range -[86c 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [1e5fc5dd]Sending QUERY_STATE_CLOSE -[86d 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Received message QUERY_STATE_CLOSE from shim -[86e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -[86f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger -[870 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE -[871 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[872 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE -[873 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [1e5fc5dd]handleQueryStateClose serial send RESPONSE -[874 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Received message RESPONSE from shim -[875 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[876 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1e5fc5dd]before send -[877 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [1e5fc5dd]after send -[878 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [1e5fc5dd]Received RESPONSE, communicated (state:ready) -[879 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [1e5fc5dd]Received RESPONSE. Successfully got range -[87a 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Transaction completed. Sending COMPLETED -[87b 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Move state message COMPLETED -[87c 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[87d 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]send state message COMPLETED -[87e 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Received message COMPLETED from shim -[87f 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[880 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510]HandleMessage- COMPLETED. Notify -[881 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 -[882 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[883 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[884 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[885 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [46b35e5e-7a8e-4154-8082-8a5ab4f95562] -[886 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[887 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 channel id: businesschannel chaincode id: name:"lscc" -[888 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc -[889 01-04 01:52:25.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 channel id: businesschannel version: 1.0.2 -[88a 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510,syscc=true,proposal=0xc42294dd60,canname=escc:1.0.2 -[88b 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[88c 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[88d 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[88e 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1e5fc5dd]Inside sendExecuteMessage. Message TRANSACTION -[88f 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[890 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[891 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1e5fc5dd]sendExecuteMsg trigger event TRANSACTION -[892 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Move state message TRANSACTION -[893 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[894 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[895 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]sending state message TRANSACTION -[896 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Received message TRANSACTION from shim -[897 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[898 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1e5fc5dd]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[899 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[89a 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[89b 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Transaction completed. Sending COMPLETED -[89c 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]Move state message COMPLETED -[89d 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1e5fc5dd]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[89e 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1e5fc5dd]send state message COMPLETED -[89f 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1e5fc5dd]Received message COMPLETED from shim -[8a0 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8a1 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510]HandleMessage- COMPLETED. Notify -[8a2 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:1e5fc5dd8aa005a9e21a8c48b67130d55ceed2447423e20f0c83a50c71ffa510 -[8a3 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8a4 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8a5 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[8a6 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [46b35e5e-7a8e-4154-8082-8a5ab4f95562] -[8a7 01-04 01:52:25.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[8a8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[8a9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421e90f60 -[8aa 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[8ab 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8ac 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[8ad 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[8ae 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8af 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421ed4c30, header 0xc421e90f90 -[8b0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[8b1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef -[8b2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef] -[8b3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[8b4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b080f1ef-f32d-48a9-b333-981457345866] -[8b5 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef channel id: businesschannel -[8b6 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef channel id: businesschannel version: 1.0.2 -[8b7 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef,syscc=true,proposal=0xc421ed4c30,canname=qscc:1.0.2 -[8b8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -[8b9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8ba 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -[8bb 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c64dc950]Inside sendExecuteMessage. Message TRANSACTION -[8bc 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8bd 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8be 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c64dc950]sendExecuteMsg trigger event TRANSACTION -[8bf 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]Move state message TRANSACTION -[8c0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc950]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8c1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8c2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]sending state message TRANSACTION -[8c3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Received message TRANSACTION from shim -[8c4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c64dc950]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8c5 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c64dc950]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8c6 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -[8c7 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Transaction completed. Sending COMPLETED -[8c8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Move state message COMPLETED -[8c9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c64dc950]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8ca 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]send state message COMPLETED -[8cb 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]Received message COMPLETED from shim -[8cc 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc950]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8cd 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef]HandleMessage- COMPLETED. Notify -[8ce 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef -[8cf 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8d0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[8d1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[8d2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b080f1ef-f32d-48a9-b333-981457345866] -[8d3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[8d4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef channel id: businesschannel chaincode id: name:"qscc" -[8d5 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[8d6 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef channel id: businesschannel version: 1.0.2 -[8d7 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef,syscc=true,proposal=0xc421ed4c30,canname=escc:1.0.2 -[8d8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[8d9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[8da 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[8db 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c64dc950]Inside sendExecuteMessage. Message TRANSACTION -[8dc 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[8dd 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[8de 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [c64dc950]sendExecuteMsg trigger event TRANSACTION -[8df 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]Move state message TRANSACTION -[8e0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc950]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[8e1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[8e2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]sending state message TRANSACTION -[8e3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Received message TRANSACTION from shim -[8e4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c64dc950]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[8e5 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [c64dc950]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[8e6 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[8e7 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[8e8 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Transaction completed. Sending COMPLETED -[8e9 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]Move state message COMPLETED -[8ea 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c64dc950]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[8eb 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c64dc950]send state message COMPLETED -[8ec 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [c64dc950]Received message COMPLETED from shim -[8ed 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc950]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[8ee 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef]HandleMessage- COMPLETED. Notify -[8ef 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:c64dc9508c95201c2a2208a7e38320d6c764b20a75f341c45748657ed142f5ef -[8f0 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[8f1 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[8f2 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[8f3 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b080f1ef-f32d-48a9-b333-981457345866] -[8f4 01-04 01:52:25.88 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit -[8f5 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry -[8f6 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4220ded20 -[8f7 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[8f8 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[8f9 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} -[8fa 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[8fb 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[8fc 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424dad5e0, header 0xc4220ded50 -[8fd 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[8fe 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 -[8ff 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0] -[900 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[901 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [bac0d146-c7df-4b08-bb41-f4564a43827f] -[902 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 channel id: businesschannel -[903 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 channel id: businesschannel version: 1.0.2 -[904 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0,syscc=true,proposal=0xc424dad5e0,canname=qscc:1.0.2 -[905 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 -[906 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[907 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 -[908 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39dd82a8]Inside sendExecuteMessage. Message TRANSACTION -[909 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[90a 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[90b 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39dd82a8]sendExecuteMsg trigger event TRANSACTION -[90c 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]Move state message TRANSACTION -[90d 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[90e 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[90f 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]sending state message TRANSACTION -[910 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Received message TRANSACTION from shim -[911 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39dd82a8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[912 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [39dd82a8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[913 01-04 01:52:26.03 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -[914 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[915 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[25667] -[916 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28884], Going to peek [8] bytes -[917 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13792], placementInfo={fileNum=[0], startOffset=[25667], bytesOffset=[25669]} -[918 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Transaction completed. Sending COMPLETED -[919 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Move state message COMPLETED -[91a 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39dd82a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[91b 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]send state message COMPLETED -[91c 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]Received message COMPLETED from shim -[91d 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[91e 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0]HandleMessage- COMPLETED. Notify -[91f 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 -[920 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[921 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[922 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[923 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [bac0d146-c7df-4b08-bb41-f4564a43827f] -[924 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit -[925 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 channel id: businesschannel chaincode id: name:"qscc" -[926 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc -[927 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 channel id: businesschannel version: 1.0.2 -[928 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0,syscc=true,proposal=0xc424dad5e0,canname=escc:1.0.2 -[929 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 -[92a 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[92b 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 -[92c 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39dd82a8]Inside sendExecuteMessage. Message TRANSACTION -[92d 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[92e 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[92f 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [39dd82a8]sendExecuteMsg trigger event TRANSACTION -[930 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]Move state message TRANSACTION -[931 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[932 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[933 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]sending state message TRANSACTION -[934 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Received message TRANSACTION from shim -[935 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39dd82a8]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[936 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [39dd82a8]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[937 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[938 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[939 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Transaction completed. Sending COMPLETED -[93a 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]Move state message COMPLETED -[93b 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [39dd82a8]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[93c 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [39dd82a8]send state message COMPLETED -[93d 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [39dd82a8]Received message COMPLETED from shim -[93e 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[93f 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0]HandleMessage- COMPLETED. Notify -[940 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:39dd82a8ab7810fb9f1c4af3f8b2f4630df555e9ab57ecc7dd7d46d57e2d5cb0 -[941 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[942 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[943 01-04 01:52:26.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit -[944 01-04 01:52:26.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [bac0d146-c7df-4b08-bb41-f4564a43827f] -[945 01-04 01:52:26.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[657 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to index +[658 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=49963, bytesLength=2855] for tx number:[0] ID: [0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38] to blockNumTranNum index +[659 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[54569], isChainEmpty=[false], lastBlockNumber=[5] +[65a 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [5] with 1 transaction(s) +[65b 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[65c 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[65d 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[65e 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[65f 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[660 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +[661 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +[662 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[663 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 0aa155513bc67348317e64140e14ac681312c0319957ded6edc06d072fe8ba38 +[664 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [5] +[665 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[666 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[667 01-14 11:46:41.05 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[668 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[669 01-14 11:46:41.06 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit +[66a 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[66b 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422684870 +[66c 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[66d 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[66e 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[66f 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[670 01-14 11:47:02.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[671 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4222f3270, header 0xc4226848a0 +[672 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[673 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e +[674 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e] +[675 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[676 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [084f3326-7b02-4f09-bf4b-cf4b65b01448] +[677 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e channel id: businesschannel +[678 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e,syscc=true,proposal=0xc4222f3270,canname=lscc:1.0.2 +[679 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[67a 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry +[67b 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[67c 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]Inside sendExecuteMessage. Message TRANSACTION +[67d 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[67e 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[67f 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]sendExecuteMsg trigger event TRANSACTION +[680 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Move state message TRANSACTION +[681 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[682 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[683 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]sending state message TRANSACTION +[684 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Received message TRANSACTION from shim +[685 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[686 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55525944]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[687 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55525944]Sending GET_STATE +[688 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message GET_STATE from shim +[689 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[68a 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [55525944]Received GET_STATE, invoking get state from ledger +[68b 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[68c 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55525944] getting state for chaincode lscc, key exp02, channel businesschannel +[68d 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[68e 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55525944]Got state. Sending RESPONSE +[68f 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [55525944]handleGetState serial send RESPONSE +[690 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Received message RESPONSE from shim +[691 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[692 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [55525944]before send +[693 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [55525944]after send +[694 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [55525944]Received RESPONSE, communicated (state:ready) +[695 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55525944]GetState received payload RESPONSE +[696 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Transaction completed. Sending COMPLETED +[697 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Move state message COMPLETED +[698 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[699 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]send state message COMPLETED +[69a 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message COMPLETED from shim +[69b 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[69c 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e]HandleMessage- COMPLETED. Notify +[69d 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e +[69e 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit +[69f 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[6a0 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e channel id: businesschannel version: 1.0 +[6a1 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=exp02,version=1.0,txid=555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e,syscc=false,proposal=0xc4222f3270,canname=exp02:1.0 +[6a2 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : exp02:1.0 +[6a3 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6a4 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: exp02:1.0 +[6a5 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]Inside sendExecuteMessage. Message TRANSACTION +[6a6 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6a7 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6a8 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]sendExecuteMsg trigger event TRANSACTION +[6a9 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Move state message TRANSACTION +[6aa 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6ab 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6ac 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]sending state message TRANSACTION +[6ad 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message GET_STATE from shim +[6ae 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[6af 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [55525944]Received GET_STATE, invoking get state from ledger +[6b0 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6b1 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55525944] getting state for chaincode exp02, key a, channel businesschannel +[6b2 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=exp02, key=a +[6b3 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55525944]Got state. Sending RESPONSE +[6b4 01-14 11:47:02.46 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [55525944]handleGetState serial send RESPONSE +[6b5 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message COMPLETED from shim +[6b6 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6b7 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e]HandleMessage- COMPLETED. Notify +[6b8 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e +[6b9 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6ba 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[6bb 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[6bc 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [084f3326-7b02-4f09-bf4b-cf4b65b01448] +[6bd 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[6be 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e channel id: businesschannel chaincode id: name:"exp02" +[6bf 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"exp02" is escc +[6c0 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e channel id: businesschannel version: 1.0.2 +[6c1 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e,syscc=true,proposal=0xc4222f3270,canname=escc:1.0.2 +[6c2 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[6c3 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6c4 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[6c5 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]Inside sendExecuteMessage. Message TRANSACTION +[6c6 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6c7 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6c8 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [55525944]sendExecuteMsg trigger event TRANSACTION +[6c9 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Move state message TRANSACTION +[6ca 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6cb 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6cc 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]sending state message TRANSACTION +[6cd 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Received message TRANSACTION from shim +[6ce 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[6cf 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [55525944]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[6d0 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[6d1 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[6d2 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Transaction completed. Sending COMPLETED +[6d3 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]Move state message COMPLETED +[6d4 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55525944]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[6d5 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55525944]send state message COMPLETED +[6d6 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [55525944]Received message COMPLETED from shim +[6d7 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [55525944]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[6d8 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e]HandleMessage- COMPLETED. Notify +[6d9 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:555259443c016d06e9b5bbb86ee8f1520d9b679457845e9b387661a23b02968e +[6da 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[6db 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[6dc 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[6dd 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [084f3326-7b02-4f09-bf4b-cf4b65b01448] +[6de 01-14 11:47:02.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[6df 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[6e0 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4218a1380 +[6e1 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[6e2 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[6e3 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[6e4 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[6e5 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[6e6 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422167220, header 0xc4218a13b0 +[6e7 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[6e8 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d +[6e9 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d] +[6ea 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[6eb 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b87acb1e-d560-4383-97ed-9f14326c4e85] +[6ec 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d channel id: businesschannel +[6ed 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d channel id: businesschannel version: 1.0.2 +[6ee 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d,syscc=true,proposal=0xc422167220,canname=lscc:1.0.2 +[6ef 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[6f0 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[6f1 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[6f2 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53f41b12]Inside sendExecuteMessage. Message TRANSACTION +[6f3 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[6f4 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[6f5 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53f41b12]sendExecuteMsg trigger event TRANSACTION +[6f6 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Move state message TRANSACTION +[6f7 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[6f8 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[6f9 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]sending state message TRANSACTION +[6fa 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Received message TRANSACTION from shim +[6fb 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[6fc 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [53f41b12]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[6fd 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [53f41b12]Sending GET_STATE +[6fe 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Received message GET_STATE from shim +[6ff 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[700 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [53f41b12]Received GET_STATE, invoking get state from ledger +[701 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[702 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [53f41b12] getting state for chaincode lscc, key exp02, channel businesschannel +[703 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[704 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [53f41b12]Got state. Sending RESPONSE +[705 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [53f41b12]handleGetState serial send RESPONSE +[706 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Received message RESPONSE from shim +[707 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[708 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [53f41b12]before send +[709 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [53f41b12]after send +[70a 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [53f41b12]Received RESPONSE, communicated (state:ready) +[70b 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [53f41b12]GetState received payload RESPONSE +[70c 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Transaction completed. Sending COMPLETED +[70d 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Move state message COMPLETED +[70e 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[70f 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]send state message COMPLETED +[710 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Received message COMPLETED from shim +[711 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[712 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d]HandleMessage- COMPLETED. Notify +[713 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d +[714 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[715 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[716 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[717 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b87acb1e-d560-4383-97ed-9f14326c4e85] +[718 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[719 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d channel id: businesschannel chaincode id: name:"lscc" +[71a 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[71b 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d channel id: businesschannel version: 1.0.2 +[71c 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d,syscc=true,proposal=0xc422167220,canname=escc:1.0.2 +[71d 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[71e 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[71f 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[720 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53f41b12]Inside sendExecuteMessage. Message TRANSACTION +[721 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[722 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[723 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [53f41b12]sendExecuteMsg trigger event TRANSACTION +[724 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Move state message TRANSACTION +[725 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[726 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[727 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]sending state message TRANSACTION +[728 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Received message TRANSACTION from shim +[729 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[72a 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [53f41b12]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[72b 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[72c 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[72d 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Transaction completed. Sending COMPLETED +[72e 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]Move state message COMPLETED +[72f 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [53f41b12]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[730 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [53f41b12]send state message COMPLETED +[731 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [53f41b12]Received message COMPLETED from shim +[732 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b12]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[733 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d]HandleMessage- COMPLETED. Notify +[734 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:53f41b129da8663198180fd585a3852d32bda9ae6c8f1191b7cac58920fd395d +[735 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[736 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[737 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[738 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b87acb1e-d560-4383-97ed-9f14326c4e85] +[739 01-14 11:47:02.97 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[73a 01-14 11:47:03.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[73b 01-14 11:47:03.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221c7980 +[73c 01-14 11:47:03.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[73d 01-14 11:47:03.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[73e 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[73f 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[740 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[741 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421768b40, header 0xc4221c79b0 +[742 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[743 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd +[744 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd] +[745 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[746 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [d0367be8-d64d-4284-9578-a1d36d95dd00] +[747 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd channel id: businesschannel +[748 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd channel id: businesschannel version: 1.0.2 +[749 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd,syscc=true,proposal=0xc421768b40,canname=lscc:1.0.2 +[74a 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[74b 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[74c 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[74d 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [266bdea9]Inside sendExecuteMessage. Message TRANSACTION +[74e 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[74f 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[750 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [266bdea9]sendExecuteMsg trigger event TRANSACTION +[751 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Move state message TRANSACTION +[752 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[753 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[754 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]sending state message TRANSACTION +[755 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Received message TRANSACTION from shim +[756 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[757 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [266bdea9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[758 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [266bdea9]Sending GET_STATE +[759 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Received message GET_STATE from shim +[75a 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[75b 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [266bdea9]Received GET_STATE, invoking get state from ledger +[75c 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[75d 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [266bdea9] getting state for chaincode lscc, key exp02, channel businesschannel +[75e 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[75f 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [266bdea9]Got state. Sending RESPONSE +[760 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [266bdea9]handleGetState serial send RESPONSE +[761 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Received message RESPONSE from shim +[762 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[763 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [266bdea9]before send +[764 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [266bdea9]after send +[765 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [266bdea9]Received RESPONSE, communicated (state:ready) +[766 01-14 11:47:03.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [266bdea9]GetState received payload RESPONSE +[767 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Transaction completed. Sending COMPLETED +[768 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Move state message COMPLETED +[769 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[76a 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]send state message COMPLETED +[76b 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Received message COMPLETED from shim +[76c 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[76d 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd]HandleMessage- COMPLETED. Notify +[76e 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd +[76f 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[770 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[771 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[772 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [d0367be8-d64d-4284-9578-a1d36d95dd00] +[773 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[774 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd channel id: businesschannel chaincode id: name:"lscc" +[775 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[776 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd channel id: businesschannel version: 1.0.2 +[777 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd,syscc=true,proposal=0xc421768b40,canname=escc:1.0.2 +[778 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[779 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[77a 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[77b 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [266bdea9]Inside sendExecuteMessage. Message TRANSACTION +[77c 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[77d 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[77e 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [266bdea9]sendExecuteMsg trigger event TRANSACTION +[77f 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Move state message TRANSACTION +[780 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[781 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[782 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]sending state message TRANSACTION +[783 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Received message TRANSACTION from shim +[784 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[785 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [266bdea9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[786 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[787 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[788 01-14 11:47:03.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Transaction completed. Sending COMPLETED +[789 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]Move state message COMPLETED +[78a 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [266bdea9]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[78b 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [266bdea9]send state message COMPLETED +[78c 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [266bdea9]Received message COMPLETED from shim +[78d 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[78e 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd]HandleMessage- COMPLETED. Notify +[78f 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:266bdea9d8a6ce04d3ad56b1f4401d2cc902329f8ee00f295ce5e99258be03dd +[790 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[791 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[792 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[793 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [d0367be8-d64d-4284-9578-a1d36d95dd00] +[794 01-14 11:47:03.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[795 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[796 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421826930 +[797 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[798 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[799 01-14 11:47:03.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[79a 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[79b 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[79c 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421caef00, header 0xc421826960 +[79d 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[79e 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f +[79f 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f] +[7a0 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[7a1 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [216237eb-2d45-472c-8bd2-3397610911d4] +[7a2 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f channel id: businesschannel +[7a3 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f channel id: businesschannel version: 1.0.2 +[7a4 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f,syscc=true,proposal=0xc421caef00,canname=lscc:1.0.2 +[7a5 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[7a6 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7a7 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[7a8 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [881c84a3]Inside sendExecuteMessage. Message TRANSACTION +[7a9 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7aa 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7ab 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [881c84a3]sendExecuteMsg trigger event TRANSACTION +[7ac 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Move state message TRANSACTION +[7ad 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7ae 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7af 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]sending state message TRANSACTION +[7b0 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Received message TRANSACTION from shim +[7b1 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7b2 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [881c84a3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7b3 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [881c84a3]Sending GET_STATE +[7b4 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Received message GET_STATE from shim +[7b5 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready +[7b6 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [881c84a3]Received GET_STATE, invoking get state from ledger +[7b7 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7b8 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [881c84a3] getting state for chaincode lscc, key exp02, channel businesschannel +[7b9 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[7ba 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [881c84a3]Got state. Sending RESPONSE +[7bb 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [881c84a3]handleGetState serial send RESPONSE +[7bc 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Received message RESPONSE from shim +[7bd 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[7be 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [881c84a3]before send +[7bf 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [881c84a3]after send +[7c1 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [881c84a3]GetState received payload RESPONSE +[7c2 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Transaction completed. Sending COMPLETED +[7c0 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [881c84a3]Received RESPONSE, communicated (state:ready) +[7c3 01-14 11:47:03.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Move state message COMPLETED +[7c4 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7c5 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]send state message COMPLETED +[7c6 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Received message COMPLETED from shim +[7c7 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7c8 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f]HandleMessage- COMPLETED. Notify +[7c9 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f +[7ca 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7cb 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[7cc 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[7cd 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [216237eb-2d45-472c-8bd2-3397610911d4] +[7ce 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[7cf 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f channel id: businesschannel chaincode id: name:"lscc" +[7d0 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[7d1 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f channel id: businesschannel version: 1.0.2 +[7d2 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f,syscc=true,proposal=0xc421caef00,canname=escc:1.0.2 +[7d3 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[7d4 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[7d5 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[7d6 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [881c84a3]Inside sendExecuteMessage. Message TRANSACTION +[7d7 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[7d8 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[7d9 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [881c84a3]sendExecuteMsg trigger event TRANSACTION +[7da 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Move state message TRANSACTION +[7db 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[7dc 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[7dd 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]sending state message TRANSACTION +[7de 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Received message TRANSACTION from shim +[7df 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[7e0 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [881c84a3]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[7e1 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[7e2 01-14 11:47:03.36 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[7e3 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Transaction completed. Sending COMPLETED +[7e4 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]Move state message COMPLETED +[7e5 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [881c84a3]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[7e6 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [881c84a3]send state message COMPLETED +[7e7 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [881c84a3]Received message COMPLETED from shim +[7e8 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[7e9 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f]HandleMessage- COMPLETED. Notify +[7ea 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:881c84a3ed832ff826bfd328b7df92b388c2a6f5ad69f722f716991c2c23d58f +[7eb 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[7ec 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[7ed 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[7ee 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [216237eb-2d45-472c-8bd2-3397610911d4] +[7ef 01-14 11:47:03.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[7f0 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[7f1 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422617f50 +[7f2 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[7f3 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[7f4 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[7f5 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[7f6 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[7f7 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218f0730, header 0xc422617f80 +[7f8 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[7f9 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 +[7fa 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5] +[7fb 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[7fc 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [4f4214cb-731e-4e75-ae7f-47c71c50a0ab] +[7fd 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 channel id: businesschannel +[7fe 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 channel id: businesschannel version: 1.0.2 +[7ff 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5,syscc=true,proposal=0xc4218f0730,canname=lscc:1.0.2 +[800 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[801 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[802 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[803 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57466ac5]Inside sendExecuteMessage. Message TRANSACTION +[804 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[805 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[806 01-14 11:47:03.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57466ac5]sendExecuteMsg trigger event TRANSACTION +[807 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]Move state message TRANSACTION +[808 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[809 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[80a 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]sending state message TRANSACTION +[80b 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Received message TRANSACTION from shim +[80c 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57466ac5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[80d 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [57466ac5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[80e 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Transaction completed. Sending COMPLETED +[80f 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Move state message COMPLETED +[810 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57466ac5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[811 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]send state message COMPLETED +[812 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]Received message COMPLETED from shim +[813 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[814 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5]HandleMessage- COMPLETED. Notify +[815 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 +[816 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[817 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[818 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[819 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [4f4214cb-731e-4e75-ae7f-47c71c50a0ab] +[81a 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[81b 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 channel id: businesschannel chaincode id: name:"lscc" +[81c 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[81d 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 channel id: businesschannel version: 1.0.2 +[81e 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5,syscc=true,proposal=0xc4218f0730,canname=escc:1.0.2 +[81f 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[820 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[821 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[822 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57466ac5]Inside sendExecuteMessage. Message TRANSACTION +[823 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[824 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[825 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [57466ac5]sendExecuteMsg trigger event TRANSACTION +[826 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]Move state message TRANSACTION +[827 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac5]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[828 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[829 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]sending state message TRANSACTION +[82a 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Received message TRANSACTION from shim +[82b 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57466ac5]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[82c 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [57466ac5]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[82d 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[82e 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[82f 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Transaction completed. Sending COMPLETED +[830 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]Move state message COMPLETED +[831 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [57466ac5]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[832 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [57466ac5]send state message COMPLETED +[833 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [57466ac5]Received message COMPLETED from shim +[834 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac5]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[835 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5]HandleMessage- COMPLETED. Notify +[836 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:57466ac54b5311783237b2b128f8fde2ce3f1ab76430e1e2ba0bb48a02c394a5 +[837 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[838 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[839 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[83a 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [4f4214cb-731e-4e75-ae7f-47c71c50a0ab] +[83b 01-14 11:47:03.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[83c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[83d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4223cd9b0 +[83e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[83f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[840 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[841 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[842 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[843 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4218f1630, header 0xc4223cd9e0 +[844 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[845 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 +[846 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07] +[847 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[848 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [375e7bcd-e271-4525-af60-6558d78a207d] +[849 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 channel id: businesschannel +[84a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 channel id: businesschannel version: 1.0.2 +[84b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.0.2,txid=90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07,syscc=true,proposal=0xc4218f1630,canname=lscc:1.0.2 +[84c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.0.2 +[84d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[84e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.0.2 +[84f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90b90f60]Inside sendExecuteMessage. Message TRANSACTION +[850 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[851 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[852 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90b90f60]sendExecuteMsg trigger event TRANSACTION +[853 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Move state message TRANSACTION +[854 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[855 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[856 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]sending state message TRANSACTION +[857 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Received message TRANSACTION from shim +[858 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[859 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90b90f60]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[85a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [90b90f60]Sending GET_STATE_BY_RANGE +[85b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Received message GET_STATE_BY_RANGE from shim +[85c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +[85d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Received GET_STATE_BY_RANGE, invoking get state from ledger +[85e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func4.afterGetStateByRange -> DEBU Exiting GET_STATE_BY_RANGE +[85f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[860 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +[861 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] getQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +[862 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Got keys and values. Sending RESPONSE +[863 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [90b90f60]handleGetStateByRange serial send RESPONSE +[864 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Received message RESPONSE from shim +[865 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[866 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90b90f60]before send +[867 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90b90f60]after send +[868 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [90b90f60]Received RESPONSE, communicated (state:ready) +[869 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [90b90f60]Received RESPONSE. Successfully got range +[86a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [90b90f60]Sending QUERY_STATE_CLOSE +[86b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Received message QUERY_STATE_CLOSE from shim +[86c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +[86d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Received QUERY_STATE_CLOSE, invoking query state close from ledger +[86e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.Event.afterEventCallbacks.func8.afterQueryStateClose -> DEBU Exiting QUERY_STATE_CLOSE +[86f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[870 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU Closed. Sending RESPONSE +[871 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [90b90f60]handleQueryStateClose serial send RESPONSE +[872 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Received message RESPONSE from shim +[873 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: RESPONSE(state:ready) +[874 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90b90f60]before send +[875 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [90b90f60]after send +[876 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [90b90f60]Received RESPONSE, communicated (state:ready) +[877 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [90b90f60]Received RESPONSE. Successfully got range +[878 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Transaction completed. Sending COMPLETED +[879 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Move state message COMPLETED +[87a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[87b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]send state message COMPLETED +[87c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Received message COMPLETED from shim +[87d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[87e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07]HandleMessage- COMPLETED. Notify +[87f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 +[880 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[881 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[882 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[883 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [375e7bcd-e271-4525-af60-6558d78a207d] +[884 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[885 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 channel id: businesschannel chaincode id: name:"lscc" +[886 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"lscc" is escc +[887 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 channel id: businesschannel version: 1.0.2 +[888 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07,syscc=true,proposal=0xc4218f1630,canname=escc:1.0.2 +[889 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[88a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[88b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[88c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90b90f60]Inside sendExecuteMessage. Message TRANSACTION +[88d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[88e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[88f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [90b90f60]sendExecuteMsg trigger event TRANSACTION +[890 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Move state message TRANSACTION +[891 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[892 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[893 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]sending state message TRANSACTION +[894 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Received message TRANSACTION from shim +[895 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[896 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [90b90f60]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[897 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[898 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[899 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Transaction completed. Sending COMPLETED +[89a 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]Move state message COMPLETED +[89b 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [90b90f60]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[89c 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [90b90f60]send state message COMPLETED +[89d 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [90b90f60]Received message COMPLETED from shim +[89e 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f60]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[89f 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07]HandleMessage- COMPLETED. Notify +[8a0 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:90b90f602772747de07f06467b4373cb22ab60d28108990975a90671f6930c07 +[8a1 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8a2 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[8a3 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[8a4 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [375e7bcd-e271-4525-af60-6558d78a207d] +[8a5 01-14 11:47:03.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[8a6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[8a7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224b2ed0 +[8a8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[8a9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[8aa 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[8ab 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[8ac 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[8ad 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4224c2370, header 0xc4224b2f00 +[8ae 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[8af 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec +[8b0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec] +[8b1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[8b2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [8886738f-5547-4c0d-84d3-fa40cd2de160] +[8b3 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec channel id: businesschannel +[8b4 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec channel id: businesschannel version: 1.0.2 +[8b5 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec,syscc=true,proposal=0xc4224c2370,canname=qscc:1.0.2 +[8b6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +[8b7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8b8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +[8b9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [781c2078]Inside sendExecuteMessage. Message TRANSACTION +[8ba 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8bb 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8bc 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [781c2078]sendExecuteMsg trigger event TRANSACTION +[8bd 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]Move state message TRANSACTION +[8be 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c2078]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8bf 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8c0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]sending state message TRANSACTION +[8c1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Received message TRANSACTION from shim +[8c2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [781c2078]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8c3 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [781c2078]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8c4 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[8c5 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Transaction completed. Sending COMPLETED +[8c6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Move state message COMPLETED +[8c7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [781c2078]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8c8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]send state message COMPLETED +[8c9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]Received message COMPLETED from shim +[8ca 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c2078]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8cb 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec]HandleMessage- COMPLETED. Notify +[8cc 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec +[8cd 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8ce 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[8cf 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[8d0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [8886738f-5547-4c0d-84d3-fa40cd2de160] +[8d1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[8d2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec channel id: businesschannel chaincode id: name:"qscc" +[8d3 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[8d4 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec channel id: businesschannel version: 1.0.2 +[8d5 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec,syscc=true,proposal=0xc4224c2370,canname=escc:1.0.2 +[8d6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[8d7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[8d8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[8d9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [781c2078]Inside sendExecuteMessage. Message TRANSACTION +[8da 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[8db 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[8dc 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [781c2078]sendExecuteMsg trigger event TRANSACTION +[8dd 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]Move state message TRANSACTION +[8de 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c2078]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[8df 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[8e0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]sending state message TRANSACTION +[8e1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Received message TRANSACTION from shim +[8e2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [781c2078]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[8e3 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [781c2078]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[8e4 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[8e5 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[8e6 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Transaction completed. Sending COMPLETED +[8e7 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]Move state message COMPLETED +[8e8 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [781c2078]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[8e9 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [781c2078]send state message COMPLETED +[8ea 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [781c2078]Received message COMPLETED from shim +[8eb 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c2078]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[8ec 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec]HandleMessage- COMPLETED. Notify +[8ed 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:781c20782fdf2bbc0da28685ac16db687d0b58e83ecec96061e2d76dbe180cec +[8ee 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[8ef 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[8f0 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[8f1 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8886738f-5547-4c0d-84d3-fa40cd2de160] +[8f2 01-14 11:47:04.05 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[8f3 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Entry +[8f4 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42257b380 +[8f5 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[8f6 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[8f7 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 80570c8048437174908d47b2124c34ac324154ca33dc15bacf03e108f1dc3781} +[8f8 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[8f9 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[8fa 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422574550, header 0xc42257b3b0 +[8fb 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[8fc 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU processing txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 +[8fd 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2] +[8fe 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[8ff 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.getTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [b0930a0a-6793-4601-8e4e-e8703b937c87] +[900 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Entry - txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 channel id: businesschannel +[901 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 channel id: businesschannel version: 1.0.2 +[902 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=qscc,version=1.0.2,txid=0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2,syscc=true,proposal=0xc422574550,canname=qscc:1.0.2 +[903 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : qscc:1.0.2 +[904 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[905 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: qscc:1.0.2 +[906 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0ea537fc]Inside sendExecuteMessage. Message TRANSACTION +[907 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[908 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[909 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0ea537fc]sendExecuteMsg trigger event TRANSACTION +[90a 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]Move state message TRANSACTION +[90b 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[90c 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[90d 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]sending state message TRANSACTION +[90e 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Received message TRANSACTION from shim +[90f 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ea537fc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[910 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0ea537fc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[911 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +[912 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[913 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[25668] +[914 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[28901], Going to peek [8] bytes +[915 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13791], placementInfo={fileNum=[0], startOffset=[25668], bytesOffset=[25670]} +[916 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Transaction completed. Sending COMPLETED +[917 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Move state message COMPLETED +[918 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ea537fc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[919 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]send state message COMPLETED +[91a 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]Received message COMPLETED from shim +[91b 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[91c 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2]HandleMessage- COMPLETED. Notify +[91d 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 +[91e 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[91f 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit +[920 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[921 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal.GetTxSimulationResults.Done -> DEBU Done with transaction simulation / query execution [b0930a0a-6793-4601-8e4e-e8703b937c87] +[922 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.simulateProposal -> DEBU Exit +[923 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Entry - txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 channel id: businesschannel chaincode id: name:"qscc" +[924 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU info: escc for chaincode id name:"qscc" is escc +[925 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 channel id: businesschannel version: 1.0.2 +[926 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.0.2,txid=0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2,syscc=true,proposal=0xc422574550,canname=escc:1.0.2 +[927 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.0.2 +[928 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[929 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.0.2 +[92a 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0ea537fc]Inside sendExecuteMessage. Message TRANSACTION +[92b 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[92c 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... +[92d 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [0ea537fc]sendExecuteMsg trigger event TRANSACTION +[92e 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]Move state message TRANSACTION +[92f 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fc]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[930 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[931 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]sending state message TRANSACTION +[932 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Received message TRANSACTION from shim +[933 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ea537fc]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[934 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [0ea537fc]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[935 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args +[936 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully +[937 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Transaction completed. Sending COMPLETED +[938 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]Move state message COMPLETED +[939 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0ea537fc]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[93a 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0ea537fc]send state message COMPLETED +[93b 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0ea537fc]Received message COMPLETED from shim +[93c 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[93d 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2]HandleMessage- COMPLETED. Notify +[93e 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:0ea537fcea9bc7f99e342d46630bb70fc9b361cfce305b340d9429db099678c2 +[93f 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[940 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit +[941 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.endorseProposal -> DEBU Exit +[942 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b0930a0a-6793-4601-8e4e-e8703b937c87] +[943 01-14 11:47:04.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal -> DEBU Exit +[944 01-14 11:47:04.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +[945 01-14 11:47:04.35 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +[946 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.Commit -> DEBU Validating block +[947 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU START Block Validation +[948 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction peer.ValidateTransaction() +[949 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422616330 +[94a 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" +[94b 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[94c 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts +[94d 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org2MSP f3f3773e07f8ced104c6b631460746535c0b4cdf9c848479b2cd2952c497231c} +[94e 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid +[94f 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully +[950 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42028d800, header channel_header:"\010\003\032\014\010\266\206\355\322\005\020\334\273\326\224\001\"\017businesschannel*@c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60:\t\022\007\022\005exp02" signature_header:"\n\214\006\n\007Org2MSP\022\200\006-----BEGIN -----\nMIICGjCCAcCgAwIBAgIRAN2uJd2nxMUTOW9wKNoXdxgwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTAzMTMwOTU1WhcNMjgwMTAxMTMwOTU1\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJGSxFZE7sop6UmedrvfX3BCDUEJIu84\nmQNMcad31zT6dwJm3hrA/XzvMn35/KnlYzdKhL2cOXwUlDGYqjGjxQ6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHYwCNcE+Ffr\nZXqZI4JLP8YXjzTfqOVQk92b44/dU5TuMAoGCCqGSM49BAMCA0gAMEUCIQCbJidQ\n84C8xhjUmRpoilHKl5FCIwUBw69DZQO/7ZzePwIgBpCQcgKD4FnNVY+Gs4S5SvRS\nAXYxULZpXYDQXt1KaLI=\n-----END -----\n\022\0303WMN\341\333T\336\t\25580_\262\004T\372Bc%\375\234\217z" +[951 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[952 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[953 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.Commit.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[954 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Transaction is for chain businesschannel +[955 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] +[956 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU Validating transaction vscc tx validate +[957 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor [14e23183-7cde-40e6-b438-a1b3a254da00] +[958 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[959 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [14e23183-7cde-40e6-b438-a1b3a254da00] +[95a 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[95b 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator [79439eab-2df1-41f4-a85b-fa5e649521a2] +[95c 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.0.2,txid=4e08599a-d5c5-44e2-96f8-ed097f9774a7,syscc=true,proposal=0x0,canname=vscc:1.0.2 +[95d 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 chaindID businesschannel +[95e 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.0.2 +[95f 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry +[960 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.0.2 +[961 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4e08599a]Inside sendExecuteMessage. Message TRANSACTION +[962 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... +[963 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [4e08599a]sendExecuteMsg trigger event TRANSACTION +[964 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e08599a]Move state message TRANSACTION +[965 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e08599a]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready +[966 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition +[967 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e08599a]sending state message TRANSACTION +[968 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e08599a]Received message TRANSACTION from shim +[969 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e08599a]Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[96a 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [4e08599a]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) +[96b 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked +[96c 01-14 11:47:04.36 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[96d 01-14 11:47:04.42 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully +[96e 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e08599a]Transaction completed. Sending COMPLETED +[96f 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e08599a]Move state message COMPLETED +[970 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e08599a]Handling ChaincodeMessage of type: COMPLETED(state:ready) +[971 01-14 11:47:04.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e08599a]send state message COMPLETED +[972 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [4e08599a]Received message COMPLETED from shim +[973 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e08599a]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready +[974 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage -> DEBU [4e08599a-d5c5-44e2-96f8-ed097f9774a7]HandleMessage- COMPLETED. Notify +[975 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.HandleMessage.notify -> DEBU notifying Txid:4e08599a-d5c5-44e2-96f8-ed097f9774a7 +[976 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit +[977 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [79439eab-2df1-41f4-a85b-fa5e649521a2] +[978 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.Commit.Validate -> DEBU END Block Validation +[979 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[97a 01-14 11:47:04.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU New block arrived for validation:&common.Block{Header:(*common.BlockHeader)(0xc421d2a800), Data:(*common.BlockData)(0xc42218ac40), Metadata:(*common.BlockMetadata)(0xc42218ac80)}, doMVCCValidation=true +[97b 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Validating a block with [1] transactions +[97c 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=a +[97d 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=exp02, key=b +[97e 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[97f 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.Commit.Commit.Commit.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] marked as valid by state validator +[980 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x66, 0x95, 0xb9, 0xa7, 0xea, 0xde, 0xdc, 0xbc, 0x49, 0xd1, 0x7a, 0xf8, 0xb7, 0x8c, 0x68, 0x5, 0x62, 0x2d, 0x2f, 0x0, 0x6e, 0x1f, 0x51, 0x6, 0xe8, 0xa0, 0xe7, 0xba, 0x94, 0x12, 0xd3, 0x72} txOffsets= +txId=c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 locPointer=offset=70, bytesLength=2856 +] +[981 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to index +[982 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=54639, bytesLength=2856] for tx number:[0] ID: [c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60] to blockNumTranNum index +[983 01-14 11:47:04.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Commit.Commit.Commit.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[59245], isChainEmpty=[false], lastBlockNumber=[6] +[984 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.Commit.Commit.Commit -> INFO Channel [businesschannel]: Created block [6] with 1 transaction(s) +[985 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Committing updates to state database +[986 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Write lock acquired for committing updates to state database +[987 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[988 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.Commit.Commit.Commit.Commit.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[989 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.Commit.Commit.Commit.Commit -> DEBU Updates committed to state database +[98a 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +[98b 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.Commit.Commit.Commit.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +[98c 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Entry +[98d 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: c012902adee8be5c9214e9737bffe8e543a89de6d42db63c6a04625274a1ff60 +[98e 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> INFO Channel [businesschannel]: Sending event for block number [6] +[98f 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Entry +[990 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event processor timeout > 0 +[991 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Event sent successfully +[992 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent.Send -> DEBU Exit +[993 01-14 11:47:04.53 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.Commit.SendProducerBlockEvent -> DEBU Exit